btclock_v3/src/lib/config.hpp

88 lines
2.3 KiB
C++
Raw Normal View History

#pragma once
#include <MCP23017.h>
#include <Arduino.h>
2023-11-30 21:38:01 +00:00
#include <Preferences.h>
#include <WiFiClientSecure.h>
#include <WiFiManager.h>
#include <base64.h>
#include <esp_task_wdt.h>
2024-09-16 19:50:28 +00:00
#include <nvs_flash.h>
#include <map>
2023-11-07 00:11:12 +00:00
#include "lib/block_notify.hpp"
2023-11-07 20:26:15 +00:00
#include "lib/button_handler.hpp"
2023-11-30 21:38:01 +00:00
#include "lib/epd.hpp"
// #include "lib/improv.hpp"
2023-11-08 11:18:59 +00:00
#include "lib/led_handler.hpp"
2023-11-30 21:38:01 +00:00
#include "lib/ota.hpp"
2024-07-11 20:08:42 +00:00
#include "lib/nostr_notify.hpp"
2024-07-29 18:49:46 +00:00
#include "lib/bitaxe_fetch.hpp"
2024-07-11 20:08:42 +00:00
#include "lib/v2_notify.hpp"
2023-11-30 21:38:01 +00:00
#include "lib/price_notify.hpp"
#include "lib/screen_handler.hpp"
#include "lib/shared.hpp"
#include "lib/webserver.hpp"
2024-04-27 14:48:06 +00:00
#ifdef HAS_FRONTLIGHT
#include "PCA9685.h"
2024-06-29 00:19:25 +00:00
#include "BH1750.h"
2024-04-27 14:48:06 +00:00
#endif
2023-11-07 00:11:12 +00:00
2023-11-07 20:26:15 +00:00
#define NTP_SERVER "pool.ntp.org"
#define DEFAULT_TIME_OFFSET_SECONDS 3600
2024-06-28 15:36:46 +00:00
#define USER_AGENT "BTClock/3.0"
#ifndef MCP_DEV_ADDR
2023-11-07 20:26:15 +00:00
#define MCP_DEV_ADDR 0x20
2024-06-28 15:36:46 +00:00
#endif
2023-11-07 20:26:15 +00:00
2023-11-08 11:18:59 +00:00
2023-11-07 00:11:12 +00:00
void setup();
2024-04-11 22:17:40 +00:00
void syncTime();
uint getLastTimeSync();
2023-11-07 00:11:12 +00:00
void setupPreferences();
void setupWebsocketClients(void *pvParameters);
2023-11-07 20:26:15 +00:00
void setupHardware();
2024-09-10 09:12:14 +00:00
void setupWifi();
2023-11-07 20:26:15 +00:00
void setupTimers();
void finishSetup();
void setupMcp();
2024-04-27 14:48:06 +00:00
#ifdef HAS_FRONTLIGHT
void setupFrontlight();
2024-06-29 00:19:25 +00:00
float getLightLevel();
bool hasLightLevel();
2024-04-27 14:48:06 +00:00
extern PCA9685 flArray;
#endif
2023-11-28 00:30:36 +00:00
String getMyHostname();
2024-07-29 18:49:46 +00:00
std::vector<ScreenMapping> getScreenNameMap();
2023-11-07 20:26:15 +00:00
std::vector<std::string> getLocalUrl();
// bool improv_connectWifi(std::string ssid, std::string password);
// void improvGetAvailableWifiNetworks();
// bool onImprovCommandCallback(improv::ImprovCommand cmd);
// void onImprovErrorCallback(improv::Error err);
// void improv_set_state(improv::State state);
// void improv_send_response(std::vector<uint8_t> &response);
// void improv_set_error(improv::Error error);
//void addCurrencyMappings(const std::vector<std::string>& currencies);
std::vector<std::string> getActiveCurrencies();
std::vector<std::string> getAvailableCurrencies();
bool isActiveCurrency(std::string &currency);
2024-05-18 21:00:08 +00:00
void WiFiEvent(WiFiEvent_t event, WiFiEventInfo_t info);
2024-05-19 15:49:39 +00:00
String getHwRev();
2024-06-08 22:45:46 +00:00
bool isWhiteVersion();
2024-07-29 18:49:46 +00:00
String getFsRev();
void addScreenMapping(int value, const char* name);
// void addScreenMapping(int value, const String& name);
// void addScreenMapping(int value, const std::string& name);
2024-09-10 09:12:14 +00:00
int findScreenIndexByValue(int value);
String replaceAmbiguousChars(String input);
const char* getFirmwareFilename();
// void loadIcons();