13 lines
209 B
C
13 lines
209 B
C
#ifndef CORE_DRIVERS_H
|
|
#define CORE_DRIVERS_H
|
|
|
|
#include <models/relay.h>
|
|
#include <enums.h>
|
|
|
|
void
|
|
driver_piface_set(int pin, int value);
|
|
|
|
void
|
|
driver_gpio_set(int pin, int value);
|
|
|
|
#endif /* CORE_DRIVERS_H */
|