From 77741d03df91db9c22c4ee4550f9b463e0e076a9 Mon Sep 17 00:00:00 2001 From: Doxygen CI Date: Sat, 23 Oct 2021 15:51:03 +0000 Subject: [PATCH] Deploy docs to GitHub Pages from commit cf2346e7c1 Commit: cf2346e7c14a408b1b0c4df0fe52afdbb9d44958 GitHub Actions run: 1375810556 --- html/_d_h_t_8h.html | 85 -------------------------------------- html/_d_h_t_8h_source.html | 2 +- html/globals.html | 15 ------- html/globals_defs.html | 15 ------- html/search/all_0.js | 2 +- html/search/all_1.js | 4 +- html/search/all_2.js | 14 +++++-- html/search/all_3.js | 17 +------- html/search/all_4.js | 3 +- html/search/all_5.js | 2 +- html/search/all_6.js | 2 +- html/search/all_7.js | 4 +- html/search/all_8.js | 5 +-- html/search/all_9.html | 26 ------------ html/search/all_9.js | 5 --- html/search/defines_0.js | 5 ++- html/search/defines_1.js | 9 +--- html/search/defines_2.js | 2 +- html/search/defines_3.html | 26 ------------ html/search/defines_3.js | 4 -- html/search/searchdata.js | 4 +- 21 files changed, 34 insertions(+), 217 deletions(-) delete mode 100644 html/search/all_9.html delete mode 100644 html/search/all_9.js delete mode 100644 html/search/defines_3.html delete mode 100644 html/search/defines_3.js diff --git a/html/_d_h_t_8h.html b/html/_d_h_t_8h.html index 129f10a..33898dd 100644 --- a/html/_d_h_t_8h.html +++ b/html/_d_h_t_8h.html @@ -86,16 +86,6 @@ Macros   #define DEBUG_PRINTLN(...)   {}   -#define DHT11   11 -  -#define DHT12   12 -  -#define DHT22   22 -  -#define DHT21   21 -  -#define AM2301   21 - 

Detailed Description

This is a library for DHT series of low cost temperature/humidity sensors.

@@ -155,81 +145,6 @@ Macros

Debug Print Line Placeholder if Debug is disabled

-
- - -

◆ DHT11

- -
-
- - - - -
#define DHT11   11
-
-

DHT TYPE 11

- -
-
- -

◆ DHT12

- -
-
- - - - -
#define DHT12   12
-
-

DHY TYPE 12

- -
-
- -

◆ DHT22

- -
-
- - - - -
#define DHT22   22
-
-

DHT TYPE 22

- -
-
- -

◆ DHT21

- -
-
- - - - -
#define DHT21   21
-
-

DHT TYPE 21

- -
-
- -

◆ AM2301

- -
-
- - - - -
#define AM2301   21
-
-

AM2301

-
diff --git a/html/_d_h_t_8h_source.html b/html/_d_h_t_8h_source.html index 90b121a..c5496db 100644 --- a/html/_d_h_t_8h_source.html +++ b/html/_d_h_t_8h_source.html @@ -62,7 +62,7 @@ $(function() {
DHT.h
-Go to the documentation of this file.
1 
18 #ifndef DHT_H
19 #define DHT_H
20 
21 #include "Arduino.h"
22 
23 /* Uncomment to enable printing out nice debug messages. */
24 //#define DHT_DEBUG
25 
26 #define DEBUG_PRINTER \
27  Serial
30 /* Setup debug printing macros. */
31 #ifdef DHT_DEBUG
32 #define DEBUG_PRINT(...) \
33  { DEBUG_PRINTER.print(__VA_ARGS__); }
34 #define DEBUG_PRINTLN(...) \
35  { DEBUG_PRINTER.println(__VA_ARGS__); }
36 #else
37 #define DEBUG_PRINT(...) \
38  {}
39 #define DEBUG_PRINTLN(...) \
40  {}
41 #endif
42 
43 /* Define types of sensors. */
44 #define DHT11 11
45 #define DHT12 12
46 #define DHT22 22
47 #define DHT21 21
48 #define AM2301 21
50 #if defined(TARGET_NAME) && (TARGET_NAME == ARDUINO_NANO33BLE)
51 #ifndef microsecondsToClockCycles
52 
56 #define microsecondsToClockCycles(a) ((a) * (SystemCoreClock / 1000000L))
57 #endif
58 #endif
59 
63 class DHT {
64 public:
65  DHT(uint8_t pin, uint8_t type, uint8_t count = 6);
66  void begin(uint8_t usec = 55);
67  float readTemperature(bool S = false, bool force = false);
68  float convertCtoF(float);
69  float convertFtoC(float);
70  float computeHeatIndex(bool isFahrenheit = true);
71  float computeHeatIndex(float temperature, float percentHumidity,
72  bool isFahrenheit = true);
73  float readHumidity(bool force = false);
74  bool read(bool force = false);
75 
76 private:
77  uint8_t data[5];
78  uint8_t _pin, _type;
79 #ifdef __AVR
80  // Use direct GPIO access on an 8-bit AVR so keep track of the port and
81  // bitmask for the digital pin connected to the DHT. Other platforms will use
82  // digitalRead.
83  uint8_t _bit, _port;
84 #endif
85  uint32_t _lastreadtime, _maxcycles;
86  bool _lastresult;
87  uint8_t pullTime; // Time (in usec) to pull up data line before reading
88 
89  uint32_t expectPulse(bool level);
90 };
91 
95 class InterruptLock {
96 public:
97  InterruptLock() {
98 #if !defined(ARDUINO_ARCH_NRF52)
99  noInterrupts();
100 #endif
101  }
102  ~InterruptLock() {
103 #if !defined(ARDUINO_ARCH_NRF52)
104  interrupts();
105 #endif
106  }
107 };
108 
109 #endif
float convertCtoF(float)
Converts Celcius to Fahrenheit.
Definition: DHT.cpp:133
+Go to the documentation of this file.
1 
18 #ifndef DHT_H
19 #define DHT_H
20 
21 #include "Arduino.h"
22 
23 /* Uncomment to enable printing out nice debug messages. */
24 //#define DHT_DEBUG
25 
26 #define DEBUG_PRINTER \
27  Serial
30 /* Setup debug printing macros. */
31 #ifdef DHT_DEBUG
32 #define DEBUG_PRINT(...) \
33  { DEBUG_PRINTER.print(__VA_ARGS__); }
34 #define DEBUG_PRINTLN(...) \
35  { DEBUG_PRINTER.println(__VA_ARGS__); }
36 #else
37 #define DEBUG_PRINT(...) \
38  {}
39 #define DEBUG_PRINTLN(...) \
40  {}
41 #endif
42 
43 /* Define types of sensors. */
44 static const uint8_t DHT11{11};
45 static const uint8_t DHT12{12};
46 static const uint8_t DHT21{21};
47 static const uint8_t DHT22{22};
48 static const uint8_t AM2301{21};
50 #if defined(TARGET_NAME) && (TARGET_NAME == ARDUINO_NANO33BLE)
51 #ifndef microsecondsToClockCycles
52 
56 #define microsecondsToClockCycles(a) ((a) * (SystemCoreClock / 1000000L))
57 #endif
58 #endif
59 
63 class DHT {
64 public:
65  DHT(uint8_t pin, uint8_t type, uint8_t count = 6);
66  void begin(uint8_t usec = 55);
67  float readTemperature(bool S = false, bool force = false);
68  float convertCtoF(float);
69  float convertFtoC(float);
70  float computeHeatIndex(bool isFahrenheit = true);
71  float computeHeatIndex(float temperature, float percentHumidity,
72  bool isFahrenheit = true);
73  float readHumidity(bool force = false);
74  bool read(bool force = false);
75 
76 private:
77  uint8_t data[5];
78  uint8_t _pin, _type;
79 #ifdef __AVR
80  // Use direct GPIO access on an 8-bit AVR so keep track of the port and
81  // bitmask for the digital pin connected to the DHT. Other platforms will use
82  // digitalRead.
83  uint8_t _bit, _port;
84 #endif
85  uint32_t _lastreadtime, _maxcycles;
86  bool _lastresult;
87  uint8_t pullTime; // Time (in usec) to pull up data line before reading
88 
89  uint32_t expectPulse(bool level);
90 };
91 
95 class InterruptLock {
96 public:
97  InterruptLock() {
98 #if !defined(ARDUINO_ARCH_NRF52)
99  noInterrupts();
100 #endif
101  }
102  ~InterruptLock() {
103 #if !defined(ARDUINO_ARCH_NRF52)
104  interrupts();
105 #endif
106  }
107 };
108 
109 #endif
float convertCtoF(float)
Converts Celcius to Fahrenheit.
Definition: DHT.cpp:133
DHT(uint8_t pin, uint8_t type, uint8_t count=6)
Instantiates a new DHT class.
Definition: DHT.cpp:43
float convertFtoC(float)
Converts Fahrenheit to Celcius.
Definition: DHT.cpp:141
bool read(bool force=false)
Read value from sensor or return last one from less than two seconds.
Definition: DHT.cpp:232
diff --git a/html/globals.html b/html/globals.html index a60456d..3e7b4db 100644 --- a/html/globals.html +++ b/html/globals.html @@ -59,9 +59,6 @@ $(function() {
Here is a list of all documented file members with links to the documentation:
    -
  • AM2301 -: DHT.h -
  • DEBUG_PRINT : DHT.h
  • @@ -71,18 +68,6 @@ $(function() {
  • DEBUG_PRINTLN : DHT.h
  • -
  • DHT11 -: DHT.h -
  • -
  • DHT12 -: DHT.h -
  • -
  • DHT21 -: DHT.h -
  • -
  • DHT22 -: DHT.h -
  • DHT_SENSOR_VERSION : DHT_U.h
  • diff --git a/html/globals_defs.html b/html/globals_defs.html index 1fc50f9..7b3c6a4 100644 --- a/html/globals_defs.html +++ b/html/globals_defs.html @@ -59,9 +59,6 @@ $(function() {
     
      -
    • AM2301 -: DHT.h -
    • DEBUG_PRINT : DHT.h
    • @@ -71,18 +68,6 @@ $(function() {
    • DEBUG_PRINTLN : DHT.h
    • -
    • DHT11 -: DHT.h -
    • -
    • DHT12 -: DHT.h -
    • -
    • DHT21 -: DHT.h -
    • -
    • DHT22 -: DHT.h -
    • DHT_SENSOR_VERSION : DHT_U.h
    • diff --git a/html/search/all_0.js b/html/search/all_0.js index b75914b..8f10e85 100644 --- a/html/search/all_0.js +++ b/html/search/all_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['am2301',['AM2301',['../_d_h_t_8h.html#a3de32b1bf162072c5e2d695bea5bb296',1,'DHT.h']]] + ['begin',['begin',['../class_d_h_t.html#a5fea0c753872b62f0ea423b03b6a0ac0',1,'DHT::begin()'],['../class_d_h_t___unified.html#af867b39b7672ec034e762633d8c986c6',1,'DHT_Unified::begin()']]] ]; diff --git a/html/search/all_1.js b/html/search/all_1.js index 8f10e85..fb72dd9 100644 --- a/html/search/all_1.js +++ b/html/search/all_1.js @@ -1,4 +1,6 @@ var searchData= [ - ['begin',['begin',['../class_d_h_t.html#a5fea0c753872b62f0ea423b03b6a0ac0',1,'DHT::begin()'],['../class_d_h_t___unified.html#af867b39b7672ec034e762633d8c986c6',1,'DHT_Unified::begin()']]] + ['computeheatindex',['computeHeatIndex',['../class_d_h_t.html#a47724a419777972edf68cd5b8aa85569',1,'DHT::computeHeatIndex(bool isFahrenheit=true)'],['../class_d_h_t.html#a0d23921017e3d827e49bfd136b40a6aa',1,'DHT::computeHeatIndex(float temperature, float percentHumidity, bool isFahrenheit=true)']]], + ['convertctof',['convertCtoF',['../class_d_h_t.html#a582df4d39cd56b4acbd47fbe75aedcc3',1,'DHT']]], + ['convertftoc',['convertFtoC',['../class_d_h_t.html#a90530e38a2f47893e4767dda1d00d2a4',1,'DHT']]] ]; diff --git a/html/search/all_2.js b/html/search/all_2.js index fb72dd9..343ea10 100644 --- a/html/search/all_2.js +++ b/html/search/all_2.js @@ -1,6 +1,14 @@ var searchData= [ - ['computeheatindex',['computeHeatIndex',['../class_d_h_t.html#a47724a419777972edf68cd5b8aa85569',1,'DHT::computeHeatIndex(bool isFahrenheit=true)'],['../class_d_h_t.html#a0d23921017e3d827e49bfd136b40a6aa',1,'DHT::computeHeatIndex(float temperature, float percentHumidity, bool isFahrenheit=true)']]], - ['convertctof',['convertCtoF',['../class_d_h_t.html#a582df4d39cd56b4acbd47fbe75aedcc3',1,'DHT']]], - ['convertftoc',['convertFtoC',['../class_d_h_t.html#a90530e38a2f47893e4767dda1d00d2a4',1,'DHT']]] + ['debug_5fprint',['DEBUG_PRINT',['../_d_h_t_8h.html#a88edd2aa4feabff4af21a997d5d8aa23',1,'DHT.h']]], + ['debug_5fprinter',['DEBUG_PRINTER',['../_d_h_t_8h.html#afe84d42042833e4e334c977b93ff2407',1,'DHT.h']]], + ['debug_5fprintln',['DEBUG_PRINTLN',['../_d_h_t_8h.html#ae414eccb9fbdc7c0cc6edfc588a3aa34',1,'DHT.h']]], + ['dht',['DHT',['../class_d_h_t.html',1,'DHT'],['../class_d_h_t.html#afa429167bfeba848ab824fee0043f79d',1,'DHT::DHT()']]], + ['dht_2ecpp',['DHT.cpp',['../_d_h_t_8cpp.html',1,'']]], + ['dht_2eh',['DHT.h',['../_d_h_t_8h.html',1,'']]], + ['dht_5fsensor_5fversion',['DHT_SENSOR_VERSION',['../_d_h_t___u_8h.html#a77b3acfd90db1775e9e644b87ab2a369',1,'DHT_U.h']]], + ['dht_5fu_2ecpp',['DHT_U.cpp',['../_d_h_t___u_8cpp.html',1,'']]], + ['dht_5fu_2eh',['DHT_U.h',['../_d_h_t___u_8h.html',1,'']]], + ['dht_5funified',['DHT_Unified',['../class_d_h_t___unified.html',1,'DHT_Unified'],['../class_d_h_t___unified.html#ae9ac86a42ea35ad58f2c496f32a97c62',1,'DHT_Unified::DHT_Unified()']]], + ['dht_20series_20of_20low_20cost_20temperature_2fhumidity_20sensors_2e',['DHT series of low cost temperature/humidity sensors.',['../index.html',1,'']]] ]; diff --git a/html/search/all_3.js b/html/search/all_3.js index ca37adc..e2458c0 100644 --- a/html/search/all_3.js +++ b/html/search/all_3.js @@ -1,18 +1,5 @@ var searchData= [ - ['debug_5fprint',['DEBUG_PRINT',['../_d_h_t_8h.html#a88edd2aa4feabff4af21a997d5d8aa23',1,'DHT.h']]], - ['debug_5fprinter',['DEBUG_PRINTER',['../_d_h_t_8h.html#afe84d42042833e4e334c977b93ff2407',1,'DHT.h']]], - ['debug_5fprintln',['DEBUG_PRINTLN',['../_d_h_t_8h.html#ae414eccb9fbdc7c0cc6edfc588a3aa34',1,'DHT.h']]], - ['dht',['DHT',['../class_d_h_t.html',1,'DHT'],['../class_d_h_t.html#afa429167bfeba848ab824fee0043f79d',1,'DHT::DHT()']]], - ['dht_2ecpp',['DHT.cpp',['../_d_h_t_8cpp.html',1,'']]], - ['dht_2eh',['DHT.h',['../_d_h_t_8h.html',1,'']]], - ['dht11',['DHT11',['../_d_h_t_8h.html#ac7ca444ad6788a4e3686a83bc036efb6',1,'DHT.h']]], - ['dht12',['DHT12',['../_d_h_t_8h.html#a1574ee8a0bebaff3165f634e2717d4e7',1,'DHT.h']]], - ['dht21',['DHT21',['../_d_h_t_8h.html#af718013a29c2115b00d7c77d2f28084b',1,'DHT.h']]], - ['dht22',['DHT22',['../_d_h_t_8h.html#a1d34ec65a101891e5800d6e6a69fe528',1,'DHT.h']]], - ['dht_5fsensor_5fversion',['DHT_SENSOR_VERSION',['../_d_h_t___u_8h.html#a77b3acfd90db1775e9e644b87ab2a369',1,'DHT_U.h']]], - ['dht_5fu_2ecpp',['DHT_U.cpp',['../_d_h_t___u_8cpp.html',1,'']]], - ['dht_5fu_2eh',['DHT_U.h',['../_d_h_t___u_8h.html',1,'']]], - ['dht_5funified',['DHT_Unified',['../class_d_h_t___unified.html',1,'DHT_Unified'],['../class_d_h_t___unified.html#ae9ac86a42ea35ad58f2c496f32a97c62',1,'DHT_Unified::DHT_Unified()']]], - ['dht_20series_20of_20low_20cost_20temperature_2fhumidity_20sensors_2e',['DHT series of low cost temperature/humidity sensors.',['../index.html',1,'']]] + ['getevent',['getEvent',['../class_d_h_t___unified_1_1_temperature.html#adeb63f8a2c39634d005f822db81d4d76',1,'DHT_Unified::Temperature::getEvent()'],['../class_d_h_t___unified_1_1_humidity.html#a17de7d73587c312e0a2b7ea1dcf35ba8',1,'DHT_Unified::Humidity::getEvent()']]], + ['getsensor',['getSensor',['../class_d_h_t___unified_1_1_temperature.html#a2d952e5ed342ce324fca0d2f8854d2d7',1,'DHT_Unified::Temperature::getSensor()'],['../class_d_h_t___unified_1_1_humidity.html#a424a424cfeabd672c93fffd4c9ad0ff0',1,'DHT_Unified::Humidity::getSensor()']]] ]; diff --git a/html/search/all_4.js b/html/search/all_4.js index e2458c0..a8d8ad3 100644 --- a/html/search/all_4.js +++ b/html/search/all_4.js @@ -1,5 +1,4 @@ var searchData= [ - ['getevent',['getEvent',['../class_d_h_t___unified_1_1_temperature.html#adeb63f8a2c39634d005f822db81d4d76',1,'DHT_Unified::Temperature::getEvent()'],['../class_d_h_t___unified_1_1_humidity.html#a17de7d73587c312e0a2b7ea1dcf35ba8',1,'DHT_Unified::Humidity::getEvent()']]], - ['getsensor',['getSensor',['../class_d_h_t___unified_1_1_temperature.html#a2d952e5ed342ce324fca0d2f8854d2d7',1,'DHT_Unified::Temperature::getSensor()'],['../class_d_h_t___unified_1_1_humidity.html#a424a424cfeabd672c93fffd4c9ad0ff0',1,'DHT_Unified::Humidity::getSensor()']]] + ['humidity',['Humidity',['../class_d_h_t___unified_1_1_humidity.html',1,'DHT_Unified::Humidity'],['../class_d_h_t___unified.html#aacc7234ba09647604c6d9ff9b89df69c',1,'DHT_Unified::humidity()'],['../class_d_h_t___unified_1_1_humidity.html#a10b6367e2c614daeac95f0b776eea4e8',1,'DHT_Unified::Humidity::Humidity()']]] ]; diff --git a/html/search/all_5.js b/html/search/all_5.js index a8d8ad3..015d949 100644 --- a/html/search/all_5.js +++ b/html/search/all_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['humidity',['Humidity',['../class_d_h_t___unified_1_1_humidity.html',1,'DHT_Unified::Humidity'],['../class_d_h_t___unified.html#aacc7234ba09647604c6d9ff9b89df69c',1,'DHT_Unified::humidity()'],['../class_d_h_t___unified_1_1_humidity.html#a10b6367e2c614daeac95f0b776eea4e8',1,'DHT_Unified::Humidity::Humidity()']]] + ['interruptlock',['InterruptLock',['../class_interrupt_lock.html',1,'']]] ]; diff --git a/html/search/all_6.js b/html/search/all_6.js index 015d949..9bc38bc 100644 --- a/html/search/all_6.js +++ b/html/search/all_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['interruptlock',['InterruptLock',['../class_interrupt_lock.html',1,'']]] + ['min_5finterval',['MIN_INTERVAL',['../_d_h_t_8cpp.html#ae5d44a5fa9fd9d113f6bff639f06ddd6',1,'DHT.cpp']]] ]; diff --git a/html/search/all_7.js b/html/search/all_7.js index 9bc38bc..660b072 100644 --- a/html/search/all_7.js +++ b/html/search/all_7.js @@ -1,4 +1,6 @@ var searchData= [ - ['min_5finterval',['MIN_INTERVAL',['../_d_h_t_8cpp.html#ae5d44a5fa9fd9d113f6bff639f06ddd6',1,'DHT.cpp']]] + ['read',['read',['../class_d_h_t.html#a4c1508f2997a5d03968b3afdeae70e03',1,'DHT']]], + ['readhumidity',['readHumidity',['../class_d_h_t.html#a5f8c84378abe4eeecf34f09e2cdf90a0',1,'DHT']]], + ['readtemperature',['readTemperature',['../class_d_h_t.html#a68be09105aa7d831bb473c9d774918cf',1,'DHT']]] ]; diff --git a/html/search/all_8.js b/html/search/all_8.js index 660b072..642d50e 100644 --- a/html/search/all_8.js +++ b/html/search/all_8.js @@ -1,6 +1,5 @@ var searchData= [ - ['read',['read',['../class_d_h_t.html#a4c1508f2997a5d03968b3afdeae70e03',1,'DHT']]], - ['readhumidity',['readHumidity',['../class_d_h_t.html#a5f8c84378abe4eeecf34f09e2cdf90a0',1,'DHT']]], - ['readtemperature',['readTemperature',['../class_d_h_t.html#a68be09105aa7d831bb473c9d774918cf',1,'DHT']]] + ['temperature',['Temperature',['../class_d_h_t___unified_1_1_temperature.html',1,'DHT_Unified::Temperature'],['../class_d_h_t___unified.html#a97d6725d3406c9be896aae3e9d3cc75c',1,'DHT_Unified::temperature()'],['../class_d_h_t___unified_1_1_temperature.html#a3de5bff6832488921d39ea02bfd9d2ad',1,'DHT_Unified::Temperature::Temperature()']]], + ['timeout',['TIMEOUT',['../_d_h_t_8cpp.html#a45ba202b05caf39795aeca91b0ae547e',1,'DHT.cpp']]] ]; diff --git a/html/search/all_9.html b/html/search/all_9.html deleted file mode 100644 index f8abbbe..0000000 --- a/html/search/all_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
      -
      Loading...
      -
      - -
      Searching...
      -
      No Matches
      - -
      - - diff --git a/html/search/all_9.js b/html/search/all_9.js deleted file mode 100644 index 642d50e..0000000 --- a/html/search/all_9.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['temperature',['Temperature',['../class_d_h_t___unified_1_1_temperature.html',1,'DHT_Unified::Temperature'],['../class_d_h_t___unified.html#a97d6725d3406c9be896aae3e9d3cc75c',1,'DHT_Unified::temperature()'],['../class_d_h_t___unified_1_1_temperature.html#a3de5bff6832488921d39ea02bfd9d2ad',1,'DHT_Unified::Temperature::Temperature()']]], - ['timeout',['TIMEOUT',['../_d_h_t_8cpp.html#a45ba202b05caf39795aeca91b0ae547e',1,'DHT.cpp']]] -]; diff --git a/html/search/defines_0.js b/html/search/defines_0.js index b75914b..21b3cce 100644 --- a/html/search/defines_0.js +++ b/html/search/defines_0.js @@ -1,4 +1,7 @@ var searchData= [ - ['am2301',['AM2301',['../_d_h_t_8h.html#a3de32b1bf162072c5e2d695bea5bb296',1,'DHT.h']]] + ['debug_5fprint',['DEBUG_PRINT',['../_d_h_t_8h.html#a88edd2aa4feabff4af21a997d5d8aa23',1,'DHT.h']]], + ['debug_5fprinter',['DEBUG_PRINTER',['../_d_h_t_8h.html#afe84d42042833e4e334c977b93ff2407',1,'DHT.h']]], + ['debug_5fprintln',['DEBUG_PRINTLN',['../_d_h_t_8h.html#ae414eccb9fbdc7c0cc6edfc588a3aa34',1,'DHT.h']]], + ['dht_5fsensor_5fversion',['DHT_SENSOR_VERSION',['../_d_h_t___u_8h.html#a77b3acfd90db1775e9e644b87ab2a369',1,'DHT_U.h']]] ]; diff --git a/html/search/defines_1.js b/html/search/defines_1.js index 2798242..9bc38bc 100644 --- a/html/search/defines_1.js +++ b/html/search/defines_1.js @@ -1,11 +1,4 @@ var searchData= [ - ['debug_5fprint',['DEBUG_PRINT',['../_d_h_t_8h.html#a88edd2aa4feabff4af21a997d5d8aa23',1,'DHT.h']]], - ['debug_5fprinter',['DEBUG_PRINTER',['../_d_h_t_8h.html#afe84d42042833e4e334c977b93ff2407',1,'DHT.h']]], - ['debug_5fprintln',['DEBUG_PRINTLN',['../_d_h_t_8h.html#ae414eccb9fbdc7c0cc6edfc588a3aa34',1,'DHT.h']]], - ['dht11',['DHT11',['../_d_h_t_8h.html#ac7ca444ad6788a4e3686a83bc036efb6',1,'DHT.h']]], - ['dht12',['DHT12',['../_d_h_t_8h.html#a1574ee8a0bebaff3165f634e2717d4e7',1,'DHT.h']]], - ['dht21',['DHT21',['../_d_h_t_8h.html#af718013a29c2115b00d7c77d2f28084b',1,'DHT.h']]], - ['dht22',['DHT22',['../_d_h_t_8h.html#a1d34ec65a101891e5800d6e6a69fe528',1,'DHT.h']]], - ['dht_5fsensor_5fversion',['DHT_SENSOR_VERSION',['../_d_h_t___u_8h.html#a77b3acfd90db1775e9e644b87ab2a369',1,'DHT_U.h']]] + ['min_5finterval',['MIN_INTERVAL',['../_d_h_t_8cpp.html#ae5d44a5fa9fd9d113f6bff639f06ddd6',1,'DHT.cpp']]] ]; diff --git a/html/search/defines_2.js b/html/search/defines_2.js index 9bc38bc..1b8f4fc 100644 --- a/html/search/defines_2.js +++ b/html/search/defines_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['min_5finterval',['MIN_INTERVAL',['../_d_h_t_8cpp.html#ae5d44a5fa9fd9d113f6bff639f06ddd6',1,'DHT.cpp']]] + ['timeout',['TIMEOUT',['../_d_h_t_8cpp.html#a45ba202b05caf39795aeca91b0ae547e',1,'DHT.cpp']]] ]; diff --git a/html/search/defines_3.html b/html/search/defines_3.html deleted file mode 100644 index a55d3ff..0000000 --- a/html/search/defines_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
      -
      Loading...
      -
      - -
      Searching...
      -
      No Matches
      - -
      - - diff --git a/html/search/defines_3.js b/html/search/defines_3.js deleted file mode 100644 index 1b8f4fc..0000000 --- a/html/search/defines_3.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['timeout',['TIMEOUT',['../_d_h_t_8cpp.html#a45ba202b05caf39795aeca91b0ae547e',1,'DHT.cpp']]] -]; diff --git a/html/search/searchdata.js b/html/search/searchdata.js index 5ea240f..0d94295 100644 --- a/html/search/searchdata.js +++ b/html/search/searchdata.js @@ -1,10 +1,10 @@ var indexSectionsWithContent = { - 0: "abcdghimrt", + 0: "bcdghimrt", 1: "dhit", 2: "d", 3: "bcdghrt", - 4: "admt", + 4: "dmt", 5: "d" };