Увеличить
32 человека уже купили 58 шт.
Wi-Fi модуль ESP8266 ESP-01
ОПИСАНИЕ
Wi-Fi модуль, который можно использовать для беспроводного управления, передачи информации на телефон, маршрутизатор.
Модуль представляет из себя полноценный микроконтроллер, может работать без Arduino.
ESP8266 – Сообщество разработчиков http://esp8266.ru/
ПАРАМЕТРЫ
- Поддерживаемые стандарты - WI-FI: 802.11 b / g / n.
- Типы шифрования - WEP, WPA, WPA2.
- Поддерживаемые режимы работы - STA,AP,STA+AP.
- Напряжение питания: 1.7 - 3.6 В.
- Потребляемый ток - до 215мА.
- Количество GPIO - 16.
ПРИМЕР КОДА
/* ESP8266 Blink by Simon Peter Blink the blue LED on the ESP-01 module This example code is in the public domain The blue LED on the ESP-01 module is connected to GPIO1 (which is also the TXD pin; so we cannot use Serial.print() at the same time) Note that this sketch uses LED_BUILTIN to find the pin with the internal LED */ void setup() { pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output } // the loop function runs over and over again forever void loop() { digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level // but actually the LED is on; this is because // it is acive low on the ESP-01) delay(1000); // Wait for a second digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH delay(2000); // Wait for two seconds (to demonstrate the active low LED) }
КОМПЛЕКТ
- Wi-Fi модуль ESP8266 ESP-01 x 1