added level enum

This commit is contained in:
Robin Müller 2021-04-01 15:14:20 +02:00
parent 7a3190e5b6
commit feee39a6c7
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@
using gpioId_t = uint16_t;
namespace gpio {
enum Levels {
LOW = 0,
HIGH = 1
};
enum Direction {
IN = 0,
OUT = 1