Luc Paquin
Published © CC BY

Project #12: Robotics - ESP32-CAM - Mk30

Project #12: Robotics - ESP32-CAM - Mk30

BeginnerFull instructions provided1 hour45
Project #12: Robotics - ESP32-CAM - Mk30

Things used in this project

Hardware components

ESP32-CAM
×1
ESP32-CAM-MB Adapter
×1
USB Battery Pack
×1
DFRobot Micro USB Cable
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Fritzing

Code

DL2601Mk06p.ino

Arduino
/****** Don Luc Electronics © ******
Software Version Information
Project #12: Robotics - ESP32-CAM - Mk30
12-30
DL2601Mk06p.ino
DL2601Mk06
1 x ESP32-CAM
1 x ESP32-CAM-MB Adapter
1 x USB Battery Pack
1 x Micro USB Cable
*/

// Include the Library Code

// Flash
int flashPin = 4;

// Software Version Information
String sver = "12-30";

void loop() {
  
  // Flask
  digitalWrite(flashPin, HIGH);

  // Delay
  delay(3000);

  // Flash Low
  digitalWrite(flashPin, LOW);

  // Delay
  delay( 1000 );
  
}

setup.ino

Arduino
// Setup
void setup()
{
 
  // Delay
  delay( 100 );

  // Flash
  pinMode(flashPin, OUTPUT);

  // Delay
  delay( 100 );
  
  // Delay 1 Second
  delay( 1000 );

}

Credits

Luc Paquin
72 projects • 5 followers
Teacher, Instructor, E-Mentor, R&D and Consulting -Programming Language -Microcontrollers -IoT -Robotics -Machine Learning -AI -Sensors

Comments