Logo Pico-Framework A web-first embedded framework for C++
Loading...
Searching...
No Matches
GpioEvent.h
Go to the documentation of this file.
1// GpioEvent.h
2#pragma once
3
4#include <cstdint>
5
11struct GpioEvent {
12 uint16_t pin;
13 uint16_t edge;
14};
15
Structure representing a GPIO event.
Definition GpioEvent.h:11
uint16_t pin
Definition GpioEvent.h:12
uint16_t edge
Definition GpioEvent.h:13