diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-11 11:43:58 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-11 11:43:58 +0100 |
commit | 171aa5502cfcac1abc5315c8792521790195e4a9 (patch) | |
tree | 4c8e944938501ba2ef3d0a7e0d5980d07b588221 /Temperature.h | |
parent | 3c7b85d8355c64dec5b4ce011753196d53774103 (diff) |
Add notes and temperature monitor
Diffstat (limited to 'Temperature.h')
-rw-r--r-- | Temperature.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Temperature.h b/Temperature.h new file mode 100644 index 0000000..7210c09 --- /dev/null +++ b/Temperature.h @@ -0,0 +1,10 @@ +#pragma once + +class Temperature +{ +public: + Temperature(); + + int read_degree() const; +}; + |