diff options
Diffstat (limited to 'esp/include')
| -rw-r--r-- | esp/include/as5600.h | 3 | ||||
| -rw-r--r-- | esp/include/bh1750.h | 3 | ||||
| -rw-r--r-- | esp/include/bmp280.h | 4 | ||||
| -rw-r--r-- | esp/include/dht11.h | 4 | ||||
| -rw-r--r-- | esp/include/lm393.h | 3 |
5 files changed, 17 insertions, 0 deletions
diff --git a/esp/include/as5600.h b/esp/include/as5600.h index e69de29..059ae01 100644 --- a/esp/include/as5600.h +++ b/esp/include/as5600.h @@ -0,0 +1,3 @@ +#pragma once +void setupAS5600(); +float lerAS5600(); diff --git a/esp/include/bh1750.h b/esp/include/bh1750.h index e69de29..289d82a 100644 --- a/esp/include/bh1750.h +++ b/esp/include/bh1750.h @@ -0,0 +1,3 @@ +#pragma once +void setupBH1750(); +float lerBH1750(); diff --git a/esp/include/bmp280.h b/esp/include/bmp280.h index e69de29..43ae83e 100644 --- a/esp/include/bmp280.h +++ b/esp/include/bmp280.h @@ -0,0 +1,4 @@ +#pragma once +void setupBMP280(); +float lerTemperaturaBMP280(); +float lerPressaoBMP280(); diff --git a/esp/include/dht11.h b/esp/include/dht11.h index e69de29..84af67f 100644 --- a/esp/include/dht11.h +++ b/esp/include/dht11.h @@ -0,0 +1,4 @@ +#pragma once +void setupDHT11(); +float lerTemperaturaDHT11(); +float lerUmidadeDHT11(); diff --git a/esp/include/lm393.h b/esp/include/lm393.h index e69de29..2b8d983 100644 --- a/esp/include/lm393.h +++ b/esp/include/lm393.h @@ -0,0 +1,3 @@ +#pragma once +void setupLM393(); +int lerLM393(); |
