Merge branch 'main' into cud
This commit is contained in:
		
						commit
						b088c714ee
					
				
					 2 changed files with 68 additions and 36 deletions
				
			
		| 
						 | 
					@ -47,6 +47,7 @@ uint8_t utc_offset = 7;
 | 
				
			||||||
float current_room_temp = 0;
 | 
					float current_room_temp = 0;
 | 
				
			||||||
float current_room_humid = 0;
 | 
					float current_room_humid = 0;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					bool pwm_report_enable = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Inputs
 | 
					// Inputs
 | 
				
			||||||
#define VINT_COUNT 16
 | 
					#define VINT_COUNT 16
 | 
				
			||||||
| 
						 | 
					@ -69,6 +70,7 @@ const float pwm_linear_scaling_c[PWM_COUNT] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
 | 
				
			||||||
const int PWM_CYCLE_VALUES[PWM_CYCLE_VALUES_COUNT] = {50, 125, 255};
 | 
					const int PWM_CYCLE_VALUES[PWM_CYCLE_VALUES_COUNT] = {50, 125, 255};
 | 
				
			||||||
char PWM_SET_STATE_TOPIC[70];
 | 
					char PWM_SET_STATE_TOPIC[70];
 | 
				
			||||||
char PWM_SET_VALUE_TOPIC[70];
 | 
					char PWM_SET_VALUE_TOPIC[70];
 | 
				
			||||||
 | 
					char PWM_REPORT_ENABLE_TOPIC[70];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef ENABLE_INTERNAL_LCD
 | 
					#ifdef ENABLE_INTERNAL_LCD
 | 
				
			||||||
// LCD
 | 
					// LCD
 | 
				
			||||||
| 
						 | 
					@ -249,18 +251,20 @@ void loop()
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
void fram_retrieve_init()
 | 
					void fram_retrieve_init()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  #ifdef ENABLE_WEBUI
 | 
					#ifdef ENABLE_WEBUI
 | 
				
			||||||
  ESPMega_FRAM.read(FRAM_ADDRESS_WEBUI_USERNAME, (uint8_t *)WEBUI_USERNAME, 32);
 | 
					  ESPMega_FRAM.read(FRAM_ADDRESS_WEBUI_USERNAME, (uint8_t *)WEBUI_USERNAME, 32);
 | 
				
			||||||
  ESPMega_FRAM.read(FRAM_ADDRESS_WEBUI_PASSWORD, (uint8_t *)WEBUI_PASSWORD, 32);
 | 
					  ESPMega_FRAM.read(FRAM_ADDRESS_WEBUI_PASSWORD, (uint8_t *)WEBUI_PASSWORD, 32);
 | 
				
			||||||
  if(strlen(WEBUI_USERNAME)==0) {
 | 
					  if (strlen(WEBUI_USERNAME) == 0)
 | 
				
			||||||
    strcpy(WEBUI_USERNAME,"admin");
 | 
					  {
 | 
				
			||||||
 | 
					    strcpy(WEBUI_USERNAME, "admin");
 | 
				
			||||||
    ESPMega_FRAM.write(FRAM_ADDRESS_WEBUI_USERNAME, (uint8_t *)WEBUI_USERNAME, 32);
 | 
					    ESPMega_FRAM.write(FRAM_ADDRESS_WEBUI_USERNAME, (uint8_t *)WEBUI_USERNAME, 32);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  if(strlen(WEBUI_PASSWORD)==0) {
 | 
					  if (strlen(WEBUI_PASSWORD) == 0)
 | 
				
			||||||
    strcpy(WEBUI_PASSWORD,"admin");
 | 
					  {
 | 
				
			||||||
 | 
					    strcpy(WEBUI_PASSWORD, "admin");
 | 
				
			||||||
    ESPMega_FRAM.write(FRAM_ADDRESS_WEBUI_PASSWORD, (uint8_t *)WEBUI_PASSWORD, 32);
 | 
					    ESPMega_FRAM.write(FRAM_ADDRESS_WEBUI_PASSWORD, (uint8_t *)WEBUI_PASSWORD, 32);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  #endif
 | 
					#endif
 | 
				
			||||||
// FRAM Data Retrival
 | 
					// FRAM Data Retrival
 | 
				
			||||||
#ifdef ENABLE_CLIMATE_MODULE
 | 
					#ifdef ENABLE_CLIMATE_MODULE
 | 
				
			||||||
  ac_mode = ESPMega_FRAM.read8(FRAM_ADDRESS_AC_MODE);
 | 
					  ac_mode = ESPMega_FRAM.read8(FRAM_ADDRESS_AC_MODE);
 | 
				
			||||||
| 
						 | 
					@ -320,6 +324,8 @@ void fram_retrieve_init()
 | 
				
			||||||
  strcat(PWM_SET_STATE_TOPIC, "/pwm/00/set/state");
 | 
					  strcat(PWM_SET_STATE_TOPIC, "/pwm/00/set/state");
 | 
				
			||||||
  memcpy(PWM_SET_VALUE_TOPIC, MQTT_BASE_TOPIC, 20);
 | 
					  memcpy(PWM_SET_VALUE_TOPIC, MQTT_BASE_TOPIC, 20);
 | 
				
			||||||
  strcat(PWM_SET_VALUE_TOPIC, "/pwm/00/set/value");
 | 
					  strcat(PWM_SET_VALUE_TOPIC, "/pwm/00/set/value");
 | 
				
			||||||
 | 
					  memcpy(PWM_REPORT_ENABLE_TOPIC, MQTT_BASE_TOPIC, 20);
 | 
				
			||||||
 | 
					  strcat(PWM_REPORT_ENABLE_TOPIC, "/pwm/report_enable");
 | 
				
			||||||
#ifdef ENABLE_CLIMATE_MODULE
 | 
					#ifdef ENABLE_CLIMATE_MODULE
 | 
				
			||||||
  memcpy(AC_SET_MODE_TOPIC, MQTT_BASE_TOPIC, 20);
 | 
					  memcpy(AC_SET_MODE_TOPIC, MQTT_BASE_TOPIC, 20);
 | 
				
			||||||
  strcat(AC_SET_MODE_TOPIC, "/ac/set/mode");
 | 
					  strcat(AC_SET_MODE_TOPIC, "/ac/set/mode");
 | 
				
			||||||
| 
						 | 
					@ -395,11 +401,11 @@ void ota_begin()
 | 
				
			||||||
    otabuffer+=ota_part2_1+"IP Address"+ota_part2_2+IP.toString()+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"IP Address"+ota_part2_2+IP.toString()+ota_part2_3;
 | 
				
			||||||
    otabuffer+=ota_part2_1+"MAC Address"+ota_part2_2+ETH.macAddress()+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"MAC Address"+ota_part2_2+ETH.macAddress()+ota_part2_3;
 | 
				
			||||||
    otabuffer+=ota_part2_1+"Device"+ota_part2_2+ESPMEGA_REV+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"Device"+ota_part2_2+ESPMEGA_REV+ota_part2_3;
 | 
				
			||||||
    #ifdef FW_VERSION
 | 
					#ifdef FW_VERSION
 | 
				
			||||||
    otabuffer+=ota_part2_1+"Firmware"+ota_part2_2+FW_VERSION+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"Firmware"+ota_part2_2+FW_VERSION+ota_part2_3;
 | 
				
			||||||
    #else
 | 
					#else
 | 
				
			||||||
    otabuffer+=ota_part2_1+"Firmware"+ota_part2_2+"Out of Tree"+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"Firmware"+ota_part2_2+"Out of Tree"+ota_part2_3;
 | 
				
			||||||
    #endif
 | 
					#endif
 | 
				
			||||||
    otabuffer+=ota_part2_1+"BMS Server"+ota_part2_2+MQTT_SERVER.toString()+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"BMS Server"+ota_part2_2+MQTT_SERVER.toString()+ota_part2_3;
 | 
				
			||||||
    otabuffer+=ota_part2_1+"BMS Endpoint"+ota_part2_2+String(MQTT_BASE_TOPIC)+ota_part2_3;
 | 
					    otabuffer+=ota_part2_1+"BMS Endpoint"+ota_part2_2+String(MQTT_BASE_TOPIC)+ota_part2_3;
 | 
				
			||||||
    otabuffer+=ota_part2_1+"Centrally Managed"+ota_part2_2;
 | 
					    otabuffer+=ota_part2_1+"Centrally Managed"+ota_part2_2;
 | 
				
			||||||
| 
						 | 
					@ -665,6 +671,7 @@ void mqtt_subscribe()
 | 
				
			||||||
    mqtt.subscribe(PWM_SET_STATE_TOPIC);
 | 
					    mqtt.subscribe(PWM_SET_STATE_TOPIC);
 | 
				
			||||||
    mqtt.subscribe(PWM_SET_VALUE_TOPIC);
 | 
					    mqtt.subscribe(PWM_SET_VALUE_TOPIC);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					  mqtt.subscribe(PWM_REPORT_ENABLE_TOPIC);
 | 
				
			||||||
#ifdef ENABLE_CLIMATE_MODULE
 | 
					#ifdef ENABLE_CLIMATE_MODULE
 | 
				
			||||||
  mqtt.subscribe(AC_SET_FAN_TOPIC);
 | 
					  mqtt.subscribe(AC_SET_FAN_TOPIC);
 | 
				
			||||||
  mqtt.subscribe(AC_SET_TEMPERATURE_TOPIC);
 | 
					  mqtt.subscribe(AC_SET_TEMPERATURE_TOPIC);
 | 
				
			||||||
| 
						 | 
					@ -713,6 +720,10 @@ void mqtt_callback(char *topic, byte *payload, unsigned int length)
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    pwm_value_callback(topic_trim, topic_length, payload_nt, length);
 | 
					    pwm_value_callback(topic_trim, topic_length, payload_nt, length);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					  else if (!strcmp(topic_trim, "/pwm/report_enable"))
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    pwm_set_publish_callback(topic_trim, topic_length, payload_nt, length);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
#ifdef ENABLE_ANALOG_MODULE
 | 
					#ifdef ENABLE_ANALOG_MODULE
 | 
				
			||||||
  else if ((!strncmp(topic_trim, "/adc/", 5)) && !strncmp(topic_trim + 7, "/set/state", 10))
 | 
					  else if ((!strncmp(topic_trim, "/adc/", 5)) && !strncmp(topic_trim + 7, "/set/state", 10))
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
| 
						 | 
					@ -730,13 +741,14 @@ void mqtt_callback(char *topic, byte *payload, unsigned int length)
 | 
				
			||||||
#ifdef ENABLE_IR_MODULE
 | 
					#ifdef ENABLE_IR_MODULE
 | 
				
			||||||
  else if (!strcmp(topic_trim, "/ir/send"))
 | 
					  else if (!strcmp(topic_trim, "/ir/send"))
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    const char* delimiter = ",";
 | 
					    const char *delimiter = ",";
 | 
				
			||||||
    char* token = strtok(const_cast<char*>(payload_nt), delimiter);
 | 
					    char *token = strtok(const_cast<char *>(payload_nt), delimiter);
 | 
				
			||||||
    while (token != nullptr && ir_buffer_length < IR_RAW_BUFFER_LENGTH) {
 | 
					    while (token != nullptr && ir_buffer_length < IR_RAW_BUFFER_LENGTH)
 | 
				
			||||||
        ir_buffer[ir_buffer_length++] = atoi(token);
 | 
					    {
 | 
				
			||||||
        token = strtok(nullptr, delimiter);
 | 
					      ir_buffer[ir_buffer_length++] = atoi(token);
 | 
				
			||||||
 | 
					      token = strtok(nullptr, delimiter);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    IrSender.sendRaw(ir_buffer,ir_buffer_length ,NEC_KHZ);
 | 
					    IrSender.sendRaw(ir_buffer, ir_buffer_length, NEC_KHZ);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
  else if (!strcmp(topic, STATE_REQUEST_TOPIC))
 | 
					  else if (!strcmp(topic, STATE_REQUEST_TOPIC))
 | 
				
			||||||
| 
						 | 
					@ -869,6 +881,7 @@ void publish_pwm_states()
 | 
				
			||||||
  for (int i = 0; i < PWM_COUNT; i++)
 | 
					  for (int i = 0; i < PWM_COUNT; i++)
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    publish_pwm_state(i);
 | 
					    publish_pwm_state(i);
 | 
				
			||||||
 | 
					    publish_pwm_value(i);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -879,12 +892,11 @@ void publish_pwm_states()
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
void publish_pwm_state(int id)
 | 
					void publish_pwm_state(int id)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					  if (!pwm_report_enable)
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
  int state = pwm_states[id];
 | 
					  int state = pwm_states[id];
 | 
				
			||||||
  int value = pwm_values[id];
 | 
					 | 
				
			||||||
  PWM_STATE_TOPIC[base_topic_length + 4] = ((id - id % 10) / 10) + '0';
 | 
					  PWM_STATE_TOPIC[base_topic_length + 4] = ((id - id % 10) / 10) + '0';
 | 
				
			||||||
  PWM_STATE_TOPIC[base_topic_length + 5] = (id % 10) + '0';
 | 
					  PWM_STATE_TOPIC[base_topic_length + 5] = (id % 10) + '0';
 | 
				
			||||||
  PWM_VALUE_TOPIC[base_topic_length + 4] = ((id - id % 10) / 10) + '0';
 | 
					 | 
				
			||||||
  PWM_VALUE_TOPIC[base_topic_length + 5] = (id % 10) + '0';
 | 
					 | 
				
			||||||
  if (state == 1)
 | 
					  if (state == 1)
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    mqtt.publish(PWM_STATE_TOPIC, "on");
 | 
					    mqtt.publish(PWM_STATE_TOPIC, "on");
 | 
				
			||||||
| 
						 | 
					@ -893,6 +905,15 @@ void publish_pwm_state(int id)
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    mqtt.publish(PWM_STATE_TOPIC, "off");
 | 
					    mqtt.publish(PWM_STATE_TOPIC, "off");
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void publish_pwm_value(int id)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  if (!pwm_report_enable)
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  int value = pwm_values[id];
 | 
				
			||||||
 | 
					  PWM_VALUE_TOPIC[base_topic_length + 4] = ((id - id % 10) / 10) + '0';
 | 
				
			||||||
 | 
					  PWM_VALUE_TOPIC[base_topic_length + 5] = (id % 10) + '0';
 | 
				
			||||||
  char temp[6];
 | 
					  char temp[6];
 | 
				
			||||||
  itoa(value, temp, DEC);
 | 
					  itoa(value, temp, DEC);
 | 
				
			||||||
  mqtt.publish(PWM_VALUE_TOPIC, temp);
 | 
					  mqtt.publish(PWM_VALUE_TOPIC, temp);
 | 
				
			||||||
| 
						 | 
					@ -939,7 +960,7 @@ void pwm_set_value(int id, int value)
 | 
				
			||||||
  else if (lcd_current_page == 5 && id == lcd_pwmAdj_id)
 | 
					  else if (lcd_current_page == 5 && id == lcd_pwmAdj_id)
 | 
				
			||||||
    panel.writeNum("pwm_value.val", pwm_values[lcd_pwmAdj_id]);
 | 
					    panel.writeNum("pwm_value.val", pwm_values[lcd_pwmAdj_id]);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
  publish_pwm_state(id);
 | 
					  publish_pwm_value(id);
 | 
				
			||||||
  pwm_changed_user_callback(id);
 | 
					  pwm_changed_user_callback(id);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1055,6 +1076,11 @@ void publish_input_state(int id, int state)
 | 
				
			||||||
  mqtt.publish(INPUTS_TOPIC, state ? "1" : "0");
 | 
					  mqtt.publish(INPUTS_TOPIC, state ? "1" : "0");
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void pwm_set_publish_callback(char *topic, uint8_t topic_length, char *payload, unsigned int payload_length)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  pwm_report_enable = !strcmp(payload, "on");
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * @brief Callback function to request the current state of the device.
 | 
					 * @brief Callback function to request the current state of the device.
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
| 
						 | 
					@ -1065,6 +1091,7 @@ void state_request_callback()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  publish_input_states();
 | 
					  publish_input_states();
 | 
				
			||||||
  publish_pwm_states();
 | 
					  publish_pwm_states();
 | 
				
			||||||
 | 
					  pwm_report_enable = true;
 | 
				
			||||||
#ifdef ENABLE_CLIMATE_MODULE
 | 
					#ifdef ENABLE_CLIMATE_MODULE
 | 
				
			||||||
  publish_ac_state();
 | 
					  publish_ac_state();
 | 
				
			||||||
  publish_env_state();
 | 
					  publish_env_state();
 | 
				
			||||||
| 
						 | 
					@ -1891,10 +1918,10 @@ void factory_reset()
 | 
				
			||||||
  set_ip("192.168.0.10");
 | 
					  set_ip("192.168.0.10");
 | 
				
			||||||
  set_gw("192.168.0.1");
 | 
					  set_gw("192.168.0.1");
 | 
				
			||||||
  set_netmask("255.255.255.0");
 | 
					  set_netmask("255.255.255.0");
 | 
				
			||||||
  #ifdef ENABLE_WEBUI
 | 
					#ifdef ENABLE_WEBUI
 | 
				
			||||||
  set_webui_username("admin");
 | 
					  set_webui_username("admin");
 | 
				
			||||||
  set_webui_password("admin");
 | 
					  set_webui_password("admin");
 | 
				
			||||||
  #endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Reboot
 | 
					  // Reboot
 | 
				
			||||||
#ifdef ENABLE_INTERNAL_LCD
 | 
					#ifdef ENABLE_INTERNAL_LCD
 | 
				
			||||||
| 
						 | 
					@ -2267,8 +2294,10 @@ bool dac_get_state(int id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void virtual_interrupt_preload() {
 | 
					void virtual_interrupt_preload()
 | 
				
			||||||
  for (int i = 0; i < 16; i++) {
 | 
					{
 | 
				
			||||||
 | 
					  for (int i = 0; i < 16; i++)
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
    virtual_interupt_state[i] = ESPMega_digitalRead(virtual_interrupt_pins[i]);
 | 
					    virtual_interupt_state[i] = ESPMega_digitalRead(virtual_interrupt_pins[i]);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -61,6 +61,7 @@ void ota_begin();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void publish_pwm_states();
 | 
					void publish_pwm_states();
 | 
				
			||||||
void publish_pwm_state(int id);
 | 
					void publish_pwm_state(int id);
 | 
				
			||||||
 | 
					void publish_pwm_value(int id);
 | 
				
			||||||
void pwm_set_state(int id, int state);
 | 
					void pwm_set_state(int id, int state);
 | 
				
			||||||
void pwm_set_value(int id, int value);
 | 
					void pwm_set_value(int id, int value);
 | 
				
			||||||
void pwm_toggle(int id);
 | 
					void pwm_toggle(int id);
 | 
				
			||||||
| 
						 | 
					@ -158,3 +159,5 @@ uint16_t adc_get_value(int id);
 | 
				
			||||||
bool adc_get_state(int id);
 | 
					bool adc_get_state(int id);
 | 
				
			||||||
uint16_t dac_get_value(int id);
 | 
					uint16_t dac_get_value(int id);
 | 
				
			||||||
bool dac_get_state(int id);
 | 
					bool dac_get_state(int id);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void pwm_set_publish_callback(char *topic, uint8_t topic_length, char *payload, unsigned int payload_length);
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue