- in manual mode blink between 'manual' and lvl+direction indication on display 2 - when setting custom target length only blink value not "soll" - reduce brightness from 12 to 8 because of high display temperature
150 lines
4.3 KiB
C++
150 lines
4.3 KiB
C++
#include "display.hpp"
|
|
|
|
|
|
//=== variables ===
|
|
static const char *TAG = "display"; //tag for logging
|
|
|
|
|
|
|
|
//==============================
|
|
//======== init display ========
|
|
//==============================
|
|
//initialize display with parameters defined in config.hpp
|
|
//TODO: dont use global variables/macros here
|
|
max7219_t display_init(){
|
|
|
|
ESP_LOGI(TAG, "initializing display...");
|
|
// Configure SPI bus
|
|
spi_bus_config_t cfg;
|
|
memset(&cfg, 0, sizeof(spi_bus_config_t)); //init bus config with 0 to prevent bugs with random flags
|
|
cfg.mosi_io_num = DISPLAY_PIN_NUM_MOSI;
|
|
cfg.miso_io_num = -1;
|
|
cfg.sclk_io_num = DISPLAY_PIN_NUM_CLK;
|
|
cfg.quadwp_io_num = -1;
|
|
cfg.quadhd_io_num = -1;
|
|
cfg.max_transfer_sz = 0;
|
|
cfg.flags = 0;
|
|
ESP_ERROR_CHECK(spi_bus_initialize(HOST, &cfg, 1));
|
|
|
|
// Configure device
|
|
max7219_t dev;
|
|
dev.cascade_size = 2;
|
|
dev.digits = 0;
|
|
dev.mirrored = true;
|
|
ESP_ERROR_CHECK(max7219_init_desc(&dev, HOST, MAX7219_MAX_CLOCK_SPEED_HZ, DISPLAY_PIN_NUM_CS));
|
|
ESP_ERROR_CHECK(max7219_init(&dev));
|
|
//0...15
|
|
ESP_ERROR_CHECK(max7219_set_brightness(&dev, 9));
|
|
return dev;
|
|
//display = dev;
|
|
ESP_LOGI(TAG, "initializing display - done");
|
|
}
|
|
|
|
|
|
|
|
//===================================
|
|
//======= display welcome msg =======
|
|
//===================================
|
|
void display_ShowWelcomeMsg(max7219_t dev){
|
|
//display welcome message on two 7 segment displays
|
|
//show name and date
|
|
ESP_LOGI(TAG, "showing startup message...");
|
|
max7219_clear(&dev);
|
|
max7219_draw_text_7seg(&dev, 0, "CUTTER 20.08.2022");
|
|
// 1234567812 34 5678
|
|
vTaskDelay(pdMS_TO_TICKS(700));
|
|
//scroll "hello" over 2 displays
|
|
for (int offset = 0; offset < 23; offset++) {
|
|
max7219_clear(&dev);
|
|
char hello[40] = " HELL0 ";
|
|
max7219_draw_text_7seg(&dev, 0, hello + (22 - offset) );
|
|
vTaskDelay(pdMS_TO_TICKS(50));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------
|
|
//---------- constructor ----------
|
|
//---------------------------------
|
|
handledDisplay::handledDisplay(max7219_t displayDevice, uint8_t posStart_f) {
|
|
ESP_LOGI(TAG, "Creating handledDisplay instance with startPos at %i", posStart);
|
|
//copy variables
|
|
dev = displayDevice;
|
|
posStart = posStart_f;
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------
|
|
//---------- showString ----------
|
|
//--------------------------------
|
|
//function that displays a given string on the display
|
|
void handledDisplay::showString(const char * buf, uint8_t pos_f){
|
|
//calculate actual absolute position
|
|
uint8_t pos = posStart + pos_f;
|
|
//draw string on display
|
|
max7219_draw_text_7seg(&dev, pos, buf);
|
|
//disable blinking mode
|
|
blinkMode = false;
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------
|
|
//---------- blinkStrings ----------
|
|
//----------------------------------
|
|
//function switches between two strings in a given interval
|
|
void handledDisplay::blinkStrings(const char * strOn_f, const char * strOff_f, uint32_t msOn_f, uint32_t msOff_f){
|
|
//copy/update variables
|
|
strcpy(strOn, strOn_f);
|
|
strcpy(strOff, strOff_f);
|
|
msOn = msOn_f;
|
|
msOff = msOff_f;
|
|
//if changed to blink mode just now
|
|
if (blinkMode == false) {
|
|
ESP_LOGI(TAG, "pos:%i changing to blink mode", posStart);
|
|
blinkMode = true;
|
|
//start with on state
|
|
state = true;
|
|
timestampOn = esp_log_timestamp();
|
|
}
|
|
//run handle function for display update
|
|
handle();
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------
|
|
//------------ handle ------------
|
|
//--------------------------------
|
|
//function that handles blinking of display2
|
|
void handledDisplay::handle() {
|
|
if (blinkMode == false){
|
|
return; //not in blinking mode - nothing todo
|
|
}
|
|
|
|
//--- define state on/off ---
|
|
if (state == true){ //display in ON state
|
|
if (esp_log_timestamp() - timestampOn > msOn){
|
|
state = false;
|
|
timestampOff = esp_log_timestamp();
|
|
}
|
|
} else { //display in OFF state
|
|
if (esp_log_timestamp() - timestampOff > msOff) {
|
|
state = true;
|
|
timestampOn = esp_log_timestamp();
|
|
}
|
|
}
|
|
|
|
//--- draw text of current state ---
|
|
if (state) {
|
|
max7219_draw_text_7seg(&dev, posStart, strOn);
|
|
} else {
|
|
max7219_draw_text_7seg(&dev, posStart, strOff);
|
|
}
|
|
}
|
|
|