class Onboard Sensors¶
The Datalogger is equipped with onboard sensors to provide temperature, humidity and coincell battery information.
Constructor¶
-
class
omc048.
onboard_sensors
¶ Create a onboard sensors object associated with the data logger.
Methods¶
Example¶
The following example returns the loggers temperature, relative humidity and coincell voltage
import omc048
board_info = omc048.onboard_sensors()
temperature = board_info.temp()
humidity = board_info.hum()
battery = board_info.vbat()