2025-06-02 19:33:48 +02:00
|
|
|
#pragma once
|
2025-09-04 23:12:57 +02:00
|
|
|
#include <stdint.h>
|
2025-06-02 19:33:48 +02:00
|
|
|
|
|
|
|
|
// Light and temperature sensors are on ADC ports
|
2025-09-04 23:12:57 +02:00
|
|
|
// functions adapted from Seeed examples to get values
|
2025-06-02 19:33:48 +02:00
|
|
|
// see : https://github.com/Seeed-Studio/Seeed-Tracker-T1000-E-for-LoRaWAN-dev-board
|
|
|
|
|
|
|
|
|
|
extern uint32_t t1000e_get_light();
|
|
|
|
|
extern float t1000e_get_temperature();
|