ACKme Logo WiConnect Host Library- API Reference Guide
 
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
Gpio.h
1 
29 #pragma once
30 
31 
32 #include "api/WiconnectTypes.h"
33 
34 
35 namespace wiconnect
36 {
37 
43 class Gpio WICONNECT_GPIO_BASE_CLASS
44 {
45 public:
46  Gpio(Pin pin);
47 
48  void write(bool value);
49 
50  bool read(void);
51 
52  Gpio& operator= (bool value);
53 
54  Gpio& operator= (const Gpio& other);
55 
56 };
57 
58 
59 }
PinName Pin
Pin name on HOST.
Definition: sdk.h:134