-
Notifications
You must be signed in to change notification settings - Fork 2
WIFI NodeM ESP8266
WIFI-NodeM-ESP8266-CH340G Schematic
WIFI NodeM ESP8266+32Mb, module is based on widely explored esp8266 System on Chip from Expressif
WIFI NodeM ESP8266+32Mb, compatible for NodeMCU board. We add extra memory size to 32Mb. This better, for make big project with big library. You not need to worry about size of memory
On board have USB-TTL serial converter CH340G, with Micro-USB socket
PowerIn for DC 4~9V, to pin VIN
Pin headers 2.54mm (0.1") 15 pins x 2 lines in set. Don't soldered
It combined features of WIFI accesspoint and station + microcontroller and uses simple LUA based programming language.
WIFI NodeM ESP8266+32Mb, offer:
Arduin0-like hardware IO. And can programming in ArduinO IDE
Event-driven API for network applicaitons
10 GPIOs D0-D10, PWM functionality, IIC and SPI communicaiton, 1-Wire and ADC A0 etc. all in one board
Wifi networking (can be uses as access point and/or station, host a webserver), connect to internet to fetch or upload data.
For developing can use install to breadboard
Size: 4.8x2.5cm/1.89x0.98inch
- Sudiegiam ArduinoIDE 1.8.10
- Sudiegiam CH341SER.ZIP
- File->Preferences, prie Additional Boards Manager URLs pridedam http://arduino.esp8266.com/stable/package_esp8266com_index.json ir spaudžiam OK
- Tools->Board:...->Boards Manager..., įrašom esp8266 ir paspaudžiam Install ant esp8266 by ESP8266 Community
-
Tools->Board:...->NodeMCU 1.0 (ESP-12E Module)
- Parašom kodą, prijungiam USB, pasirenkam Port ir spaudžiam Upload
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(115200);
}
void loop() {
digitalWrite(LED_BUILTIN, LOW); // Led ON
delay(1000);
digitalWrite(LED_BUILTIN, HIGH); // Led OFF
delay(1000);
Serial.println("Hello!");
}

