reformat source in uvosstyle
This commit is contained in:
parent
9f8b9059f9
commit
afeaa9f5a7
21
dht11.h
21
dht11.h
|
@ -9,15 +9,16 @@ class Dht11
|
|||
static constexpr uint8_t LOOP_TIMEOUT_SMALL_COUNT = (100.0 / 16000000.0)*F_CPU;
|
||||
static constexpr uint8_t BIT_COUNT = 5;//(6.0 / 16000000.0)*F_CPU;
|
||||
static constexpr bool DHT22 = true;
|
||||
|
||||
volatile unsigned char * const _port;
|
||||
volatile unsigned char * const _port_ctl;
|
||||
volatile unsigned char * const _inPort;
|
||||
const unsigned char _pin;
|
||||
|
||||
|
||||
volatile unsigned char * const _port;
|
||||
volatile unsigned char * const _port_ctl;
|
||||
volatile unsigned char * const _inPort;
|
||||
const unsigned char _pin;
|
||||
|
||||
public:
|
||||
Dht11(volatile unsigned char * const port, volatile unsigned char * const inPort, volatile unsigned char * const port_ctl, const unsigned char pin);
|
||||
uint8_t read();
|
||||
int16_t humidity = 0;
|
||||
int16_t temperature = 0;
|
||||
Dht11(volatile unsigned char * const port, volatile unsigned char * const inPort,
|
||||
volatile unsigned char * const port_ctl, const unsigned char pin);
|
||||
uint8_t read();
|
||||
int16_t humidity = 0;
|
||||
int16_t temperature = 0;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue