
hart2hart
Members-
Posts
1710 -
Joined
-
Last visited
Everything posted by hart2hart
-
Thanks. I’d forgotten the cable length requirements. To get my PLM in clear RF space, it’s always been about 25 ft from the ISY and now eISY.
-
I migrated over my serial PLM from ISY to eISY. Works great. Significant Internal processing are same between it and USB. Unless the serial to usb converter adds latency should be same speed.
-
Run at Startup didn't run after time change
hart2hart replied to GJ Software Products's topic in IoX Program Support
Here it is. It uses the Timedata node server renamed to Date Time and Celestial Info in eISY. DayLight Saving Time:Check For Change If 'Date Time and Celestial Info / Calendar' DST is not '$Daylight_Saving_Time_Current Boolean' Then Wait 5 minutes Send Notification to 'MeSparkMail' content 'Daylight Saving Time Change' $Daylight_Saving_Time_Current Init To 'Date Time and Celestial Info / Calendar' DST $Daylight_Saving_Time_Current = 'Date Time and Celestial Info / Calendar' DST System: Restart IoX Else - No Actions - (To add one, press 'Action') -
Run at Startup didn't run after time change
hart2hart replied to GJ Software Products's topic in IoX Program Support
Historically I always rebooted ISY after time change. With eISY upgrade last year, I have a program that detects DST changes and reboots the eISY several minutes later. Works great and sends me a message at time change and my standard reboot message comes a short time later. -
Depending on number of breakers in your box, you might start by turning off a few breakers at a time to see if remaining still work and narrow it down to the circuit making it easier to find the device.
-
Do you get errors doing a backup?
-
In the end, I went with simple solution. It’s a USB wart plugged into AC outlet on garage ceiling with its wire zip tied to power cord down to GDO. ratgdo is in an enclosure I 3D printed held in place with magnets. You can make it out in front of white wiring.
-
ISY Developers:API:REST Interface - Universal Devices, Inc. Wiki (universal-devices.com)
-
Agreed. Cloud based but I have Alexa announce it.
-
I vaguely recall SQLite but seems like it was not ready for prime time yet.
-
One of my program populates variables with 3 irrigation data points and then writes the data to a file in the IoX web server using a Notification. I believe there was a little setup on the web server but I can't find it right now. Feels like it was just creating the location and the file within the web servers file structure, Irrigation Program segment $Water_Today_Start_I = 'Flume Water / FlumeWater / Flume Sensor 6811460334891002' Today US gallons Set 'Yard / Yard:Front Mulch Beds' On 100% Wait Zone_1 minutes ... $Water_Today_End_I = 'Flume Water / FlumeWater / Flume Sensor 6811460334891002' Today US gallons $Water_Today_Difference_I = 0 $Water_Today_Difference_I += $Water_Today_End_I $Water_Today_Difference_I -= $Water_Today_Start_I Send Notification to 'MeDataText' content 'Irrigation Log Data' Irrigation Log Data Custom Notification Subject : @webpage:@append:/irrigate/irg_log.csv Irrigation Body: ${sys.program.#.name},${alert.date},${alert.time24},${var.1.42},${var.1.43},${var.1.44} ${var.1.42} etc 1=An Integer Variable 42=Integer Variable ID with the name Water_Today_Start_I
-
I write data to the internal server using notifications as comma delimited data that open in Excel. I’ll look it up and post if you’re interested.
-
A program call running a disabled program
hart2hart replied to glacier991's topic in IoX Program Support
Yes, you can run if, run then, or run else a disabled program. -
I know 3.2.19 is coming soon and today I see: Allow ISY Access by Plugin on the Backup Plugin config screen. To be ahead of events and ready for 3.2.19, I should select this option -- correct?
-
Bam! Can you feel the burn?! Thank you, Michel and UD team.
-
Sorry. It said it wasn’t available. However, turns out it was because I was using Tapatalk and needed to login to UD at that screen. Got it now. Thanks.
-
In a land far away and a long time ago, I (like many/most) sent notifications to phone-number@vtext.com by telecom industry. For many rational reasons this was first frowned upon and then blocked. I switched to using a Spark email address and it’s been okay but I’d like to get back to text notifications. Is it possible and if so how? Thanks
-
Where did pdf file go ?
-
I agree. You can do so much in Favorites to make it look for natural.
-
Thanks for posting your variable method! Based on it, I updated to use variables thus avoiding any issues with enabled and disabled programs. The real lighting change programs are only executed when the State variable Outside_Lux_Level is changed. ----------------------------------------------------------------------------------- Lux Light Control:Level 1 - [iD 00EC][Parent 00E0] If 'WeatherFlow / Sky' Illumination < '$Outside_Lux_Step_A_I Lux' Then $Outside_Lux_Level = $Outside_Lux_Level_Dark_I Else - No Actions - (To add one, press 'Action') ----------------------------------------------------------------------------------- Lux Light Control:Level 2 - [iD 00EB][Parent 00E0] If 'WeatherFlow / Sky' Illumination >= '$Outside_Lux_Step_A_I Lux' And 'WeatherFlow / Sky' Illumination <= '$Outside_Lux_Step_B_I Lux' Then $Outside_Lux_Level = $Outside_Lux_Level_Dead_Band_1_I Else - No Actions - (To add one, press 'Action') ----------------------------------------------------------------------------------- Lux Light Control:Level 3 - [iD 00E8][Parent 00E0] If 'WeatherFlow / Sky' Illumination > '$Outside_Lux_Step_B_I Lux' Then $Outside_Lux_Level = $Outside_Lux_Level_Light_1_I Else - No Actions - (To add one, press 'Action') ----------------------------------------------------------------------------------- Lux Light Control:Lights Off - [iD 00E5][Parent 00E0] If $Outside_Lux_Level is $Outside_Lux_Level_Light_1_I Then Run Program 'Outside Lighting:Front Yard and Driveway' (Else Path) Else - No Actions - (To add one, press 'Action') ----------------------------------------------------------------------------------- Lux Light Control:Lights On - [iD 00E6][Parent 00E0] If $Outside_Lux_Level is $Outside_Lux_Level_Dark_I Then Run Program 'Outside Lighting:Front Yard and Driveway' (Then Path) Else - No Actions - (To add one, press 'Action') Lux Step Variables initially set to below: Outside_Lux_Step_A_I = 100 Outside_Lux_Step_B_I = 200
-
During the winter we get some long cold dark dreary and stormy days, but I have historically only turned outside lights on with sunset times. Decided to at least for academic exercise turn same lights on and off with Lux values coming from the WeatherFlow/Tempest plugin. The major issue that came to mind was when the illumination value changes (possible every 15 seconds as I've got WF set to Power Save mode for mind but by observation appears Lux update once a minute) to prevent repeatedly turning lights on or off. What do you think of the following couple programs as a starting point? My logic is they disable themselves and enable other to support on and off cycle. Also, feels like I need a startup program to get in them sync but would that naturally happen with first Lux value update from WF. On second thought probably need to enable both at startup in case of long power failure and wrong program is disabled -- thoughts? Lux Light Control:Lights On If 'WeatherFlow / Sky' Illumination <= '$Outside_Lighting_LUX_On_I Lux' Then Disable Program 'LUX Light Control:Lights On' Run Program 'Outside Lighting:Front Yard and Driveway' (Then Path) Enable Program 'LUX Light Control:Lights Off' Else - No Actions - (To add one, press 'Action') Lux Light Control:Lights Off [Not Enabled] as it was first run in full daylight If 'WeatherFlow / Sky' Illumination >= '$Outside_Lighting_LUX_Off_i Lux' Then Disable Program 'LUX Light Control:Lights Off' Run Program 'Outside Lighting:Front Yard and Driveway' (Else Path) Enable Program 'LUX Light Control:Lights On' Else - No Actions - (To add one, press 'Action') Variables initially set to: Outside_Lighting_LUX_Off_i = 100 Outside_Lighting_LUX_Off_i = 200
-
I suggest you enter a support ticket.
-
Thank you.
-
I use the Backup plugin. To confirm, can I reinstall plugins individually but not Backup until it’s updated?