HomeGPT v.1.0
HomeGPT revolutionizes home automation with advanced features such as facial recognition for secure access, mood-responsive lighting, RFID-enabled garage entry, and clap-activated door closures. This system elevates the living experience by seamlessly blending security, convenience, and ambiance-enhancing technology.
Loading...
Searching...
No Matches
igpio.h
Go to the documentation of this file.
1// Copyright (C) 2021 twyleg
2#pragma once
3
4#include <cstddef>
5
6namespace mfrc522 {
7
8struct IGpio {
9
10 enum class Value {
11 low = 0,
12 high = 1
13 };
14
15 virtual void setValue(Value) = 0;
16 virtual Value getValue() = 0;
17};
18
19}
Definition: igpio.h:6
Definition: igpio.h:8
virtual void setValue(Value)=0
virtual Value getValue()=0
Value
Definition: igpio.h:10