ESP 8266 ESP 01 = Module Wifi not found #6019
Replies: 1 comment
-
Posted at 2017-12-03 by @allObjects
Are you uploading the code in the edit pane by clicking the Send to Espruino button? Posted at 2017-12-04 by @gfwilliams Do you get a usable command prompt on the left, or nothing? If nothing, you may have forgotten to set the baud rate to 115200. If you disconnect and reconnect then it may work - problem is Espruino wasn't able to communicate with the board properly when you connected so it wasn't aware that it was an ESP8266 which has a Wifi module. Posted at 2017-12-04 by user83752 Hi Gordon and allObjects, Attachments: Posted at 2017-12-04 by user83752 The firm version I have flashed is espruino_1v94_esp8266_combined_512.bin Posted at 2017-12-05 by @gfwilliams You set the baud rate in the Settings (same place as you found the console) under 'Communications'. If you're not aware it exists then I'd be almost certain that's your problem. Posted at 2017-12-06 by user83752 hi Gordon, Posted at 2017-12-06 by @gfwilliams Did you disconnect and reconnect? What you're seeing is because the IDE is not able to communicate with Espruino - that could either be some communication issue, or it might be that Espruino isn't running on your ESP8266 at all! Posted at 2017-12-07 by user83752 Disconnecting and reconnecting did the trick! Thanks for all your help. I am very excited! Posted at 2018-03-01 by CoraDias Hi...i am a new user here. I also faced the same issue. As per my experience if you disconnect and reconnect then it may work - problem is Espruino wasn't able to communicate with the board properly when you connected so it wasn't aware that it was an ESP8266 which has a Wifi module. Posted at 2018-03-01 by Wilberforce
This tends to happen straight after flashing. If you connect with putty(windows) or minicom(Linux) after flashing, and then disconnect, you can then connect with the ide. I think it is related to the state of the com/tty port after flashing... |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2017-12-03 by user83752
ESP 8266 ESP 01 = Module Wifi not found
Hello Everyone,
A noob question.
Using the web ide I am trying to run the sample
var wifi = require("Wifi");
wifi.connect("mywifi", {password:"mypassword"}, function(err){
console.log("connected? err=", err, "info=", wifi.getIP());
});
wifi.stopAP();
My firmware version is espruino_1v94_esp8266_combined_512.bin
Anyone seen this before?
Is there a reason the device will not use the wifi library from the firmware?
Thanks
=AnotherCoder
LOG From console:
loadModule(Wifi)
ERROR: getURL("https://www.espruino.com/modules/Wifi.min.js") error : Not Found
ERROR: getURL("https://www.espruino.com/modules/Wifi.js") error : Not Found
WARNING: [notify_warn] Module Wifi not found
Found a prompt... great!
Beta Was this translation helpful? Give feedback.
All reactions