IBM-Cloud / iot-sensor-tag

Sample code for connecting to a TI Sensor Tag and using that data in apps deployed to Bluemix.
Apache License 2.0
33 stars 45 forks source link

Fixed values #9

Closed fspralja closed 8 years ago

fspralja commented 8 years ago

Hello, here the changes

fspralja commented 8 years ago

before the dataset was:

"evt": {
        "myName": "TI Sensor Tag",
        "pressure": null,
        "humidity": 23.35540771484375,
        "objTemp": null,
        "ambientTemp": 18.03125,
        "temp": null
      }

now after correction:

"evt": {
        "myName": "TI Sensor Tag",
        "pressure": 988.71,
        "humidity": 51.947021484375,
        "objTemp": 18.8125,
        "ambientTemp": 23.3125,
        "temp": 23.39569091796875,
        "lux": 65.92
      }
ryanjbaxter commented 8 years ago

thanks!