This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/LAUNCHXL-CC2650: LAUNCHXL-CC2650

Part Number: LAUNCHXL-CC2650
Other Parts Discussed in Thread: CC2650

Tool/software: TI-RTOS

Integrated Temperature Sensor.

basically i have CC2650 launchpad with me i want to read internal temperature of CC2650 launchpad as in the description it has got integrated temperature sensor read the value and send it over Bluetooth to another CC2650 launchpad. Proffered to example "RF Wireless Sensor Network Concentrator" to "  RF Wireless Sensor Network Node". i want the code should be modified to internal temperature to send from one to another help in coding plz

  • You can use the following codes to read internal temperature sensor

    AONBatMonEnable();
    TemperatureSensor = AONBatMonTemperatureGetDegC();
    AONBatMonDisable();

    Since you want to transmit temperature data in BLE, I suppose you should create a GATT service for such purpose instead of using example "RF Wireless Sensor Network Concentrator" and " RF Wireless Sensor Network Node" which are not based on BLE.