diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-03-08 15:35:48 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-03-08 15:35:48 +0100 |
commit | 098fd9b55d055204b811317f2e117232637a48ab (patch) | |
tree | 1758a617818eb306cb90c1b4938e64cf917b1eae /include/driver | |
parent | f6e7d4fd15bc1adb538d4b4f053a7ac43f8bb2fe (diff) |
HDC1080: Add heater toggle
Diffstat (limited to 'include/driver')
-rw-r--r-- | include/driver/hdc1080.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/driver/hdc1080.h b/include/driver/hdc1080.h index f6f278c..6a510a0 100644 --- a/include/driver/hdc1080.h +++ b/include/driver/hdc1080.h @@ -15,6 +15,7 @@ class HDC1080 { float getRH(); unsigned int getManufacturerID(); void init(); + void heater(bool on); }; extern HDC1080 hdc1080; |