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: Servo Cayenne-LPP
Diff: DummySensor.h
- Revision:
- 56:39847849d219
- Parent:
- 46:a124538e2891
- Child:
- 61:de4f2279be57
diff -r 6f2e16ebde99 -r 39847849d219 DummySensor.h --- a/DummySensor.h Tue Aug 20 15:01:49 2019 +0100 +++ b/DummySensor.h Wed Aug 21 07:01:49 2019 +0100 @@ -25,21 +25,21 @@ public: DS1820(uint32_t) { - value = 1.0f; + value = 1; }; bool begin() { return true; }; void startConversion() {}; - float read() + int32_t read() { - value += 1.1f; + value += 2; return value; } private: - float value; + int32_t value; };