Doly C++ SDK v1.00
Loading...
Searching...
No Matches
GpioPin.h
Go to the documentation of this file.
1#pragma once
2#include <cstdint>
3
13
19
24enum class GpioType : uint8_t
25{
28
31
34
37};
38
46enum class GpioState : uint8_t
47{
50
53};
54 // end of group doly_sdk_common
GpioType
Describes the configured role of a GPIO pin.
Definition GpioPin.h:25
GpioState
Represents the digital logic level of a GPIO pin.
Definition GpioPin.h:47
@ OUTPUT
Definition GpioPin.h:30
@ PWM
Definition GpioPin.h:33
@ INPUT
Definition GpioPin.h:27
@ AIN
Definition GpioPin.h:36
@ LOW
Definition GpioPin.h:49
@ HIGH
Definition GpioPin.h:52