2020-04-13 22:50:55 +00:00
|
|
|
#ifndef CONTROLLER_DRIVERS_H
|
|
|
|
#define CONTROLLER_DRIVERS_H
|
|
|
|
|
|
|
|
#include <models/relay.h>
|
2020-04-16 23:38:25 +00:00
|
|
|
#include <enums.h>
|
2020-04-13 22:50:55 +00:00
|
|
|
|
|
|
|
void
|
2020-04-16 23:38:25 +00:00
|
|
|
driver_piface_set(int pin, int value);
|
2020-04-13 22:50:55 +00:00
|
|
|
|
|
|
|
void
|
2020-04-16 23:38:25 +00:00
|
|
|
driver_gpio_set(int pin, int value);
|
2020-04-13 22:50:55 +00:00
|
|
|
|
|
|
|
#endif /* CONTROLLER_DRIVERS_H */
|