diff --git a/app/client/log.js b/app/client/log.js index ae000b7..add5112 100644 --- a/app/client/log.js +++ b/app/client/log.js @@ -1,6 +1,7 @@ Template.log.helpers({ sensorDataCollection: function() { - return SensorData.find({}, { + var controllerId = Session.get('controller_id'); + return SensorData.find({ controllerId: controllerId }, { sort: { created_at: -1 } diff --git a/app/server/api.js b/app/server/api.js index b2dfa1b..2c0cf3d 100644 --- a/app/server/api.js +++ b/app/server/api.js @@ -1,5 +1,6 @@ // Global API configuration var Api = new Restivus({ + version: 'v1.0', useDefaultAuth: true, prettyJson: true }); @@ -8,11 +9,13 @@ Api.addRoute('sensorData', { authRequired: false }, { post: function() { + console.log("Body params", this.bodyParams); SensorData.insert({ temperatureValue: parseFloat(this.bodyParams.temperatureValue), humidityValue: parseFloat(this.bodyParams.humidityValue), tankFull: this.bodyParams.tankFull, owner: this.bodyParams.owner, + controllerId: this.bodyParams.controllerId, created_at: new Date() }); return []; diff --git a/controller/config/__init__.py b/controller/config/__init__.py index 68d0971..6a6c197 100644 --- a/controller/config/__init__.py +++ b/controller/config/__init__.py @@ -1,9 +1,9 @@ GPIO_PIN_DHT = 4 # BCM -SENSORDATA_URL = 'http://tfm.meteor.com/api/sensorData' +SENSORDATA_URL = 'http://tfm.meteor.com/api/v1.0/sensorData' GPIO_PIN_TANKFULL = 20 # BCM GPIO_PIN_VALVE = 21 # BCM -API_BASE_URL = 'http://tfm.meteor.com/api' +API_BASE_URL = 'http://tfm.meteor.com/api/v1.0' CONTROLLER_ID = '120' # every controller must have a different one STATE_FILE = '/var/run/controller_state' diff --git a/controller/sensors.py b/controller/sensors.py index 7c937ee..bf43949 100644 --- a/controller/sensors.py +++ b/controller/sensors.py @@ -3,7 +3,6 @@ import sys import requests import Adafruit_DHT import config -import config import RPi.GPIO as GPIO # Try to read the state of GPIO_PIN_TANKFULL @@ -15,14 +14,8 @@ print 'Bacva puna: {}'.format(tankFull) # Go on to DHT SENSOR_TYPE = Adafruit_DHT.DHT11 - -if len(sys.argv) == 3: - owner = sys.argv[1] - controller_id = sys.argv[2] -else: - print 'usage: sudo ./controller.py [OWNER] [CONTROLLER_ID]#' - print 'example: sudo ./controller.py Senad 225 - Send temperature as Senad for controller 225' - sys.exit(1) +controller_id = config.CONTROLLER_ID +owner = "Controller: %s" % controller_id # Try to grab a sensor reading. Use the read_retry method which will retry up # to 15 times to get a sensor reading (waiting 2 seconds between each retry). @@ -36,7 +29,9 @@ humidity, temperature = Adafruit_DHT.read_retry(SENSOR_TYPE, config.GPIO_PIN_DHT # guarantee the timing of calls to read the sensor). # If this happens try again! if temperature is not None and humidity is not None: - response = requests.post(config.SENSORDATA_URL, json={"owner": owner, "temperatureValue": temperature, "humidityValue":humidity, "tankFull":tankFull}) + response = requests.post(config.SENSORDATA_URL, json={"owner": owner, "temperatureValue": temperature, "humidityValue":humidity, "tankFull":tankFull, + "controllerId": controller_id + }) print 'Temp={0:0.1f}*C'.format(temperature) print 'Humidity={0:0.1f}%'.format(humidity) if response.status_code != 200: