diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-16 12:58:24 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-16 12:58:24 +0200 |
commit | f6972a43581b24281b322a6f8d2bf02dafbe4433 (patch) | |
tree | 7ab50ae57739d8df9cc4a898b80c8b5c4ba9ceee /src/app | |
parent | 7343085df78d0fabedcdd69b207b2c04962cf98a (diff) |
configurable i2c bitrate on arduino nano
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/i2cbench/main.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app/i2cbench/main.cc b/src/app/i2cbench/main.cc index c9c2b70..5304816 100644 --- a/src/app/i2cbench/main.cc +++ b/src/app/i2cbench/main.cc @@ -25,8 +25,9 @@ void loop(void) { #ifdef DRIVER_LM75 - kout.printf_float(lm75.getTemp()); - kout << endl; + //kout.printf_float(lm75.getTemp()); + //kout << endl; + lm75.setOS(64); #endif #ifdef DRIVER_AM2320 am2320.read(); |