Commit 01724c50 authored by Eric Duminil's avatar Eric Duminil
Browse files

TODO

parent 110b1993
Pipeline #5786 passed with stage
in 2 minutes and 33 seconds
......@@ -136,7 +136,7 @@ namespace web_config {
Builder<CheckboxTParameter>("dst").label("Daylight Saving Time?").defaultValue(false).build();
/**
* LoRa & Stuff
* LoRaWAN
*/
#if defined(ESP32)
OptionalParameterGroup loraParams = OptionalParameterGroup("LoRaWan", "LoRaWan", AMPEL_LORAWAN);
......@@ -144,12 +144,14 @@ namespace web_config {
Builder<IntTParameter<uint16_t>>("lora_timestep").label("LoRa timestep").defaultValue(
LORAWAN_SENDING_INTERVAL).min(0).step(1).defaultValue(300).placeholder("[s]").build();
//TODO: Use those parameters
TextTParameter<17> deviceEUIParam = Builder<TextTParameter<17>>("device_eui").label("Device EUI").defaultValue(
"70B3D5...").build();
TextTParameter<17> appEUIParam =
Builder<TextTParameter<17>>("app_eui").label("App EUI").defaultValue("00EA07...").build();
TextTParameter<32> appKeyParam =
Builder<TextTParameter<32>>("app_key").label("App key").defaultValue("81CCFE...").build();
//TODO: Save LoRa session to hidden parameter after first OTAA successful login
#endif
OptionalGroupHtmlFormatProvider optionalGroupHtmlFormatProvider;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment