From 6dee02f03104cb252466afa2fdddd08c58eafeae Mon Sep 17 00:00:00 2001 From: orgua Date: Sat, 15 Oct 2016 18:53:34 +0200 Subject: [PATCH] prepare new version --- README.md | 2 ++ examples/OneWireHubTest/OneWireHubTest.ino | 4 ++-- library.properties | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 296c708..9b62cd3 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,8 @@ Note: **Bold printed devices are feature-complete and were mostly tested with a - documentation, numerous examples, easy interface for hub and sensors ### Recent development (latest at the top): +- teensy3.2 tested: cleaned warnings, fixed port access, cleaned examples +- sensors with emulated memory use memset and static_asserts to secure implementation - fix and clean pin access, fix a portability issue (time_t) - prepare hub for overdrive-mode - added or extended the ds2431, ds2431, ds2501, ds2502 (also tested) diff --git a/examples/OneWireHubTest/OneWireHubTest.ino b/examples/OneWireHubTest/OneWireHubTest.ino index 9327ca7..5923e65 100644 --- a/examples/OneWireHubTest/OneWireHubTest.ino +++ b/examples/OneWireHubTest/OneWireHubTest.ino @@ -68,8 +68,8 @@ void setup() pinMode(pin_led, OUTPUT); // Setup OneWire - ds1822.setTemp(21); - ds18S20.setTemp(10); + ds1822.setTemp(21.0); + ds18S20.setTemp(10.0); hub.attach(ds1822); hub.attach(ds18B20); hub.attach(ds18S20); diff --git a/library.properties b/library.properties index 291a0c8..9222c78 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=OneWireHub -version=1.0.0 +version=1.1.0 author=Ingmar Splitt, orgua, MarkusLange, Shagrat2 maintainer=orgua sentence=OneWire slave device emulator with support for up to 32 simultaneous 1wire devices.