-
Notifications
You must be signed in to change notification settings - Fork 1
mRuby
Tristan edited this page Aug 4, 2019
·
3 revisions
led = ESP32::GPIO::GPIO_NUM_4
ESP32::GPIO.pinMode(led, ESP32::GPIO::OUTPUT)
loop {
ESP32::GPIO.digitalWrite(led, ESP32::GPIO::HIGH)
ESP32::System.delay(1000)
ESP32::GPIO.digitalWrite(led, ESP32::GPIO::LOW)
ESP32::System.delay(1000)
}
- Microcontrollers
- Sensors
- Firmware
- Programmers
- Others