-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpage_climate.h
More file actions
25 lines (18 loc) · 656 Bytes
/
page_climate.h
File metadata and controls
25 lines (18 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// page_climate.h
#pragma once
#ifdef NSPANEL_EASY_PAGE_CLIMATE
#include <cstdint>
#include <string>
namespace nspanel_easy {
extern float set_climate_current_temp;
extern uint32_t set_climate_supported_features;
extern float set_climate_target_temp;
extern float set_climate_target_temp_high;
extern float set_climate_target_temp_low;
extern uint8_t set_climate_temp_step;
extern uint16_t set_climate_total_steps;
extern uint16_t set_climate_temp_offset;
extern std::string set_climate_climate_icon;
extern bool set_climate_embedded_climate;
} // namespace nspanel_easy
#endif // NSPANEL_EASY_PAGE_CLIMATE