like this? if so, it doesn't help. (No more controllers are defined, just rules and dummy deviceAth wrote: ↑05 Jan 2025, 13:22Not sure why you have your Dummy device connected to a remote unit (1)? Quite sure you didn't do that on purpose, as then the values will be transmitted from that unit if it's available in the P2P network. Set that option to 0 to have it work locally (as it was by default).
How to get weather on esp using API with key?
Moderators: grovkillen, Stuntteam, TD-er
Re: How to get weather on esp using API with key?
- Attachments
-
- 3.png (38.46 KiB) Viewed 2001 times
Re: How to get weather on esp using API with key?
Not sure why you deleted the Controller. Isn't that supposed to be used to send the data to? A Controller is something totally different from a Remote Unit. You only had to reset the Remote Unit to 0.
To start with a clean slate, you can delete the Dummy Device, and the re-create it, without setting the Remote Unit field, just to be sure it is set up correctly.
To avoid resetting the data and possibly running into a loop, the Dummy device should NOT be named OpenMeteo, as that event is hard-coded for this weather service, you can name it OpenMeteoData f.e.
The rule to set the values to the Dummy device is IMHO somewhat inefficient (not sure why the original author wrote it that way )
An improved version could look like this:
By using the task- and value- names in the taskvalueset commands you can have the Dummy device in any task without having to update rules, or when moving to a different ESP that already has another sensor in task 1
To start with a clean slate, you can delete the Dummy Device, and the re-create it, without setting the Remote Unit field, just to be sure it is set up correctly.
To avoid resetting the data and possibly running into a loop, the Dummy device should NOT be named OpenMeteo, as that event is hard-coded for this weather service, you can name it OpenMeteoData f.e.
The rule to set the values to the Dummy device is IMHO somewhat inefficient (not sure why the original author wrote it that way )
An improved version could look like this:
Code: Select all
On OpenMeteo Do // Handle response from OpenMeteo event, don't create any task named 'OpenMeteo' to avoid running into an endless loop!
TaskValueSet,OpenMeteoData,Temp,%eventvalue1% // Przypisz do Dummy Device (pole 1)
TaskValueSet,OpenMeteoData,Hum,%eventvalue2% // Przypisz do Dummy Device (pole 2)
TaskValueSet,OpenMeteoData,Baro,%eventvalue3% // Przypisz do Dummy Device (pole 3)
TaskValueSetAndRun,OpenMeteoData,UV,%eventvalue4% // Set UV value AND send to all connected Controllers
LogEntry,'Values : Temp=%eventvalue1% Hum=%eventvalue2% Baro=%eventvalue3% UV=%eventvalue4%'
Endon
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
Hm, this won't start on boot, as there's an 'endon' missing from the rules, and the timer can be run more efficient.cccp79 wrote: ↑05 Jan 2025, 12:55Code: Select all
On System#Boot do timerSet,1,60 On Rules#Timer=1 do timerSet,1,60 sendtohttp api.open-meteo.com,80,"/v1/forecast?latitude=55.192375&longitude=37.786879¤t=temperature_2m,relative_humidity_2m,apparent_temperature,precipitation,rain,snowfall,weather_code,cloud_cover,surface_pressure,wind_speed_10m,wind_direction_10m&wind_speed_unit=ms&timezone=Europe%2FMoscow&forecast_days=1" Endon ...
Code: Select all
On System#Boot Do
LoopTimerSet,1,60 // Repeat this timer every 60 seconds
Endon
On Rules#Timer=1 Do
sendtohttp api.open-meteo.com,80,"/v1/forecast?latitude=55.192375&longitude=37.786879¤t=temperature_2m,relative_humidity_2m,apparent_temperature,precipitation,rain,snowfall,weather_code,cloud_cover,surface_pressure,wind_speed_10m,wind_direction_10m&wind_speed_unit=ms&timezone=Europe%2FMoscow&forecast_days=1"
Endon
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
No. It's not work(
Code: Select all
On System#Boot Do
LoopTimerSet,1,60 // Repeat this timer every 60 seconds
Endon
On Rules#Timer=1 Do
sendtohttp api.open-meteo.com,80,"/v1/forecast?latitude=55.192375&longitude=37.786879¤t=temperature_2m,relative_humidity_2m,apparent_temperature,precipitation,rain,snowfall,weather_code,cloud_cover,surface_pressure,wind_speed_10m,wind_direction_10m&wind_speed_unit=ms&timezone=Europe%2FMoscow&forecast_days=1"
Endon
On OpenMeteo Do
TaskValueSet 1,Outdoor,Temp,%eventvalue1%
TaskValueSet 1,Outdoor,Hum,%eventvalue2%
TaskValueSet 1,Outdoor,Baro,%eventvalue3%
TaskValueSet 1,Outdoor,UV,%eventvalue4%
LogEntry,'Values : Temp=%eventvalue1% Hum=%eventvalue2% Baro=%eventvalue3% UV=%eventvalue4%'
Endon
- Attachments
-
- 5.png (158.49 KiB) Viewed 1984 times
-
- 4.png (91.59 KiB) Viewed 1984 times
Re: How to get weather on esp using API with key?
Where did you compile this from? It seems to be an older version of openmeteo-reply. The latest one works as described in the post.
If you still want to use the older version (personally I wouldn't because all the data is combined into one event string. the new version splits this into current, hourly and daily) your rule block has to look like this:
Code: Select all
On OpenMeteoReply Do // Handle response from OpenMeteo event, don't create any task named 'OpenMeteo' to avoid running into an endless loop!
TaskValueSet,OpenMeteoData,Temp,%eventvalue1% // Przypisz do Dummy Device (pole 1)
TaskValueSet,OpenMeteoData,Hum,%eventvalue2% // Przypisz do Dummy Device (pole 2)
TaskValueSet,OpenMeteoData,Baro,%eventvalue3% // Przypisz do Dummy Device (pole 3)
TaskValueSetAndRun,OpenMeteoData,UV,%eventvalue4% // Set UV value AND send to all connected Controllers
LogEntry,'Values : Temp=%eventvalue1% Hum=%eventvalue2% Baro=%eventvalue3% UV=%eventvalue4%'
Endon
Using an esp8266 or esp8285 should also work, check the log for stability. I have added a warning if the reply message gets too long, as this can lead to instability on your device.
Last edited by chromo23 on 05 Jan 2025, 14:57, edited 1 time in total.
Re: How to get weather on esp using API with key?
Ah, you have to handle the event OpenMeteo#current:
Edit: This is tested using latest Github PR code
Code: Select all
On OpenMeteo#current Do
TaskValueSet 1,Outdoor,Temp,%eventvalue1%
TaskValueSet 1,Outdoor,Hum,%eventvalue2%
TaskValueSet 1,Outdoor,Baro,%eventvalue3%
TaskValueSet 1,Outdoor,UV,%eventvalue4%
LogEntry,'Values : Temp=%eventvalue1% Hum=%eventvalue2% Baro=%eventvalue3% UV=%eventvalue4%'
Endon
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
access to the Open-Meteo resource is broken((
Code: Select all
87302: EVENT: Rules#Timer=1,3
187311: ACT : sendtohttp api.open-meteo.com,80,'/v1/forecast?latitude=55.192375&longitude=37.786879¤t=temperature_2m,relative_hu
191374: EVENT: http#api.open-meteo.com=-1
Re: How to get weather on esp using API with key?
Ah, I got the same response just now, but I assumed it was me requesting from a yet unknown location. Probably they are taking a coffee break or something similar.
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
They work strangely, I had the same thing two days ago and I decided that this was some kind of bug. Today, the requests went away all day before this time (It's a pity I didn't have time to try to achieve results (Tell me where to get the latest PR code from Git - I'm completely confused(
Re: How to get weather on esp using API with key?
....Hallelujah!!! Works! Thanks a lot!!! So I have an update code?
Code: Select all
On System#Boot Do
LoopTimerSet,1,60 // Repeat this timer every 60 seconds
Endon
On Rules#Timer=1 Do
sendtohttp api.open-meteo.com,80,"/v1/forecast?latitude=55.192375&longitude=37.786879¤t=temperature_2m,relative_humidity_2m,apparent_temperature,precipitation,rain,snowfall,weather_code,cloud_cover,surface_pressure,wind_speed_10m,wind_direction_10m&wind_speed_unit=ms&timezone=Europe%2FMoscow&forecast_days=1"
Endon
On OpenMeteoReply Do // Handle response from OpenMeteo event, don't create any task named 'OpenMeteo' to avoid running into an endless loop!
TaskValueSet,OpenMeteoData,Temp,%eventvalue1% // Przypisz do Dummy Device (pole 1)
TaskValueSet,OpenMeteoData,Hum,%eventvalue2% // Przypisz do Dummy Device (pole 2)
TaskValueSet,OpenMeteoData,Baro,%eventvalue3% // Przypisz do Dummy Device (pole 3)
TaskValueSetAndRun,OpenMeteoData,UV,%eventvalue4% // Set UV value AND send to all connected Controllers
LogEntry,'Values : Temp=%eventvalue1% Hum=%eventvalue2% Baro=%eventvalue3% UV=%eventvalue4%'
Endon
- Attachments
-
- 6.png (28.99 KiB) Viewed 1945 times
Re: How to get weather on esp using API with key?
Ah, you're still running the older version, as Chromo23 already expected. Not sure if a newer build was already available that uses the new event names (OpenMeteo#current, OpenMeteo#hourly and OpenMeteo#daily).cccp79 wrote: ↑05 Jan 2025, 15:53 ....Hallelujah!!! Works! Thanks a lot!!! So I have an update code?
Code: Select all
On OpenMeteoReply Do // Handle response from OpenMeteo event, don't create any task named 'OpenMeteo' to avoid running into an endless loop!
(I built mine from latest Github source)
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
Could you please share a link to latest Github source? I don't know Github well (Ath wrote: ↑05 Jan 2025, 16:34Ah, you're still running the older version, as Chromo23 already expected. Not sure if a newer build was already available that uses the new event names (OpenMeteo#current, OpenMeteo#hourly and OpenMeteo#daily).cccp79 wrote: ↑05 Jan 2025, 15:53 ....Hallelujah!!! Works! Thanks a lot!!! So I have an update code?
Code: Select all
On OpenMeteoReply Do // Handle response from OpenMeteo event, don't create any task named 'OpenMeteo' to avoid running into an endless loop!
(I built mine from latest Github source)
Re: How to get weather on esp using API with key?
Thanks!!!
Re: How to get weather on esp using API with key?
easyfetch & openmeteo is coolest things. Many thanks!@chromo23
One sensor, one device and 8 sensors data))) Wow)))
- Attachments
-
- 8.jpg (194.66 KiB) Viewed 1874 times
-
- 7.png (112.61 KiB) Viewed 1878 times
Re: How to get weather on esp using API with key?
Thanks. I am glad to hear that it worked.
Re: How to get weather on esp using API with key?
Here a little "rules hack" to grep all the OpenMeteo reply's with one rules block:
Code: Select all
On OpenMeteo* Do
If {ord:%eventpar%} = 99 // the ordinal/integer value of the first character of current is 99
LogEntry,'%eventpar% 1: %eventvalue1% 2: %eventvalue2% 3: %eventvalue3%'
Elseif {ord:%eventpar%} = 104 // the ordinal/integer value of the first character of hourly is 104
LogEntry,'%eventpar% 1: %eventvalue1% 2: %eventvalue2% 3: %eventvalue3%'
Elseif {ord:%eventpar%} = 100 // the ordinal/integer value of the first character of daily is 100
LogEntry,'%eventpar% 1: %eventvalue1% 2: %eventvalue2% 3: %eventvalue3%'
Endif
Endon
Re: How to get weather on esp using API with key?
Just for your information, there is an ESP32-C3 with exactly the same form factor as the ESP-01S you are using there.
That one does have 4M flash, and thus is much easier to update.
Or you can simply replace the flash chip on that ESP-01S board with some 4M version.
That one does have 4M flash, and thus is much easier to update.
Or you can simply replace the flash chip on that ESP-01S board with some 4M version.
Re: How to get weather on esp using API with key?
Can you tell me exactly what you need?
ESP8266 and/or ESP32C6? Both the same plugins?
Please list which ones you need?
Re: How to get weather on esp using API with key?
Yes. of course I know these form factors. And I've already changed the memory to ESP-01(S). However, I want to test the old devices for simple and not so simple tasks with 1M on board.
I don't know much about memory usage, can you tell me if there is enough memory for such tasks or not?
managed to compile such an assembly. But I'm not sure if I did everything right(
- Attachments
-
- 14.png (59.98 KiB) Viewed 1848 times
-
- 13.png (59.09 KiB) Viewed 1848 times
-
- 12.png (45.54 KiB) Viewed 1848 times
-
- 11.png (70.76 KiB) Viewed 1848 times
Re: How to get weather on esp using API with key?
Problem with 1M flash is that you really need to strip out anything you don't need and you also have a much smaller file system.
If you want to store the EasyFetch files and maybe some extras, you can easily run into issues where saving settings may fail at some point due to file system fragmentation.
Also you cannot perform OTA updates on 1M builds so you need to take out the module each time you want to update it.
Replacing the flash chip for a 4MB version, makes this a lot easier.
If you want to store the EasyFetch files and maybe some extras, you can easily run into issues where saving settings may fail at some point due to file system fragmentation.
Also you cannot perform OTA updates on 1M builds so you need to take out the module each time you want to update it.
Replacing the flash chip for a 4MB version, makes this a lot easier.
Re: How to get weather on esp using API with key?
Thank you. Everything is accessible and understandable. I want to test the ultimate strength.TD-er wrote: ↑05 Jan 2025, 22:10 Problem with 1M flash is that you really need to strip out anything you don't need and you also have a much smaller file system.
If you want to store the EasyFetch files and maybe some extras, you can easily run into issues where saving settings may fail at some point due to file system fragmentation.
Also you cannot perform OTA updates on 1M builds so you need to take out the module each time you want to update it.
Replacing the flash chip for a 4MB version, makes this a lot easier.
4M flash - not soldered)
- Attachments
-
- 16.jpg (282.36 KiB) Viewed 1836 times
Re: How to get weather on esp using API with key?
Make sure to flash a 4M1M build after soldering the 4M flash module to it.
And you can backup the current settings if you like.
They should be compatible. (when shared between ESP8266/ESP8285, not ESP8266 vs. ESP32)
And you can backup the current settings if you like.
They should be compatible. (when shared between ESP8266/ESP8285, not ESP8266 vs. ESP32)
Re: How to get weather on esp using API with key?
Hello. The firmware for Wemos works perfectly. It turned out that I have several 2432s028r displays. They work with EspEasy on the 20241221 Display 4M firmware [ESP8266,ESP32,ESP32-S2/S3/C3] with the Display - TFT ILI934x/ILI948x display selection.
I kindly ask you to compile for these displays. I really want it.
Regards.
Ps.
This display is ideal for building a weather station using https://open-meteo.com/en/docs.
It has a very good integrated display that works perfectly with EspEasy
All you need is FIRMWARE @chromo23 for this display.
Here are the settings:
I kindly ask you to compile for these displays. I really want it.
Regards.
Ps.
This display is ideal for building a weather station using https://open-meteo.com/en/docs.
It has a very good integrated display that works perfectly with EspEasy
All you need is FIRMWARE @chromo23 for this display.
Here are the settings:
- Attachments
-
- spi2.jpg (26.81 KiB) Viewed 1677 times
-
- spi1.jpg (18.71 KiB) Viewed 1677 times
-
- spi.jpg (45.57 KiB) Viewed 1677 times
-
- PXL_20250106_065415350.jpg (198 KiB) Viewed 1677 times
-
- PXL_20250106_053639971.jpg (209.99 KiB) Viewed 1677 times
Re: How to get weather on esp using API with key?
Ohh that's a nice font!
Do you have a link to that 3D printed enclosure?
Do you have a link to that 3D printed enclosure?
Re: How to get weather on esp using API with key?
There are tons of them on Thingverse
https://www.thingiverse.com/search?q=2432s028r&page=1
Please make firmware for this display with jsonparser.
Re: How to get weather on esp using API with key?
What happened in new versions with Mqtt Import?
The Apply Filters option is missing which works for me in the older version. How can I use mqtt import when I want to retrieve data by IDX?
- Attachments
-
- mqtt_old.PNG (53.04 KiB) Viewed 1644 times
-
- mqtt_new.png (10.61 KiB) Viewed 1644 times
Re: How to get weather on esp using API with key?
Might be that some features were turned off to make it all fit, but I guess Ton is the one who can answer the reasons about this change. (however he is occupied with his daytime job right now)
Re: How to get weather on esp using API with key?
It's a bit strange because in all descriptions there is an option Apply Filter in Generic - MQTT Import
In my case there is only Apply mappings:
Re: How to get weather on esp using API with key?
Like I said, Ton has been maintaining that plugin for the last few years, so if there have been any changes or built-choices, he is the one to know best.
With "all descriptions" I assume you mean the docs: https://espeasy.readthedocs.io/en/lates ... #p037-page
Ton is very keen on also updating the docs when making changes, so that should be in sync with the current implementation.
Still if there are features left out of some builds (though I don't know why it should on a "normal ESP32" build), then there might be features documented which you cannot see in your setup.
But like I said, Ton can tell you all about it.
Also your screenshot shows it is a build of 2022, so Ton may have renamed some labels/texts in the last 2 years...
With "all descriptions" I assume you mean the docs: https://espeasy.readthedocs.io/en/lates ... #p037-page
Ton is very keen on also updating the docs when making changes, so that should be in sync with the current implementation.
Still if there are features left out of some builds (though I don't know why it should on a "normal ESP32" build), then there might be features documented which you cannot see in your setup.
But like I said, Ton can tell you all about it.
Also your screenshot shows it is a build of 2022, so Ton may have renamed some labels/texts in the last 2 years...
Re: How to get weather on esp using API with key?
There is no such user as Ton. Enter the exact name of his nicknameTD-er wrote: ↑06 Jan 2025, 11:59 Like I said, Ton has been maintaining that plugin for the last few years, so if there have been any changes or built-choices, he is the one to know best.
With "all descriptions" I assume you mean the docs: https://espeasy.readthedocs.io/en/lates ... #p037-page
Ton is very keen on also updating the docs when making changes, so that should be in sync with the current implementation.
Still if there are features left out of some builds (though I don't know why it should on a "normal ESP32" build), then there might be features documented which you cannot see in your setup.
But like I said, Ton can tell you all about it.
Also your screenshot shows it is a build of 2022, so Ton may have renamed some labels/texts in the last 2 years...
Re: How to get weather on esp using API with key?
Ath at the forum here.
And tonhuisman at GitHub.
Since I do speak him daily via Signal, I just out of habbit wrote down his first name.
And tonhuisman at GitHub.
Since I do speak him daily via Signal, I just out of habbit wrote down his first name.
Re: How to get weather on esp using API with key?
Will jsonparser be added to all builds someday?
This is a very useful feature
Respect to @chromo23
This is a very useful feature
Respect to @chromo23
Re: How to get weather on esp using API with key?
Actually respect to Ath and TD-er. I only contribute every now and then, but these two people maintain and keep improving ESPEasy every day. So big thanks and kudos to them! My work is just like adding a shelf here and there in an already very well equipped apartment
Re: How to get weather on esp using API with key?
So big thanks to the whole team. I asked if jsonparser will be added to all EspEasy builds in the future. I think it's a great feature for ESP.chromo23 wrote: ↑06 Jan 2025, 20:35Actually respect to Ath and TD-er. I only contribute every now and then, but these two people maintain and keep improving ESPEasy every day. So big thanks and kudos to them! My work is just like adding a shelf here and there in an already very well equipped apartment
Re: How to get weather on esp using API with key?
Just as a general statement about new features;
- ESP8266 does have a 'feature freeze' in the sense that any new plugin or feature will not be included in the standard builds. You may be able to use it in a 'custom' build unless specifically excluded. (e.g. "Touch" is a feature not available on ESP8266 and only on some ESP32 variants and SSL will simply not work on ESP8266 due to RAM limitations)
- If a feature or plugin is not included in a specific build (e.g. "collection", "climate", "display", etc.) due to size restrictions, then it will likely not be added to those builds in the future.
- Builds for nodes with 8M or 16M flash, we have the "max" builds, which will contain "everything".
N.B. I am working on a 2-stage update option, which does free up enough space on 4M ESP32 boards so we can make "MAX" builds for all. (at least considering the build size of the current "max" builds)
- ESP8266 does have a 'feature freeze' in the sense that any new plugin or feature will not be included in the standard builds. You may be able to use it in a 'custom' build unless specifically excluded. (e.g. "Touch" is a feature not available on ESP8266 and only on some ESP32 variants and SSL will simply not work on ESP8266 due to RAM limitations)
- If a feature or plugin is not included in a specific build (e.g. "collection", "climate", "display", etc.) due to size restrictions, then it will likely not be added to those builds in the future.
- Builds for nodes with 8M or 16M flash, we have the "max" builds, which will contain "everything".
N.B. I am working on a 2-stage update option, which does free up enough space on 4M ESP32 boards so we can make "MAX" builds for all. (at least considering the build size of the current "max" builds)
Re: How to get weather on esp using API with key?
Can you tell me if I'm doing this right? To compile the build for 1M with openmeteo. I'm only making changes to the Custom file.h and select the default environment in platformio.ini, then click build?
Re: How to get weather on esp using API with key?
When building a Custom.h build, you must choose the desired hardware (ESP8266 1M, not ESP8266 4M1M in your case) with also Custom in the name.
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
Yes I know and do it.
Could you help me build with openmeteo and json a binary for 1M with the plugins and controllers selected here. My build is successful, but I can't see the network, I can't find the initial espeasy network. I do not know why(
- Attachments
-
- Custom (1).rar
- (8.95 KiB) Downloaded 11 times
Re: How to get weather on esp using API with key?
You could set up your network credentials in the Custom.h file (better not share that version here), but you'll have to clear the entire flash before flashing that build, to have it use the Custom.h defaults. The ESP should use DHCP by default. If you have a serial connection available, you can use the Monitor item (2 items below the Build menu-item in VSCode) to get the serial log and terminal. When selecting that log window, you can type commands (no echo until you press Enter), and use the command ip to have the ip-address it got from DHCP, revealed.
If adding your WiFi credentials in Custom.h doesn't work as intended, you can also use these commands to set up WiFi:
After you issue the save command, the settings will be saved, and the wifi connection retried.
NB: You can't use backspace to correct any typos... just type the command correct, or retry if you make a typo
AFAICS, you have all the other settings as expected, including the Thingspeak, Open-meteo and JSON parsing features.
If adding your WiFi credentials in Custom.h doesn't work as intended, you can also use these commands to set up WiFi:
Code: Select all
wifikey,<your-AP-name>
wifipass,<your-super-secret-wifi-password>
save
NB: You can't use backspace to correct any typos... just type the command correct, or retry if you make a typo
AFAICS, you have all the other settings as expected, including the Thingspeak, Open-meteo and JSON parsing features.
/Ton (PayPal.me)
Re: How to get weather on esp using API with key?
Re: How to get weather on esp using API with key?
The problem actually came out of nothing. After I got the weather, I decided to give it to a friend. And couldn't reconnect the esp to another network (WIFI scan didn't give results(
Re: How to get weather on esp using API with key?
Many, many thanks!
Re: How to get weather on esp using API with key?
do not up AP mode((
the same thing happened when I compiled it myself from the current sourcecode(
serial port output
Code: Select all
╜пМхeсИcN╚♥xт%Vaвe!МИЖН(ДaИг00:01:11.466 : (25360) Info : WD : Uptime 1 ConnectFailures 0 FreeMem 25496 WiFiStatus: WL_IDLE_STATUS 0 ESPeasy internal wifi status: DISCONNECTED
00:01:20.225 : (25440) Info : WIFI : Disconnected! Reason: '(1) Unspecified'
00:01:20.427 : (25440) Info : WIFI : Disconnected! Reason: '(1) Unspecified'
00:01:20.529 : (25472) Info : Reset WiFi.
00:01:22.816 : (25376) Info : WIFI : Set WiFi to OFF
00:01:23.033 : (25536) Info : WIFI : Set WiFi to STA
00:01:41.459 : (25200) Info : WD : Uptime 2 ConnectFailures 0 FreeMem 25336 WiFiStatus: WL_IDLE_STATUS 0 ESPeasy internal wifi status: DISCONNECTED
00:02:11.463 : (25200) Info : WD : Uptime 2 ConnectFailures 0 FreeMem 25336 WiFiStatus: WL_IDLE_STATUS 0 ESPeasy internal wifi status: DISCONNECTED
Who is online
Users browsing this forum: No registered users and 1 guest