Search found 6 matches
- 17:24, 26 Mar 2016
- Forum: Texas Instruments
- Topic: Humidity Data Conversion Error?
- Replies: 0
- Views: 48788
Humidity Data Conversion Error?
I am constantly getting -ve values for the RH. Notice in the TI CC2650 Wiki the following code for converting raw humidity data: void sensorHdc1000Convert(uint16_t rawTemp, uint16_t rawHum, float *temp, float *hum) { //-- calculate temperature [°C] *temp = ((double)(int16_t)rawTemp / 65536)*165 - 40...
- 22:22, 11 Dec 2015
- Forum: Questions and answers
- Topic: Cordova Plugins for SensorTag
- Replies: 2
- Views: 20217
Re: Cordova Plugins for SensorTag
Thanks, Alex. The BLE/sensor tag is working in the codorva built .apk. Just my "locate me" code is not...
-Peter
-Peter
- 06:01, 11 Dec 2015
- Forum: Questions and answers
- Topic: Cordova Plugins for SensorTag
- Replies: 2
- Views: 20217
Cordova Plugins for SensorTag
Still not clear what are al of the plugins that i need to build my app for the SensorTag CC2650. Have loaded the BLE plugin, anything else. The app builds and works partially on my phone, then I get "Error 8". I'm also using Google maps and Geomarkers, not sure if that requires additional ...
- 20:10, 09 Dec 2015
- Forum: Questions and answers
- Topic: Issue with Google Maps Geomarker and evothings-app.css
- Replies: 3
- Views: 27163
Re: Issue with Google Maps Geomarker and evothings-app.css
Hi Mikael,
Have you or any one else had issues with the data for:
* relative humidity
* pressure
I get negative values for RH, and pressure values that are way off, yet the SensorTag app on iPhone looks ok.
Thanks,
Peter
Have you or any one else had issues with the data for:
* relative humidity
* pressure
I get negative values for RH, and pressure values that are way off, yet the SensorTag app on iPhone looks ok.
Thanks,
Peter
- 20:05, 09 Dec 2015
- Forum: Questions and answers
- Topic: Issue with Google Maps Geomarker and evothings-app.css
- Replies: 3
- Views: 27163
Re: Issue with Google Maps Geomarker and evothings-app.css
Thanks Mikael. Found a solution. Just commented the padding and background color for the canvas, in the css file: canvas { /* padding: 1px; border-radius: 1px;*/ border: none; /* background-color: #f3f3f3; /* Default color: "Arctic"*/ } Will share my working TI code once I've finished it :...
- 07:06, 09 Dec 2015
- Forum: Questions and answers
- Topic: Issue with Google Maps Geomarker and evothings-app.css
- Replies: 3
- Views: 27163
Issue with Google Maps Geomarker and evothings-app.css
First of all, thank you for an excellent workbench for my TI project. I'm trying to plot the TI sensor data in an information window with GeoMarker and google maps. When I remove "@import 'ui/css/evothings-app.css';" from my code the map and the marker display correctly. However I do like ...