From 3c0d13301899359f260aa17104e2ff9895465fea Mon Sep 17 00:00:00 2001 From: cse47242 Date: Sat, 9 Jan 2021 16:04:41 +0000 Subject: [PATCH] Upload files to '' --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a58be02..e520f7b 100644 --- a/README.md +++ b/README.md @@ -48,15 +48,14 @@ and use Chronograf UI to visualize generated data. const connection = FakeDeviceConnection() const deviceManager = FakeDeviceManager({ - deviceCount: 10, - metricsInterval: 30000, + deviceCount: 100, + metricsInterval: 30, connection: FakeDeviceConnection, onUpdateStats: updateStats, measurements: { - temperature: {type: 'integer', min: -20, max: 60}, - air_humidity: {type: 'integer', min: 20, max: 100}, - ground_humidity: {type: 'integer', min: 20, max: 100}, - airforce: {type: 'integer', min: 0, max: 10} + usage: {type: 'integer', min: 0, max: 100}, + voltage: {type: 'integer', min: 0, max: 15}, + temperature: {type: 'integer', min: -20, max: 60} } }) deviceManager.start()