- autotransition can be turn on and of in onscreen menu - autotransition is turned off when only one app is loaded closes #1 closes #2
83 lines
2.0 KiB
C++
83 lines
2.0 KiB
C++
#include "Globals.h"
|
|
#include "Preferences.h"
|
|
|
|
Preferences Settings;
|
|
|
|
void loadSettings()
|
|
{
|
|
Settings.begin("awtrix", false);
|
|
MATRIX_FPS = Settings.getUChar("FPS", 23);
|
|
BRIGHTNESS = Settings.getUChar("BRI", 120);
|
|
AUTO_BRIGHTNESS = Settings.getBool("ABRI", true);
|
|
TEXTCOLOR_565 = Settings.getUInt("COL", 0xFFFF);
|
|
AUTO_TRANSITION = Settings.getBool("TRANS", true);
|
|
Settings.end();
|
|
}
|
|
|
|
void saveSettings()
|
|
{
|
|
Settings.begin("awtrix", false);
|
|
Settings.putUChar("FPS", MATRIX_FPS);
|
|
Settings.putUChar("BRI", BRIGHTNESS);
|
|
Settings.putBool("ABRI", AUTO_BRIGHTNESS);
|
|
Settings.putBool("TRANS", AUTO_TRANSITION);
|
|
Settings.putUInt("COL", TEXTCOLOR_565);
|
|
Settings.end();
|
|
}
|
|
|
|
IPAddress local_IP;
|
|
IPAddress gateway;
|
|
IPAddress subnet;
|
|
IPAddress primaryDNS;
|
|
IPAddress secondaryDNS;
|
|
const char *VERSION = "0.31";
|
|
String MQTT_HOST = "";
|
|
uint16_t MQTT_PORT = 1883;
|
|
String MQTT_USER;
|
|
String MQTT_PASS;
|
|
String MQTT_PREFIX = "AwtrixLight";
|
|
String CITY = "Berlin,de";
|
|
bool IO_BROKER = false;
|
|
bool NET_STATIC = false;
|
|
bool SHOW_DATE = true;
|
|
bool SHOW_WEATHER = true;
|
|
bool SHOW_BATTERY = true;
|
|
bool SHOW_TEMP = true;
|
|
bool SHOW_HUM = true;
|
|
bool SHOW_SECONDS = true;
|
|
bool SHOW_WEEKDAY = true;
|
|
String NET_IP = "192.168.178.10";
|
|
String NET_GW = "192.168.178.1";
|
|
String NET_SN = "255.255.255.0";
|
|
String NET_PDNS = "8.8.8.8";
|
|
String NET_SDNS = "1.1.1.1";
|
|
int TIME_PER_FRAME = 7000;
|
|
uint8_t MATRIX_FPS = 23;
|
|
int TIME_PER_TRANSITION = 500;
|
|
String NTP_SERVER = "de.pool.ntp.org";
|
|
String NTP_TZ = "CET-1CEST,M3.5.0,M10.5.0/3";
|
|
bool HA_DISCOVERY = false;
|
|
|
|
// Periphery
|
|
String CURRENT_APP;
|
|
float CURRENT_TEMP;
|
|
float CURRENT_HUM;
|
|
float CURRENT_LUX;
|
|
uint8_t BRIGHTNESS = 120;
|
|
uint8_t BRIGHTNESS_PERCENT;
|
|
uint8_t BATTERY_PERCENT;
|
|
|
|
String ALARM_SOUND;
|
|
uint8_t SNOOZE_TIME;
|
|
|
|
String TIMER_SOUND;
|
|
|
|
// Matrix States
|
|
bool AUTO_TRANSITION = false;
|
|
bool AUTO_BRIGHTNESS = true;
|
|
bool UPPERCASE_LETTERS = true;
|
|
bool AP_MODE;
|
|
bool MATRIX_OFF;
|
|
bool TIMER_ACTIVE;
|
|
bool ALARM_ACTIVE;
|
|
uint16_t TEXTCOLOR_565 = 0xFFFF; |