NorthernMan54 / homebridge-mcuiot

Homebridge platform plugin that support's a network of nodemcu's running nodemcu-dht-yl69-mdns to display Temperature and Humidity.
30 stars 11 forks source link

"Error finding AP" on test.lua #23

Closed mrvnklm closed 5 years ago

mrvnklm commented 5 years ago

I've uploaded all files in the described order to my nodemcu using ESPlorer (running on macOS). I always get the following message:

`

dofile("test.lua"); Heap Available: -c 37280 Heap Available: -l 33432 Heap Available: -m 27384 Heap Available: -setup 22336 Booting... Heap Available: -boot 22584 Setting Init Timer Configuring Wifi ... Heap Available: -start 22672 Error finding AP `

My passwords.lua file: -- Rename this to passwords.lua, and add your WIFI SSID and Password local module = {} module.SSID = {} module.SSID["SSID1"] = { ssid="Stay Connected!", pwd = "password" } return module

NorthernMan54 commented 5 years ago

In the passwords file it should be

local module = {}

module.SSID = {} module.SSID["Stay Connected!"] = { ssid="Stay Connected!", pwd = "asdf1337" }

return module

On Oct 13, 2018, at 3:48 AM, mrvnklm notifications@github.com wrote:

I've uploaded all files in the described order to my nodemcu using ESPlorer (running on macOS). I always get the following message:

`> file.close();

dofile("test.lua"); Heap Available: -c 37280 Heap Available: -l 33432 Heap Available: -m 27384 Heap Available: -setup 22336 Booting... Heap Available: -boot 22584 Setting Init Timer Configuring Wifi ... Heap Available: -start 22672 Error finding AP `

My passwords.lua file: `-- Rename this to passwords.lua, and add your WIFI SSID and Password

local module = {}

module.SSID = {} module.SSID["SSID1"] = { ssid="Stay Connected!", pwd = "asdf1337" }

return module `

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/NorthernMan54/homebridge-mcuiot/issues/23, or mute the thread https://github.com/notifications/unsubscribe-auth/AS5CmJBefU0dltfm4gg-bCQl-vN0puNrks5ukZrjgaJpZM4XagiT.

mrvnklm commented 5 years ago

Outch, that makes so much sense now. Thank you!