Arduino Nano ESP32 Review + Project |📟
Автор: ArduMCPro
Загружено: 2024-02-12
Просмотров: 413
Описание:
In this video i review the Arduino NANO ESP32 Board
Parts Used:
1x red LED
1x arduino nano esp32
1x 220 Ohm resistor
6x jumper wires
1x breaboard
1x USB-c to USB-a Cable
1x pushbutton
Code:
// constants won't change. They're used here to set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 3; // the number of the LED pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT_PULLUP);
}
void loop() {
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed. If it is, the buttonState is HIGH:
if (buttonState == LOW) {
// turn LED on:
digitalWrite(ledPin, HIGH);
} else {
// turn LED off:
digitalWrite(ledPin, LOW);
}
}
keywords:
#arduino #esp32 #arduino esp32 #esp32 wifi #esp32 bluetooth #wifi #bluetooth #iot #internetofthings #homeassistant #apple #arduinonanoesp32 #arudinonano #arduinonano #arduinomega #arduinouno
Повторяем попытку...

Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: