Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface LM75B mbed-rtos mbed
temperature.h@0:29eeb74e55c6, 2018-03-13 (annotated)
- Committer:
- RobinMechele
- Date:
- Tue Mar 13 11:10:03 2018 +0000
- Revision:
- 0:29eeb74e55c6
- Child:
- 6:4f13276fd1e2
Kan temperatuur uitlezen, setup en lcd aansturen werkt perfect
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
RobinMechele | 0:29eeb74e55c6 | 1 | #ifndef temperature_h |
RobinMechele | 0:29eeb74e55c6 | 2 | #define temperature_h |
RobinMechele | 0:29eeb74e55c6 | 3 | #include "mbed.h" |
RobinMechele | 0:29eeb74e55c6 | 4 | #include "LM75B.h" |
RobinMechele | 0:29eeb74e55c6 | 5 | |
RobinMechele | 0:29eeb74e55c6 | 6 | class Temperature |
RobinMechele | 0:29eeb74e55c6 | 7 | { |
RobinMechele | 0:29eeb74e55c6 | 8 | public: |
RobinMechele | 0:29eeb74e55c6 | 9 | explicit Temperature(); |
RobinMechele | 0:29eeb74e55c6 | 10 | float getTemperature(); |
RobinMechele | 0:29eeb74e55c6 | 11 | }; |
RobinMechele | 0:29eeb74e55c6 | 12 | |
RobinMechele | 0:29eeb74e55c6 | 13 | #endif |