summaryrefslogtreecommitdiff
path: root/include/object
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-12-14 15:51:11 +0100
committerDaniel Friesel <derf@finalrewind.org>2017-12-14 15:51:11 +0100
commit51a00f59ea9ecb49471b30921f36821fdfa75bc4 (patch)
tree4c237974cf044d5a7067aba48070ad7f6e3c7d11 /include/object
parent693afffd7b89507916ecd759767b0b7e947dca60 (diff)
Add I2C and LM75 drivers
Diffstat (limited to 'include/object')
-rw-r--r--include/object/outputstream.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/object/outputstream.h b/include/object/outputstream.h
index 43e61f3..4a37977 100644
--- a/include/object/outputstream.h
+++ b/include/object/outputstream.h
@@ -38,6 +38,8 @@ class OutputStream {
OutputStream & operator<<(OutputStream & (*fun) (OutputStream &));
void setBase(uint8_t b);
+ void printf_uint8(uint8_t num);
+ void printf_float(float num);
};