esp8266
| Nazwa | Foto |
|---|---|
| ESP-01 | ![]() |
| Adapter USB do programowania ESP01 | ![]() |
| CP2102 | ![]() |

http://arduino.esp8266.com/stable/package_esp8266com_index.json

Sterownik UART:
CP210x USB to UART Bridge VCP Drivers - Silicon Labs

void setup()
{
Serial.begin(115200);//Set the baudrate to 115200,same as the software settings
}
void loop()
{
Serial.println("Hello World!");//Print character string“Hello World!”on the serial
delay(5000);// Delay 5 second
}

Dla ESP-01 konfiguracja:



