Nurgaliyev Shakhizat
Published © GPL3+

Getting Started with ESP32 on a Mac

ESP32 is a low-cost and low power system on a chip microcontroller with integrated Wi-Fi and dual-mode Bluetooth.

BeginnerProtip2 hours24,390
Getting Started with ESP32 on a Mac

Things used in this project

Hardware components

FireBeetle ESP32 IOT Microcontroller (Supports Wi-Fi & Bluetooth)
DFRobot FireBeetle ESP32 IOT Microcontroller (Supports Wi-Fi & Bluetooth)
×1
USB-A to Micro-USB Cable
USB-A to Micro-USB Cable
×1
Breadboard (generic)
Breadboard (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

esp32_led.ino

Arduino
/*
 * ESP32 LED Blink Example
 */

#define LED 2

void setup() {
  // Set pin mode
  pinMode(LED,OUTPUT);
}

void loop() {
  delay(500);
  digitalWrite(LED,HIGH);
  delay(500);
  digitalWrite(LED,LOW);
}

Credits

Nurgaliyev Shakhizat

Nurgaliyev Shakhizat

61 projects • 143 followers
I am a hardcore robotics and IoT enthusiast. Email: shahizat005@gmail.com

Comments