mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
68 lines
2.0 KiB
//-----------------------------------------------------------------------------
|
|
// 2022 Ahoy, https://www.mikrocontroller.net/topic/525778
|
|
// Creative Commons - http://creativecommons.org/licenses/by-nc-sa/3.0/de/
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
// fallback WiFi info
|
|
#define FB_WIFI_SSID "YOUR_WIFI_SSID"
|
|
#define FB_WIFI_PWD "YOUR_WIFI_PWD"
|
|
|
|
|
|
// access point info
|
|
#define WIFI_AP_SSID "AHOY-DTU"
|
|
#define WIFI_AP_PWD "esp_8266"
|
|
// stay in access point mode all the time
|
|
//#define AP_ONLY
|
|
|
|
|
|
//-------------------------------------
|
|
// CONFIGURATION - COMPILE TIME
|
|
//-------------------------------------
|
|
// time in seconds how long the station info (ssid + pwd) will be tried
|
|
#define WIFI_TRY_CONNECT_TIME 30
|
|
|
|
// time during the ESP will act as access point on connection failure (to
|
|
// station) in seconds
|
|
#define WIFI_AP_ACTIVE_TIME 60
|
|
|
|
// default device name
|
|
#define DEF_DEVICE_NAME "AHOY-DTU"
|
|
|
|
// number of packets hold in buffer
|
|
#define PACKET_BUFFER_SIZE 30
|
|
|
|
// number of configurable inverters
|
|
#define MAX_NUM_INVERTERS 3
|
|
|
|
// maximum human readable inverter name length
|
|
#define MAX_NAME_LENGTH 16
|
|
|
|
// maximum buffer length of packet received / sent to RF24 module
|
|
#define MAX_RF_PAYLOAD_SIZE 32
|
|
|
|
// maximum total payload buffers (must be greater than the number of received frame fragments)
|
|
#define MAX_PAYLOAD_ENTRIES 4
|
|
|
|
// maximum requests for retransmits per payload (per inverter)
|
|
#define DEF_MAX_RETRANS_PER_PYLD 5
|
|
|
|
// number of seconds since last successful response, before inverter is marked inactive
|
|
#define INACT_THRES_SEC 300
|
|
|
|
// threshold of minimum power on which the inverter is marked as inactive
|
|
#define INACT_PWR_THRESH 3
|
|
|
|
// changes the style of "/setup" page, visualized = nicer
|
|
#define LIVEDATA_VISUALIZED
|
|
|
|
// comment out to disable any of the debug options here
|
|
#define DEBUG_APP
|
|
#define DEBUG_HMINVERTER
|
|
#define DEBUG_HMRADIO
|
|
#define DEBUG_HMSYSTEM
|
|
#define DEBUG_HMMAIN
|
|
|
|
#endif /*__CONFIG_H__*/
|
|
|