Skip to content

Commit

Permalink
REMOVE: trigger current state interval
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-jung committed Dec 10, 2020
1 parent 62bcae2 commit a58250e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions cdn/ServiceDock.js
Original file line number Diff line number Diff line change
Expand Up @@ -4577,10 +4577,10 @@ function Service_SPIKE() {
*/
async function streamUJSONRPC() {
try {

var triggerCurrentStateInterval = setInterval(function() {
UJSONRPC.triggerCurrentState();
}, 500);
// COMMENTED BY JEREMY JUNG (DECEMBER/10/2020)
// var triggerCurrentStateInterval = setInterval(function() {
// UJSONRPC.triggerCurrentState();
// }, 500);

var firstReading = true;
// read when port is set up
Expand Down
8 changes: 4 additions & 4 deletions server/examples/modules/ServiceDock_SPIKE.js
Original file line number Diff line number Diff line change
Expand Up @@ -3028,10 +3028,10 @@ function Service_SPIKE() {
*/
async function streamUJSONRPC() {
try {

var triggerCurrentStateInterval = setInterval(function() {
UJSONRPC.triggerCurrentState();
}, 500);
// COMMENTED BY JEREMY JUNG (DECEMBER/10/2020)
// var triggerCurrentStateInterval = setInterval(function() {
// UJSONRPC.triggerCurrentState();
// }, 500);

var firstReading = true;
// read when port is set up
Expand Down

0 comments on commit a58250e

Please sign in to comment.