22 lines
582 B
C
22 lines
582 B
C
#ifndef CORE_MODELS_JUNCTION_RELAY_SCHEDULE_H
|
|
#define CORE_MODELS_JUNCTION_RELAY_SCHEDULE_H
|
|
|
|
int
|
|
junction_relay_schedule_get_schedule_id(uint8_t weekday, int relay_id);
|
|
|
|
int*
|
|
junction_relay_schedule_get_relays_ids(int schedule_id);
|
|
|
|
int
|
|
junction_relay_schedule_insert(uint8_t weekday, int relay_id, int schedule_id);
|
|
|
|
int
|
|
junction_relay_schedule_remove(uint8_t weekday, int relay_id, int schedule_id);
|
|
|
|
int
|
|
junction_relay_schedule_remove_for_relay(int relay_id);
|
|
|
|
int
|
|
junction_relay_schedule_remove_for_schedule(int schedule_id);
|
|
|
|
#endif /* CORE_MODELS_JUNCTION_RELAY_SCHEDULE_H */
|