Overview Simple blink program in esp32

 

Esp32 tutorial - Ch2 ! Simple blink program in esp32 Overview



Esp32_BlinkProgram.ino





// the setup function runs once when you press reset or power the board

void setup() {

  // initialize digital pin 2 as an output.

  pinMode(2, OUTPUT);

}


// the loop function runs over and over again forever

void loop() {

  digitalWrite(2, HIGH);   // turn the LED on (HIGH is the voltage level)

  delay(1000);              // wait for a second

  digitalWrite(2, LOW);    // turn the LED off by making the voltage LOW

  delay(1000);              // wait for a second

}


Topics covered in this video ESP Board Pin Diagram Chip used for communicating with PC Checking board is detected by PC Basic Ide setup Simple Blink Program Chip used for communicating with PC CP 2102 Usb To Serial Bridge Chip Installing Arduino IDE https://www.arduino.cc/en/guide/windows Checking board is detected by PC Go to Device manager Check inside the port node. Search tags used: Esp32 tutorial - Ch2 Overview tutorial esp32 esp32 flash programming esp32 programming esp32 with arduino ide esp32 compiler esp32 programming for the internet of things python for esp32 program esp32 with ftdi esp32 programming tool esp32 pin esp32 pinout esp32 gpio esp32 led pin esp32 pc esp32 blink esp32 led blink blink esp32 esp32 blink led esp32 led blink example led blink esp32 esp32 blink led example arduino esp32 blink esp32 blink arduino


Share on Google Plus

About myzingonline

Myzingonline is all about zing to share experience, knowledge, likes, dislikes and ideas of a person to the world.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment