This commit is contained in:
2025-09-29 15:45:54 +03:00
parent 5158538e29
commit a3b23eeeba
2 changed files with 97 additions and 56 deletions

View File

@@ -48,28 +48,39 @@
#define NUM4_LED_BLUE 0x02 // Connector LE6. 2 PIN. L6-2 pin on U7.
#define NUM4_LED_GREEN 0x03 // Connector LE6. 1 PIN. L6-3 pin on U7.
#define CHANNEL_1 0x08
#define CHANNEL_2 0x04
#define CHANNEL_3 0x02
#define CHANNEL_4 0x01
#define CHANNEL1 0x08
#define CHANNEL2 0x04
#define CHANNEL3 0x02
#define CHANNEL4 0x01
#ifdef __cplusplus
extern "C"
{
#endif
// typedef struct
// {
// char *cmm;
// char *channel_1;
// char *channel_2;
// // char *channel_3;
// // char *channel_4;
// uint8_t button;
// } component_t;
const char text_company[] PROGMEM = "LLC AEROTECH";
const char text_model[] PROGMEM = "ATE0003.000.000";
const char text_firmware[] PROGMEM = "Firmware v1.0.0";
const char text_loading[] PROGMEM = "Loading:";
const char text_ac_power[] PROGMEM = "AC POWER: ";
const char text_component[] PROGMEM = "COMPONENT: ";
// void system_setup_task(void *pvParameters);
// void component_setup_function(zh_avr_encoder_event_on_isr_t *event);
const char component_1_cmm[] PROGMEM = "ANY ";
const char component_2_cmm[] PROGMEM = "334230";
const char component_3_cmm[] PROGMEM = "334303";
const char component_4_cmm[] PROGMEM = "334711";
const char component_5_cmm[] PROGMEM = "334612";
const char component_1_line_1[] PROGMEM = "1:RED 2:GREEN";
const char component_1_line_2[] PROGMEM = "3:BLUE 4:WHITE";
const char component_2_line_1[] PROGMEM = "1:RED 2: ";
const char component_2_line_2[] PROGMEM = "3: 4: ";
const char component_3_line_1[] PROGMEM = "1:RED 2: ";
const char component_3_line_2[] PROGMEM = "3: 4: ";
const char component_4_line_1[] PROGMEM = "1:RED 2: ";
const char component_4_line_2[] PROGMEM = "3: 4: ";
const char component_5_line_1[] PROGMEM = "1:400W 2:600W ";
const char component_5_line_2[] PROGMEM = "3: 4: ";
#ifdef __cplusplus
}