t1000e_sensors.h 299 B

123456789
  1. #pragma once
  2. #include <stdint.h>
  3. // Light and temperature sensors are on ADC ports
  4. // functions adapted from Seeed examples to get values
  5. // see : https://github.com/Seeed-Studio/Seeed-Tracker-T1000-E-for-LoRaWAN-dev-board
  6. extern uint32_t t1000e_get_light();
  7. extern float t1000e_get_temperature();