-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathPin.h
49 lines (41 loc) · 795 Bytes
/
Pin.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once
#include <library.h>
class CPin
{
BIOS::GPIO::EPin m_pin;
public:
void Create( BIOS::GPIO::EPin pin )
{
m_pin = pin;
}
void High()
{
BIOS::GPIO::PinMode(m_pin, BIOS::GPIO::Output);
BIOS::GPIO::DigitalWrite(m_pin, true);
}
void Low()
{
BIOS::GPIO::PinMode(m_pin, BIOS::GPIO::Output);
BIOS::GPIO::DigitalWrite(m_pin, false);
}
void Float()
{
BIOS::GPIO::PinMode(m_pin, BIOS::GPIO::EMode(BIOS::GPIO::Input | BIOS::GPIO::PullUp));
BIOS::GPIO::DigitalWrite(m_pin, true);
}
bool Get()
{
return BIOS::GPIO::DigitalRead(m_pin);
}
void operator =(bool b)
{
if (b)
Float();
else
High();
}
operator const bool ()
{
return Get();
}
};