Get temperature without extra hardware | Telit Cinterion IoT Developer Community
September 8, 2016 - 2:16pm, 2369 views
Hello, is posible to get value of current temperature using only concept board, without any nucleo or extra hardware??
On SensorLogic panel in Device>Module>Temperature there shows the currrent temperature as I guess...
same question about voltage
where is posible to find this information, maybe is inside a library?
Hello,
Concept board does not provide a temperature sensor. You would need to connect some sensor and prepare the driver for it.
These values that you can see on the Module tab are the values provided by the module and you can read them with AT commands:
- the supply (or battery) voltage of the module that you can get with AT^SBV command
- the module's temperature that you can get with AT^SCTM? command
You should have the Sensor Logic Agent User Guide document that describes the features of libraries. You also probably have the API documentation for the libraries that can help you in development of your own solution based on SL.
Regards,
Bartłomiej
Thanks, but value in temperature is not the same ...
using AT^SCTM? shows me temperature 0,
looking on SL portal shows 27
why?
with voltage is giving the same value on both sides
The temperature is not displayed by the AT^SCTM? command output by default. You need to enable it. For example you can do it like this: AT^SCTM=0,1
Please check in the AT commands specification document for more details about AT^SCTM command.