You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
300 B
20 lines
300 B
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
typedef enum {
|
|
level_low,
|
|
level_high,
|
|
} ozone_level_t;
|
|
|
|
typedef enum {
|
|
normal,
|
|
timingMode,
|
|
intermittentMode,
|
|
} ozone_module_t;
|
|
|
|
typedef struct {
|
|
bool power;
|
|
ozone_level_t ozone_level;
|
|
ozone_module_t ozone_module;
|
|
} ThisDevice_t;
|