Search found 2 matches

by SilverX
Friday 09 August 2019 14:33
Forum: LUA
Topic: [LUA] Irrigation script - (extensive) v1.0
Replies: 11
Views: 5803

Re: [LUA] Irrigation script - (extensive) v1.0

dmq0 wrote: Saturday 13 July 2019 10:08 @SilverX

where can I find your darksky version?

Thanks in advance
PM.
I use arduino to measure humidity, soil temperature and to control valves. Arduino asks the controller for maximum watering time and turns off the valves if the off command is not received from the controller.
by SilverX
Friday 31 May 2019 8:01
Forum: LUA
Topic: [LUA] Irrigation script - (extensive) v1.0
Replies: 11
Views: 5803

Re: [LUA] Irrigation script - (extensive) v1.0

Change weather underground to dark sky and modify windmeter data. Also I added two more zones.

Dark sky wind unit is m/s. The code below will convert it to km/h.

Code: Select all

 sWindSpeed = tonumber(sWindSpeed)*0.36;
 sWindGust = tonumber(sWindGust)*0.36;