controller id is now sent with sensor data

This commit is contained in:
Senad Uka
2016-02-14 12:08:36 +01:00
parent 4b1873619b
commit 2156651cb2
3 changed files with 10 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
Template.log.helpers({ Template.log.helpers({
sensorDataCollection: function() { sensorDataCollection: function() {
return SensorData.find({}, { var controllerId = Session.get('controller_id');
return SensorData.find({ controllerId: controllerId }, {
sort: { sort: {
created_at: -1 created_at: -1
} }

View File

@@ -13,6 +13,7 @@ Api.addRoute('sensorData', {
humidityValue: parseFloat(this.bodyParams.humidityValue), humidityValue: parseFloat(this.bodyParams.humidityValue),
tankFull: this.bodyParams.tankFull, tankFull: this.bodyParams.tankFull,
owner: this.bodyParams.owner, owner: this.bodyParams.owner,
controllerId: this.bodyParams.controllerId,
created_at: new Date() created_at: new Date()
}); });
return []; return [];

View File

@@ -3,7 +3,6 @@ import sys
import requests import requests
import Adafruit_DHT import Adafruit_DHT
import config import config
import config
import RPi.GPIO as GPIO import RPi.GPIO as GPIO
# Try to read the state of GPIO_PIN_TANKFULL # Try to read the state of GPIO_PIN_TANKFULL
@@ -15,13 +14,11 @@ print 'Bacva puna: {}'.format(tankFull)
# Go on to DHT # Go on to DHT
SENSOR_TYPE = Adafruit_DHT.DHT11 SENSOR_TYPE = Adafruit_DHT.DHT11
controller_id = config.CONTROLLER_ID
if len(sys.argv) == 3: owner = "Controller: %s" % controller_id
owner = sys.argv[1]
controller_id = sys.argv[2]
else: else:
print 'usage: sudo ./controller.py [OWNER] [CONTROLLER_ID]#' print 'usage: sudo ./sensors.py '
print 'example: sudo ./controller.py Senad 225 - Send temperature as Senad for controller 225' print 'example: sudo ./sensors.py Send temperature for controller in config'
sys.exit(1) sys.exit(1)
# Try to grab a sensor reading. Use the read_retry method which will retry up # Try to grab a sensor reading. Use the read_retry method which will retry up
@@ -36,7 +33,9 @@ humidity, temperature = Adafruit_DHT.read_retry(SENSOR_TYPE, config.GPIO_PIN_DHT
# guarantee the timing of calls to read the sensor). # guarantee the timing of calls to read the sensor).
# If this happens try again! # If this happens try again!
if temperature is not None and humidity is not None: 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 'Temp={0:0.1f}*C'.format(temperature)
print 'Humidity={0:0.1f}%'.format(humidity) print 'Humidity={0:0.1f}%'.format(humidity)
if response.status_code != 200: if response.status_code != 200: