1234567891011121314151617181920212223242526272829303132 |
- /*
- * lora.h
- *
- * ESP8266 / ESP32 Environmental Sensor
- *
- * ----------------------------------------------------------------------------
- * "THE BEER-WARE LICENSE" (Revision 42):
- * <xythobuz@xythobuz.de> wrote this file. As long as you retain this notice
- * you can do whatever you want with this stuff. If we meet some day, and you
- * think this stuff is worth it, you can buy me a beer in return. Thomas Buck
- * ----------------------------------------------------------------------------
- */
-
- #ifndef __ESP_ENV_LORA__
- #define __ESP_ENV_LORA__
-
- #ifdef FEATURE_LORA
-
- void lora_oled_init(void);
- void lora_oled_print(String s);
-
- void lora_init(void);
- void lora_run(void);
-
- #ifdef FEATURE_SML
- void lora_sml_send(double SumWh, double T1Wh, double T2Wh,
- double SumW, double L1W, double L2W, double L3W);
- #endif // FEATURE_SML
-
- #endif // FEATURE_LORA
-
- #endif // __ESP_ENV_LORA__
|