LTE-M Leaf Library
hl7800_leaf.h
Go to the documentation of this file.
1 
9 #ifndef HL7800_LEAF_H
10 #define HL7800_LEAF_H
11 
12 #include "common.h"
13 #include "Arduino.h"
14 
15 #define LEAF_ADC_I2C 0x52
16 #define LEAF_GPIO_I2C 0x21
17 
18 class HL7800Leaf {
19 protected:
20 
21 public:
22 // HL7800Leaf(); // Constructor
23  int getLeafADC(void);
24  void setLeafPower(bool enable);
25 
26 };
27 #endif // HL7800_MODEM_H
HL7800Leaf::setLeafPower
void setLeafPower(bool enable)
Definition: hl7800_leaf.cpp:41
HL7800Leaf
Definition: hl7800_leaf.h:18
HL7800Leaf::getLeafADC
int getLeafADC(void)
Definition: hl7800_leaf.cpp:20