From c11ab13a70c65c8e098da6baf49a1323452933d9 Mon Sep 17 00:00:00 2001 From: Vinit Jha Date: Wed, 25 Sep 2019 15:56:04 +0530 Subject: [PATCH] Updated USE_READ = true -> USE_READ = 1; Not working without that on nodejs setup on python2.7 on rasbian OS --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 0adfce3..d2d2bbd 100644 --- a/test.js +++ b/test.js @@ -4,7 +4,7 @@ var async = require('async'); var SensorTag = require('./index'); -var USE_READ = true; +var USE_READ = 1; SensorTag.discover(function(sensorTag) { console.log('discovered: ' + sensorTag);