Reset Running Values

Ask questions about the GEM here.
Post Reply
jkosharek
Posts: 8
Joined: Thu Feb 25, 2021 11:53 am

Reset Running Values

Post by jkosharek » Fri Oct 27, 2023 3:51 pm

I have 2 Gems feeding in to dashbox and dashbox feeding out to NodeLink which allows my energy data to be brought in to the ISY/IoX platform.

I am trying to figure out how to reset the counters that I have my water meters connected to, as well as the Total Energy and runtime of the power channels.
ben
Site Admin
Posts: 4262
Joined: Fri Jun 04, 2010 9:39 am

Re: Reset Running Values

Post by ben » Mon Oct 30, 2023 10:38 am

jkosharek wrote:
Fri Oct 27, 2023 3:51 pm
I have 2 Gems feeding in to dashbox and dashbox feeding out to NodeLink which allows my energy data to be brought in to the ISY/IoX platform.

I am trying to figure out how to reset the counters that I have my water meters connected to, as well as the Total Energy and runtime of the power channels.
In the GEM Setup Webpage under Adv you can reset the counters there.

There's also some commands that could be sent:

^^^SYSRSTA (all counters)
^^^SYSRSTP (pulse counters)

(https://brultech.com/software/files/dow ... _11.0_.pdf)
Ben
Brultech Research Inc.
E: ben(at)brultech.com
jkosharek
Posts: 8
Joined: Thu Feb 25, 2021 11:53 am

Re: Reset Running Values

Post by jkosharek » Wed Nov 15, 2023 5:29 pm

ben wrote:
Mon Oct 30, 2023 10:38 am
jkosharek wrote:
Fri Oct 27, 2023 3:51 pm
I have 2 Gems feeding in to dashbox and dashbox feeding out to NodeLink which allows my energy data to be brought in to the ISY/IoX platform.

I am trying to figure out how to reset the counters that I have my water meters connected to, as well as the Total Energy and runtime of the power channels.
In the GEM Setup Webpage under Adv you can reset the counters there.

There's also some commands that could be sent:

^^^SYSRSTA (all counters)
^^^SYSRSTP (pulse counters)

(https://brultech.com/software/files/dow ... _11.0_.pdf)
What do I use to send the commands to the Gems?
ben
Site Admin
Posts: 4262
Joined: Fri Jun 04, 2010 9:39 am

Re: Reset Running Values

Post by ben » Thu Nov 16, 2023 10:35 am

jkosharek wrote:
Wed Nov 15, 2023 5:29 pm
ben wrote:
Mon Oct 30, 2023 10:38 am
jkosharek wrote:
Fri Oct 27, 2023 3:51 pm
I have 2 Gems feeding in to dashbox and dashbox feeding out to NodeLink which allows my energy data to be brought in to the ISY/IoX platform.

I am trying to figure out how to reset the counters that I have my water meters connected to, as well as the Total Energy and runtime of the power channels.
In the GEM Setup Webpage under Adv you can reset the counters there.

There's also some commands that could be sent:

^^^SYSRSTA (all counters)
^^^SYSRSTP (pulse counters)

(https://brultech.com/software/files/dow ... _11.0_.pdf)
What do I use to send the commands to the Gems?
Any TCP connection. You could use the GEM Network Utility.

It's likely easiest just to bring up the GEM Setup Webpage and go under Adv however.
Ben
Brultech Research Inc.
E: ben(at)brultech.com
jkosharek
Posts: 8
Joined: Thu Feb 25, 2021 11:53 am

Re: Reset Running Values

Post by jkosharek » Thu Nov 16, 2023 11:11 am

Would I telnet/connect to port 8000 and run the command, My thought is reset it on a monthly basis?
ben
Site Admin
Posts: 4262
Joined: Fri Jun 04, 2010 9:39 am

Re: Reset Running Values

Post by ben » Thu Nov 16, 2023 2:43 pm

jkosharek wrote:
Thu Nov 16, 2023 11:11 am
Would I telnet/connect to port 8000 and run the command, My thought is reset it on a monthly basis?
You could put something like (replace RQSALL with the reset command, just use RQSALL for testing) this in a script and have crontab execute it monthly on your NodeLink machine:

Code: Select all

{ echo "^^^RQSALL"; sleep 1; } | telnet X.X.X.X 8000
Ben
Brultech Research Inc.
E: ben(at)brultech.com
Post Reply