Page 1 of 1

Reset Running Values

Posted: Fri Oct 27, 2023 3:51 pm
by jkosharek
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.

Re: Reset Running Values

Posted: Mon Oct 30, 2023 10:38 am
by ben
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)

Re: Reset Running Values

Posted: Wed Nov 15, 2023 5:29 pm
by jkosharek
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?

Re: Reset Running Values

Posted: Thu Nov 16, 2023 10:35 am
by ben
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.

Re: Reset Running Values

Posted: Thu Nov 16, 2023 11:11 am
by jkosharek
Would I telnet/connect to port 8000 and run the command, My thought is reset it on a monthly basis?

Re: Reset Running Values

Posted: Thu Nov 16, 2023 2:43 pm
by ben
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