🚀 Unleash Your Creativity with Wireless Freedom!
The Lolin NodeMCU ESP8266 CP2102 is a lightweight, versatile Wi-Fi serial wireless module designed for easy programming and rapid prototyping. With a powerful 8.5 GHz processor and 4 MB of memory, it connects effortlessly to various devices, making it an essential tool for tech enthusiasts and professionals alike.
Brand | eleduino |
Manufacturer | Sound Land Corp |
Country of Origin | India |
Model number | 3-01-0268-1 |
Number of Memory Sticks | 1 |
Special Feature | Wireless |
Item Weight | 9 g |
Product Dimensions | 4 x 4 x 4 cm; 9 g |
Item model number | 3-01-0268-1 |
Item Height | 40 Millimeters |
Item Width | 40 Millimeters |
Processor Speed | 8.5 GHz |
Number of processors | 1 |
Memory Storage Capacity | 4 MB |
Memory Technology | LPDDR4 |
Hard Disk Interface | USB |
Wireless Standard | 802.11b |
Number of USB Ports | 1 |
Connectivity Technology | Wi-Fi |
Voltage | 5.5 Volts |
Power Source | USB |
Operating System | NodeMCU |
Compatible Device | Personal Computer, Smartphone, Arduino |
Included Components | Lolin NodeMCU ESP8266 CP2102 NodeMCU WIFI Serial Wireless Module |
Are batteries included? | No |
Hardware Interface Type | USB |
R**H
Well
Good work well but range is small
⚡**⚡
ESP8266- Compact, Light, Featured, Breadboard Friendly Board for IOT & Automation | REVIEW | GUIDES
ESP8266 is very common name now a days. When I saw this board, I was like wow. After researching a lot about which one to order, plain ESP8266 or NODEMCU one, I was on for NodeMCU.But even in case of NodeMCU, there are many different manufacturers implementing the firmware on board e.g. Lolin & Amica.Product title mentions Lolin but display pictures are of Amica. Lots of confusion. But I went on & ordered one from cloudtail seller. To my surprise, my board came in poly packaging having Lolin sticker with Amica board sealed in antistatic packet. :D So it’s a hit or miss kind of thing.Got it two times from cloudtail & both times it was Amica board. So not an issue.•••••••••••••••INSIDE BOX•••••••••••••••NodeMCU board inside antistatic packet with hard foam to protect pins.Board Dimensions: L x B x H, 49 x 25 x 13mm (including pins, w/o header pins height is just 4mm)Weight: 8g (wrongly mentioned as 50g in listing)•••••••PROS•••••••1. Breadboard friendly.2. Pins come soldered & not separate.3. Neatly made, lightweight and compact board.4. Arduino compatible & easy to program.5. CP2102 chip for USB to UART. Old version had CH340 chip.6. Full Blynk support (Believe me, it will mean a lot to you).7. 4 screw holes at each corner of the board for easy installation.••••••••CONS••••••••1. Some pins were literally bent on arrival. I had to make them straight using mini plier. Not a big deal, but a hassle. Supplier should take care of it.2. I got two boards at 2 different times and both had same issue of pin layout not perpendicular to board, rather spread outward by few degrees. I had to make them perpendicular for easy setup on breadboard.(Reducing 1 star for these two cons. Although being breadboard friendly, you can’t install it directly on breadboard unless you straighten up the pins and make them perpendicular to board. This act may damage board even. So risky.)•••••••••••••••••••••••••••••••••••••••••••••SETTING IT UP WITH ADRUINO IDE•••••••••••••••••••••••••••••••••••••••••••••1. Download latest Arduino IDE from official site as per your system configuration.2. Install software in preferred location.3. It will also install necessary USB drivers including one for our board i.e. CP2102 USB to UART bridge.4. Visit ESP8266’s github page (Google it) and copy board manager link from there. (Screenshot attached)5. Open Arduino IDE. By default Arduino does not come with ESP8266 support. So we need to manually specify link for ESP8266.6. Go to File → Preferences and paste above ESP8266 board manager link under “Additional Boards Manager URLs”. Click on ok.7. Now go to Tools → Board → Board Manager & search for esp8266 by ESP8266 community.8. Click on install. It will download several related board definitions and install them. Once installation is successful, close the window.9. Now when you will go to Tools → Boards, you will find all of ESP8266 related board listed.••••••••••••••••••••••••••••••••••••••••••••••••GETTING READY FOR PROGRAMMING••••••••••••••••••••••••••••••••••••••••••••••••1. Open Arduino IDE2. Go to Tools → Boards and choose your board. Here in our case it’s NodeMCU 1.0 (ESP-12E Module)3. Now in Tools → Port, choose communication port on which board is connected. To find it go to windows device manager & under ports (com & lpt) locate CP210x to UART Bridge. In my case it’s COM3.4. Specify upload speed in Tools → Upload Speed. 115200 works good in general and with large code sketches also. While 9600 will also work but may fail in some large sketches & is very slow.5. Leave other options in Tools as such.6. You are all set now. Code a sketch, upload it to board via Sketch → Upload.7. While sketch or code is getting uploaded to board, blue LED near Wi-Fi antenna blinks continuously indicating transfer.8. Enjoy the endless world of ESP8266.•••••••••••••••••••••••••••••••••••••••••••••••••••••••••BLINK ON BOARD LED (Initial check of board)•••••••••••••••••••••••••••••••••••••••••••••••••••••••••There’s a program to blink on board led in examples after you add ESP board in previous step.1. Open Arduino2. Go to → File → Examples → ESP8266 → Blink3. Go to → Sketch → Upload (indicator led will blink while it’s being uploaded)4. Soon after sketch is uploaded, other led near USB port will start blinking as per delay in sketch/code.•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••BLYNK SUPPORT & EXAMPLE TO SWITCH ON/OFF ONBOARD LED USING SMARTPHONE•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••Blynk app is free to use with 1800 free recyclable energy with each account, which is more than sufficient for general projects or unlimited energy if local server is used. Energy is used by each widget you add to project. You can always purchase more energy for bigger projects or recycle used ones.Visit Blynk website and go to “getting started” page. Follow the steps i.e.1. Install Blynk app from store & register.2. Create project & get auth token.3. Download library zip from link provided.3. Install Blynk library manually by copying unzipped folders to mentioned paths of your sketchbook folder for Arduino IDE.4. After libraries are installed, another entry with Blynk is created in examples.5. Open Arduino IDE & Go to → File → Examples → Blynk → Boards_WiFi → ESP8266_Standalone.6. Enter auth token from email, ssid and password of your Wi-Fi in sketch.7. Upload sketch to board.8. Now in app add two buttons to project created above, by clicking on + and selecting button9. Open each button and specify D0 & D4 pin with 1 → 0.10. Click on Play button on top.11. Press buttons & your on-board LEDs will switch on off.11. Enjoy the endless world of IOT and automation. Control everything from your smartphone via Blynk server or local server.•••••••••••••••••••FINAL VERDICT•••••••••••••••••••Initially i was sceptical about purchasing board from this listing after reading reviews. But after receiving I am in no doubt that it’s a wonderful board. It’s compact, neat and works great without any big trouble. You can definitely go for it.With Blynk support for this board, it’s really easy working with any of mobile controlled automation projects without much of coding.P.S. Amica one is better and compact board. While name mentions Lolin, pictures display Amica board. So in case you receive Lolin board and are not satisfied, you can always ask for replacement board under "Product not as displayed" category.
S**S
Good product
Good product .I uploaded a code it sucess
R**R
Perfect and value of money
It's good and better if you want better then by esp-32 module
R**U
Good for learning, bad for interfacing higher(12V!) signals as those detroy it. Works with 3.3V.
Since this is costly board by indian standards, i write cons first:(*)Quality isn't that great.(*)esp 12 module is soldered, so once you program it, i don't know you can use the same board to program other modules or not.(*)CAUTION: 3.3V ONLY. 12V definitely will destroy it. For sure. I learned it the hard way. There is no protection. If you have to use 12V, use optocoupler or add some diodes.(*)There is no level shifter 3.3V/5V/12V(*) No onboard relays/MOSFET/sensors/opto coupler. This is why we use this esp chip, and using this board, we have to add all of them manually....I haven't tried it yet, but this board claims to provide all of them-->http://www.amazon.in/ESP8266-Black-cloud-features-Board/dp/B0148HKRPS/ref=pd_sim_sbs_23_5?ie=UTF8&dpID=515it1WwXxL&dpSrc=sims&preST=_AC_UL160_SR160%2C160_&refRID=0J8ZE8R9HY1ENKJGMNDNWill try when i get time.I couldn't get this thing to work to drive 5V nMOSFET gate. This will definitely add to cost.Pros:(*) Very easy to work with, just attach micro usb mobile cable, and we are good to go. download ESPLORER java application.Now, download ESP flasher from the link in that application. After that this device can work with LUA scripting language (very easy).Now download samples from the web, this chip esp-12e will act as standalone web server, find out ip address, type it in your browser and you can control all its GPIO pins from web!(*)This devkit is really small(*)Very easy to flash the soldered esp-12 chip with Nodelua/NodeJS. earlier used to be a headache.However, i would recommend to buy it only to learn basics of esp12 and not for real interfacing as 12V destroys this for sure! and we don't want our 800/- to go in drain.
H**A
After 4-5 month review
its such a nice and true product.... i use it regularly from last 4 to 5 month but it still work as 1st time used 😊 such a nice NODE MCU
J**N
Waste
Totaly waste of money this product aurdino not support this device please don't purchase for wifi hacking and other work
E**M
A fine learning thing
Work on a 2.5ghz frequency only that’s a limitation rest all is fine, i used it to hack others wifi networks 😂
TrustPilot
2 周前
1 周前