Skip to content

Commit 417bafa

Browse files
authored
Update README.md
1 parent 4e8ecbd commit 417bafa

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void loop()
3737
More usages in the `examples` folder
3838

3939
## Hardware
40-
* Arduino/Genuino (Mega, Uno, Arduino Ethernet, ...)
40+
* Arduino/Genuino (Mega, Uno, Arduino Ethernet, MKRZERO, ...)
4141
* ESP8266 (Adafruit HUZZAH ESP8266, Sparkfun ESP8266 Thing Dev)
4242
* ESP32 (Adafruit HUZZAH32 – ESP32 Feather Board)
4343
* Teensy 3.2
@@ -47,11 +47,14 @@ More usages in the `examples` folder
4747
The code has been pseudo optimized to minimize the memory footprint.
4848
Internal buffers also use valuable memory space. The biggest buffer `PACKET_MAX_SIZE` is set to 350 by default in `AppleMidi_Settings.h`. Albeit this number is somewhat arbitratry (large enough to receive full SysEx messages), it can be reduced significantly if you do not have to receive large messages.
4949

50-
On an Arduino, 2 sessions can be active at once (W5100 can have max 4 sockets open at the same time, each session needs 2 UDP sockets). Setting MAX_SESSIONS to 1 saves 228 bytes (each session takes 228 bytes).
50+
On an Arduino, 2 sessions can be active at once (W5100 can have max 4 sockets open at the same time, each session needs 2 UDP sockets). Setting MAX_SESSIONS to 1 saves 228 bytes (each session takes 228 bytes).
51+
52+
Save memory (about 2000 bytes) when the device does not initiate sessions by `#undef APPLEMIDI_REMOTE_SESSIONS` in `AppleMidi_Settings.h`. See the `EthernetShield_NoteOnOffEverySec.ino` example
5153

5254
## Network Shields
53-
* Arduino Ethernet shield (arduino.cc, Wiznet W5100)
54-
* Arduino Wifi R3 shield (arduino.cc)
55+
* Arduino Ethernet shield (Wiznet W5100)
56+
* Arduino Wifi R3 shield
57+
* MKR ETH shield
5558
* Teensy WIZ820io W5200
5659

5760
## Arduino IDE (arduino.cc)

0 commit comments

Comments
 (0)