This commit is contained in:
e2002
2025-08-24 17:58:08 +03:00
parent 383a5d5119
commit 1b644d7895
117 changed files with 1777 additions and 3934 deletions

View File

@@ -1,7 +1,8 @@
#ifndef options_h
#define options_h
#pragma once
#define YOVERSION "0.9.574"
#define YOVERSION "0.9.670"
/*******************************************************
DO NOT EDIT THIS FILE.
@@ -73,7 +74,12 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#ifndef TFT_DC
#define TFT_DC 4
#endif
#ifndef USE_FBUFFER
#define USE_FBUFFER true
#endif
#ifndef FULL_SCR_CLOCK
#define FULL_SCR_CLOCK true
#endif
/* NEXTION */
#ifndef NEXTION_RX
#define NEXTION_RX 255
@@ -81,7 +87,9 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#ifndef NEXTION_TX
#define NEXTION_TX 255
#endif
#if NEXTION_RX!=255 && NEXTION_TX!=255
#define USE_NEXTION
#endif
/* OLED I2C DISPLAY */
#ifndef I2C_SDA
#define I2C_SDA 21
@@ -128,7 +136,9 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#ifndef SD_HSPI
#define SD_HSPI false // use HSPI for SD (miso=12, mosi=13, clk=14) instead of VSPI (by default)
#endif
#if SDC_CS!=255
#define USE_SD
#endif
/* ENCODER */
#ifndef ENC_BTNL
#define ENC_BTNL 255
@@ -408,7 +418,7 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#define COLOR_DAY_OF_W 255, 255, 255
#endif
#ifndef COLOR_DATE
#define COLOR_DATE 255, 255, 255
#define COLOR_DATE 165, 162, 132
#endif
#ifndef COLOR_HEAP
#define COLOR_HEAP 41, 40, 41
@@ -513,5 +523,14 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti
#ifndef CONNECTION_TIMEOUT_SSL
#define CONNECTION_TIMEOUT_SSL 5700
#endif
#ifndef apSsid
#define apSsid "yoRadioAP"
#endif
#ifndef apPassword
#define apPassword "12345987"
#endif
#ifndef BUFLEN
#define BUFLEN 170
#endif
#endif