const DeviceManager = require('./src/fake-device-manager') const FakeDeviceConnection = require('./src/fake-device-connection')() const updateStats = require('./src/stats') console.log('Generating data - send interval: 30s') let deviceManager = DeviceManager({ deviceCount: 10, metricsInterval: 30, connection: FakeDeviceConnection, onUpdateStats: updateStats, measurements: { temperature: {type: 'integer', min: -10, max: 50}, air_humidity: {type: 'integer', min: 30, max: 100}, ground_humidity: {type: 'integer', min: 30, max: 100}, airforce: {type: 'integer', min: 30, max: 100} } }) updateStats(deviceManager) deviceManager.start()