Fix bug in TWIBus ctor declaration

This commit is contained in:
Scott Lahteine 2016-04-20 12:34:55 -07:00
parent ee9bd66a68
commit e523a0dc61

View file

@ -28,7 +28,7 @@
#include <Wire.h>
TWIBus::twibus() {
TWIBus::TWIBus() {
Wire.begin(); // We use no address so we will join the BUS as the master
this->reset();
}