mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	| @@ -4,6 +4,7 @@ | ||||
| #include "esphome/components/esp32_ble_tracker/esp32_ble_tracker.h" | ||||
| #include "esphome/components/climate/climate.h" | ||||
| #include "esphome/core/component.h" | ||||
| #include "esphome/core/defines.h" | ||||
| #include "esphome/core/hal.h" | ||||
| #include "bedjet_base.h" | ||||
|  | ||||
|   | ||||
| @@ -66,8 +66,8 @@ enum BedjetCommand : uint8_t { | ||||
|  | ||||
| #define BEDJET_FAN_STEP_NAMES_ \ | ||||
|   { \ | ||||
|     "  5%", " 10%", " 15%", " 20%", " 25%", " 30%", " 35%", " 40%", " 45%", " 50%", " 55%", " 60%", " 65%", " 70%", \ | ||||
|         " 75%", " 80%", " 85%", " 90%", " 95%", "100%" \ | ||||
|     "5%", "10%", "15%", "20%", "25%", "30%", "35%", "40%", "45%", "50%", "55%", "60%", "65%", "70%", "75%", "80%", \ | ||||
|         "85%", "90%", "95%", "100%" \ | ||||
|   } | ||||
|  | ||||
| static const char *const BEDJET_FAN_STEP_NAMES[20] = BEDJET_FAN_STEP_NAMES_; | ||||
|   | ||||
| @@ -156,7 +156,7 @@ class ESP32Preferences : public ESPPreferences { | ||||
|       ESP_LOGV(TAG, "nvs_get_blob('%s') failed: %s", to_save.key.c_str(), esp_err_to_name(err)); | ||||
|       return true; | ||||
|     } | ||||
|     return to_save.data == stored_data.data; | ||||
|     return to_save.data != stored_data.data; | ||||
|   } | ||||
| }; | ||||
|  | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| """Constants used by esphome.""" | ||||
|  | ||||
| __version__ = "2022.5.0" | ||||
| __version__ = "2022.5.1" | ||||
|  | ||||
| ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_" | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user