15 lines
264 B
C
15 lines
264 B
C
#ifndef CONTROLLER_DRIVERS_H
|
|
#define CONTROLLER_DRIVERS_H
|
|
|
|
#include <models/relay.h>
|
|
#include <enums.h>
|
|
|
|
#define DRIVER_PIFACE_GPIO_BASE 200
|
|
|
|
void
|
|
driver_piface_set(int pin, int value);
|
|
|
|
void
|
|
driver_gpio_set(int pin, int value);
|
|
|
|
#endif /* CONTROLLER_DRIVERS_H */
|