mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-26 07:47:15 +00:00
23 lines
639 B
C
23 lines
639 B
C
#include "be_constobj.h"
|
|
|
|
static be_define_const_map_slots(be_class_MI32_map) {
|
|
{ be_const_key(devices, -1), be_const_func(be_MI32_devices) },
|
|
{ be_const_key(set_bat, -1), be_const_func(be_MI32_set_bat) },
|
|
{ be_const_key(set_hum, 4), be_const_func(be_MI32_set_hum) },
|
|
{ be_const_key(get_MAC, -1), be_const_func(be_MI32_get_MAC) },
|
|
{ be_const_key(set_temp, -1), be_const_func(be_MI32_set_temp) },
|
|
{ be_const_key(get_name, 3), be_const_func(be_MI32_get_name) },
|
|
};
|
|
|
|
static be_define_const_map(
|
|
be_class_MI32_map,
|
|
6
|
|
);
|
|
|
|
BE_EXPORT_VARIABLE be_define_const_class(
|
|
be_class_MI32,
|
|
0,
|
|
NULL,
|
|
MI32
|
|
);
|