Jump to content

PG3 Notification Node server 3.3.4


Recommended Posts

Posted

Please stop saying the new version does not show in the PG3 UI after restarting. I've already said: The version info is stored in PG3 database so need help from @bpwwer so I'm sure he will look into when he has time.

Sent from my Pixel 6 Pro using Tapatalk

Posted
1 minute ago, JimboAutomates said:

Please stop saying the new version does not show in the PG3 UI after restarting. I've already said: The version info is stored in PG3 database so need help from @bpwwer so I'm sure he will look into when he has time.

Sent from my Pixel 6 Pro using Tapatalk
 

According to the log, after restarting the Notification node server, the version starting is 3.3.1 not v3.3.2 listed in the store.

Posted
4 minutes ago, JimboAutomates said:

Please stop saying the new version does not show in the PG3 UI after restarting. I've already said: The version info is stored in PG3 database so need help from @bpwwer so I'm sure he will look into when he has time.

Sent from my Pixel 6 Pro using Tapatalk
 

understood

Posted
1 hour ago, dbwarner5 said:

@asbril I had to go back to the dashboard, and then back to Details of the NS and then it shows the current newest version number.

did not work for me, but I have no worries as it is being addressed

  • Like 1
Posted
7 hours ago, asbril said:

Thanks so much.   I had not realized that I had added  a(n empty) space in Telegram and deleted it.

That resolved the issue. However I forgot how I previously used Pushover in my programs. What I did now does indeed push a message to Pushover App on my Iphone, but as "unknown"  and "Undefined message 0" :

image.thumb.png.a10b21a16e8de963eadaa0c116495475.png

Can you please remind me how to do it correctly ?

You have mixed together 2 different methods of sending a notification.  The How it Works describes these as "messages" and "notify nodes", they are used individually, not together.

The first line in your then sets the "message" to 'Bad Weather', then next three lines set params on a 'notify node' then the last line sends a message on the pushover service.

The best way to do this now is to create a Custom Content in the Admin Console which can contain the drivers from the NOAA Weather node to tell you the Alert and Wind speed in the message.  Then the program will just have one line in the 'Then' section.

  • Thanks 1
Posted (edited)

I just made a minor change and released 3.3.3, I went to PG3 on my production machine, clicked restart and once it connected the version updated to 3.3.3 as expected.  Bob also was unable to see the issue on his machine this morning.

So anyone still having the issue with an update not showing properly, please describe in detail what you did and what you did not see and start a new thread so @bpwwer can help.

 

Edited by JimboAutomates
  • Like 1
  • Thanks 1
Posted
1 hour ago, JimboAutomates said:

I just made a minor change and released 3.3.3, I went to PG3 on my production machine, clicked restart and once it connected the version updated to 3.3.3 as expected.  Bob also was unable to see the issue on his machine this morning.

So anyone still having the issue with an update not showing properly, please describe in detail what you did and what you did not see and start a new thread so @bpwwer can help.

 

I have 3.3.3 now

  • Like 1
Posted
11 hours ago, JimboAutomates said:

Thanks all.

@asbril I added a documentation example similar to what I described to you above https://github.com/UniversalDevicesInc-PG3/udi-poly-notification/blob/master/README.md#send-sys-short-with-params

 

FYI.  I updated last night but today it told me I need the update.  I already had it.  Strange.  That message was not there last night.  I will send to @bpwwer

You can see version number in screenshot already up to date

Screen Shot 2022-04-05 at 8.44.35 AM.png

Posted
35 minutes ago, macjeff said:

FYI.  I updated last night but today it told me I need the update.  I already had it.  Strange.  That message was not there last night.  I will send to @bpwwer

You can see version number in screenshot already up to date

Screen Shot 2022-04-05 at 8.44.35 AM.png

I experienced the same thing. I restarted the Node Server and the message went away. My install was already at v3.3.3, so there was no change.

Posted
30 minutes ago, DennisC said:

I experienced the same thing. I restarted the Node Server and the message went away. My install was already at v3.3.3, so there was no change.

I reported to @bpwwer.   Somewhere it must think we are still on older version.

Posted
21 hours ago, JimboAutomates said:

The best way to do this now is to create a Custom Content in the Admin Console which can contain the drivers from the NOAA Weather node to tell you the Alert and Wind speed in the message.  Then the program will just have one line in the 'Then' section.

I have sorted out in my old way (

THEN

Node server notification - node Bad Weather - message

Node server notification - node Bad Weather - devices all

Node server notification - node Bad Weather - priority

Node server notification - node Bad Weather -ON

)

But I would like to understand how to create a Custom Content in the Admin Console which can contain the drivers from the NOAA Weather node to tell you the Alert and Wind speed in the message.  Then the program will just have one line in the 'Then' section.

 

Posted
14 minutes ago, asbril said:

I have sorted out in my old way (

THEN

Node server notification - node Bad Weather - message

Node server notification - node Bad Weather - devices all

Node server notification - node Bad Weather - priority

Node server notification - node Bad Weather -ON

)

But I would like to understand how to create a Custom Content in the Admin Console which can contain the drivers from the NOAA Weather node to tell you the Alert and Wind speed in the message.  Then the program will just have one line in the 'Then' section.

 

There are 2 examples showing the usage, one is the "old" way setting them on the controller:

https://github.com/UniversalDevicesInc-PG3/udi-poly-notification/blob/master/README.md#send-sys-short

and the other is the new way using one program line on the service node:

https://github.com/UniversalDevicesInc-PG3/udi-poly-notification/blob/master/README.md#send-sys-short-with-params

You can put any ${sys.node.somenode.name} ${sys.node.somenode.driver} where the somenode is the node address and driver is the node driver that shoes the data you want as documented here https://wiki.universal-devices.com/index.php?title=ISY-994i_Series:EMail_and_Networking_Substitution_Variables

 

 

  • Like 1
Posted
6 minutes ago, JimboAutomates said:

There are 2 examples showing the usage, one is the "old" way setting them on the controller:

https://github.com/UniversalDevicesInc-PG3/udi-poly-notification/blob/master/README.md#send-sys-short

and the other is the new way using one program line on the service node:

https://github.com/UniversalDevicesInc-PG3/udi-poly-notification/blob/master/README.md#send-sys-short-with-params

You can put any ${sys.node.somenode.name} ${sys.node.somenode.driver} where the somenode is the node address and driver is the node driver that shoes the data you want as documented here https://wiki.universal-devices.com/index.php?title=ISY-994i_Series:EMail_and_Networking_Substitution_Variables

 

 

Thanks so much,  I need to spend some time on this as "    ${sys.node.somenode.name} ${sys.node.somenode.driver}      " is language that I am not familiar with.

  • 2 weeks later...
  • 2 weeks later...
Posted

Hi Jim,

I run two Polisy's at two different locations, both are running the same versions of IoP (5.4.3.1), PG3 (3.0.59), Notification Node Server (3.3.4), and Weatherflow Node Server (3.0.19). I have 2 of the same Notifications set up with the Notification Node Server for Today's Weather Forecast and Tomorrow's Weather Forecast.

However, I am getting two different format results for the same condition depending on the location the notification is coming from.

The Notification NR sends: Forecast Conditions ${sys.node.n001_forecast_0.GV13} for today's forecast and Forecast Conditions ${sys.node.n001_forecast_1.GV13} for tomorrow's forecast.

The formatted results are Clear, Rain Likely, Rain Possible, etc from one location and 0, 1, 2, etc from the second location.

I have restarted Weatherflow and Notification Node Server, and I have restarted Polisy at the location sending numbers instead of the actual condition name with no change. I have also copy and pasted the Network Resources set up from one unit to the other in case there was a stray character in the one sending the numbers.

Both locations are set up with no encoding and raw text. I also have included system date, system time, node name, high temperature, low temperature, and chance of precipitation in the same notification.

I am not sure if the issue is with Polisy, Weatherflow or Notification Node Server. Can you offer any guidance on how to track down what is causing the one unit to send numbers?

Posted
6 hours ago, DennisC said:

The formatted results are Clear, Rain Likely, Rain Possible, etc from one location and 0, 1, 2, etc from the second location.

That issue usually means the ISY needs to be restarted, but you said Polisy was rebooted, so I'm not sure what the problem is...

Posted
4 hours ago, JimboAutomates said:

That issue usually means the ISY needs to be restarted, but you said Polisy was rebooted, so I'm not sure what the problem is...

I have previously rebooted Polisy several times and just tried again with no change. I then tried power cycling Polisy but that didn't work either.

Posted

 

10 hours ago, JimboAutomates said:

Do they show correctly in the admin console and UD Mobile?

Sent from my Pixel 6 Pro using Tapatalk
 

They both show up correctly in the admin console. One site shows correctly in UD Mobile, the site that sends numbers in the Notification Node Server also shows numbers in UD Mobile. 

I tagged Bob to see if he has any suggestions.

 

@bpwwer, could you look at the issue I describe starting with the post below and see if you have any thoughts on how to correct numbers instead of description showing up in Weatherflow's forecast conditions. 

Thank you both.

22 hours ago, DennisC said:

Hi Jim,

I run two Polisy's at two different locations, both are running the same versions of IoP (5.4.3.1), PG3 (3.0.59), Notification Node Server (3.3.4), and Weatherflow Node Server (3.0.19). I have 2 of the same Notifications set up with the Notification Node Server for Today's Weather Forecast and Tomorrow's Weather Forecast.

However, I am getting two different format results for the same condition depending on the location the notification is coming from.

The Notification NR sends: Forecast Conditions ${sys.node.n001_forecast_0.GV13} for today's forecast and Forecast Conditions ${sys.node.n001_forecast_1.GV13} for tomorrow's forecast.

The formatted results are Clear, Rain Likely, Rain Possible, etc from one location and 0, 1, 2, etc from the second location.

I have restarted Weatherflow and Notification Node Server, and I have restarted Polisy at the location sending numbers instead of the actual condition name with no change. I have also copy and pasted the Network Resources set up from one unit to the other in case there was a stray character in the one sending the numbers.

Both locations are set up with no encoding and raw text. I also have included system date, system time, node name, high temperature, low temperature, and chance of precipitation in the same notification.

I am not sure if the issue is with Polisy, Weatherflow or Notification Node Server. Can you offer any guidance on how to track down what is causing the one unit to send numbers?

Posted
3 hours ago, DennisC said:

 

They both show up correctly in the admin console. One site shows correctly in UD Mobile, the site that sends numbers in the Notification Node Server also shows numbers in UD Mobile. 

I tagged Bob to see if he has any suggestions.

 

@bpwwer, could you look at the issue I describe starting with the post below and see if you have any thoughts on how to correct numbers instead of description showing up in Weatherflow's forecast conditions. 

Thank you both.

If it's not showing in UD Mobile then hit the load profile button (or whatever it's called) in the PG3 UI for that Node server, then restart ISY again and re-sync UD Mobile to see if that fixes it.  Although it's strange that it shows properly in AC...

Posted

@DennisC,

If that does not resolve the issue please send me an email.  The app gets the formatted values from the ISY so this is very odd that it would show in the AC but not Mobile after reboot.

Guest
This topic is now closed to further replies.

×
×
  • Create New...