I have a few questions:
Is the webpage reporting the wind direction with the offset accounted for? See the image attached, on my side it seems that the offset isn't taken into consideration. I did check and correct wind direction is reported to WU.
For some reason, if I want to change the TCP/IP port, changes don't take effect and return back to standard configuration (2020)
Same applies for WU upload interval, here despite the interval is set to 2, 3, or whatever, it stays at 5 minutes. I factory reseted my ESP32 with espytool to make sure nothing would be in memory, but the problem remains
Finally, I added a KEMO M152 rain sensor, connected to the module board suggested for the simpler, but terrible, rain sensor. It seems to work fine, I had to steel 12V from the power port, but all looks good. Have you ever tried this option? Might worth to make a 12V port available in future board revisions.
Hi Miguel
I had a spare 5m today, working on myFP2ESP32 update, so during a coffee break I looked at the wind direction issue you had asked above.
Yes, it is a little clumsy, and in some places its using without offset and other places with offset.
I have recoded this to always use offset - its simple that if you dont use an offset then offset should have a value of 0.
Actually the change makes code elsewhere cleaner. So from now on, the variable winddirection always has the offset applied.
Now I decided to do the modification, but not of the next release. So I just added it to the mysqmplus_139_03 firmware and renamed it mysqmplus_139_031
I have not had time to look at the other issues of tcpip port and KEMO M152 rain sensor. If you have any tech notes on the Kemo could you please send them to me?
If you find an issue with Winddirection, please let me know.
Regards
Robert
the only change in 139-031 is the winddirection (from what I remember)
For some reason, if I want to change the TCP/IP port, changes don't take effect and return back to standard configuration (2020)
What is the method you are using to change the TCP/IP port
1. Stop TCPIP Server
2. Change port number
3. Click SAVE to update immediately
4. Start TCPIP Server
Is the webpage reporting the wind direction with the offset accounted for? See the image attached, on my side it seems that the offset isn't taken into consideration. I did check and correct wind direction is reported to WU
dont know will get back re this, but I would assume it is. Any offset is applied the same whether it is imperial or metric, offset is not changed between I or M,
Same applies for WU upload interval,
I did fix this and tested during the making of the video. the lowest is 1. Your cntroller settings should tell you what it is.
/admin14
~~~
// Weather underground interval time in minutes, 1-240m
// range check 1-240
if (newval <= 1) {
newval = 1;
}
if (newval > 240) {
newval = 240;
}
KEMO M152 rain sensor,
Sorry no, have not kept up with things lately
Regards
Robert
I will take a look at the issues to see if I can replicate them
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Robert,
amazing update, thanks for the effort!!
I have a few questions:
Is the webpage reporting the wind direction with the offset accounted for? See the image attached, on my side it seems that the offset isn't taken into consideration. I did check and correct wind direction is reported to WU.
For some reason, if I want to change the TCP/IP port, changes don't take effect and return back to standard configuration (2020)
Same applies for WU upload interval, here despite the interval is set to 2, 3, or whatever, it stays at 5 minutes. I factory reseted my ESP32 with espytool to make sure nothing would be in memory, but the problem remains
Finally, I added a KEMO M152 rain sensor, connected to the module board suggested for the simpler, but terrible, rain sensor. It seems to work fine, I had to steel 12V from the power port, but all looks good. Have you ever tried this option? Might worth to make a 12V port available in future board revisions.
Regards
Miguel
Hi Miguel
I had a spare 5m today, working on myFP2ESP32 update, so during a coffee break I looked at the wind direction issue you had asked above.
Yes, it is a little clumsy, and in some places its using without offset and other places with offset.
I have recoded this to always use offset - its simple that if you dont use an offset then offset should have a value of 0.
Actually the change makes code elsewhere cleaner. So from now on, the variable winddirection always has the offset applied.
Now I decided to do the modification, but not of the next release. So I just added it to the mysqmplus_139_03 firmware and renamed it mysqmplus_139_031
I have not had time to look at the other issues of tcpip port and KEMO M152 rain sensor. If you have any tech notes on the Kemo could you please send them to me?
If you find an issue with Winddirection, please let me know.
Regards
Robert
the only change in 139-031 is the winddirection (from what I remember)
Hi
For some reason, if I want to change the TCP/IP port, changes don't take effect and return back to standard configuration (2020)
What is the method you are using to change the TCP/IP port
1. Stop TCPIP Server
2. Change port number
3. Click SAVE to update immediately
4. Start TCPIP Server
Is the webpage reporting the wind direction with the offset accounted for? See the image attached, on my side it seems that the offset isn't taken into consideration. I did check and correct wind direction is reported to WU
dont know will get back re this, but I would assume it is. Any offset is applied the same whether it is imperial or metric, offset is not changed between I or M,
Same applies for WU upload interval,
I did fix this and tested during the making of the video. the lowest is 1. Your cntroller settings should tell you what it is.
/admin14
~~~
// Weather underground interval time in minutes, 1-240m
// range check 1-240
if (newval <= 1) {
newval = 1;
}
if (newval > 240) {
newval = 240;
}
KEMO M152 rain sensor,
Sorry no, have not kept up with things lately
Regards
Robert
I will take a look at the issues to see if I can replicate them