1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Updating to Firmata rev. 51 (adding OldStandardFirmata and AllInputsFirmata).

This commit is contained in:
David A. Mellis
2010-01-08 02:30:44 +00:00
parent 298d24ae6b
commit c450e695ab
7 changed files with 764 additions and 14 deletions

View File

@ -13,7 +13,6 @@ void outputPort(byte portNumber, byte portValue)
if(previousPIN[portNumber] != portValue) {
Firmata.sendDigitalPort(portNumber, portValue);
previousPIN[portNumber] = portValue;
Firmata.sendDigitalPort(portNumber, portValue);
}
}