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#include <cstdint>
6
7namespace mfrc522 {
8
9 struct IGpio {
10
11 enum class Value {
12 l = 0,
13 h = 1
14 };
15
16 virtual void setValue(Value) = 0;
17 virtual Value getValue() = 0;
18 };
19
20}
Definition: igpio.h:6
virtual void setValue(Value)=0
virtual Value getValue()=0
Value
Definition: igpio.h:10