Files
PlatformIO_ESP32_ServoWebSe…/BlinkiWithDebuggingWorking/src/main.cpp
2020-09-22 15:24:19 -05:00

18 lines
300 B
C++

#include <Arduino.h>
void setup()
{
// put your setup code here, to run once:
pinMode(LED_BUILTIN, OUTPUT);
}
int a = 1000;
int b = 100;
void loop()
{
// put your main code here, to run repeatedly:
digitalWrite(LED_BUILTIN, HIGH);
delay(a);
digitalWrite(LED_BUILTIN, LOW);
delay(b);
}