0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-30 05:48:02 +00:00

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();
}