We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d5203 commit eb36464Copy full SHA for eb36464
Firmata.cpp
@@ -67,14 +67,18 @@ void FirmataClass::begin(void)
67
void FirmataClass::begin(long speed)
68
{
69
Serial.begin(speed);
70
- begin(Serial);
71
- blinkVersion();
+ FirmataSerial = &Serial;
+ blinkVersion();
72
+ printVersion();
73
+ printFirmwareVersion();
74
}
75
76
/* begin method for overriding default stream */
77
void FirmataClass::begin(Stream &s)
78
79
FirmataSerial = &s;
80
+ // do not call blinkVersion() here because some hardware such as the
81
+ // Ethernet shield use pin 13
82
printVersion();
83
printFirmwareVersion();
84
0 commit comments