Skip to content

Commit d78d505

Browse files
Uno and ArduinoEthnet boards still work with StandardFirmataEthernetPlus
1 parent 4becfc5 commit d78d505

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

examples/StandardFirmataEthernet/StandardFirmataEthernet.ino

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@
4343
- Arduino Mega: (D4, D10, D50, D51, D52, D53)
4444
- Arduino Leonardo: (D4, D10)
4545
- Arduino Due: (D4, D10)
46+
47+
If you are using an ArduinoEthernet board, the following pins cannot be used (same as Uno):
48+
- D4, D10, D11, D12, D13
4649
*/
4750

4851
#include <Servo.h>

examples/StandardFirmataEthernetPlus/StandardFirmataEthernetPlus.ino

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,18 @@
2828
2929
StandardFirmataEthernetPlus adds additional features that may exceed the Flash and
3030
RAM sizes of Arduino boards such as ATMega328p (Uno) and ATMega32u4
31-
(Leonardo, Micro, Yun, etc). It is best to use StandardFirmataPlus with higher
32-
memory boards such as the Arduino Mega, Arduino Due, Teensy 3.0/3.1/3.2, etc.
31+
(Leonardo, Micro, Yun, etc). It is best to use StandardFirmataPlus with a board that
32+
has > 32k Flash and > 3k RAM such as: Arduino Mega, Arduino Due, Teensy 3.0/3.1/3.2, etc.
3333
3434
This sketch consumes too much Flash and RAM to run reliably on an
35-
Arduino Ethernet board, Arduino Leonardo, Yun, Uno or other ATMega328p or
36-
ATMega32u4-based boards. You will need a board with > 32k Flash and 3k RAM.
37-
Use StandardFirmataEthernet.ino instead for those boards and other boards that do not
38-
meet the Flash and RAM requirements.
35+
Arduino Leonardo, Yun, ATMega32u4-based board. Use StandardFirmataEthernet.ino instead
36+
for those boards and other boards that do not meet the Flash and RAM requirements.
3937
40-
USE: To use StandardFirmataEthernetPlus you will need to have an Arduino Ethernet shield
41-
(or clone).
38+
To use StandardFirmataEthernet you will need to have one of the following
39+
boards or shields:
40+
41+
- Arduino Ethernet shield (or clone)
42+
- Arduino Ethernet board (or clone)
4243
4344
Follow the instructions in the NETWORK CONFIGURATION section below to
4445
configure your particular hardware.
@@ -48,6 +49,10 @@
4849
4950
- Arduino Mega: (D4, D10, D50, D51, D52, D53)
5051
- Arduino Due: (D4, D10)
52+
- Arduino Uno or other ATMega328p boards: (D4, D10, D11, D12, D13)
53+
54+
If you are using an ArduinoEthernet board, the following pins cannot be used (same as Uno):
55+
- D4, D10, D11, D12, D13
5156
*/
5257

5358
#include <Servo.h>

0 commit comments

Comments
 (0)