Skip to content

Commit

Permalink
prepare new version
Browse files Browse the repository at this point in the history
  • Loading branch information
orgua committed Oct 15, 2016
1 parent 51ba7e6 commit 6dee02f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions examples/OneWireHubTest/OneWireHubTest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 6dee02f

Please sign in to comment.