mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-04 18:29:48 +02:00
18 lines
382 B
C
18 lines
382 B
C
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "../../../USER_SETTINGS.h" // Needed for WiFi ssid and password
|
|
extern uint16_t system_battery_voltage_dV; //V+1, 0-1000.0 (0-10000)
|
|
|
|
/**
|
|
* @brief Replaces placeholder with content section in web page
|
|
*
|
|
* @param[in] var
|
|
*
|
|
* @return String
|
|
*/
|
|
String settings_processor(const String& var);
|
|
|
|
#endif
|