sACNSource

An Arduino Library for streaming ACN


tigoe.github.io

Library Examples

Library Commands:
sACNSource
begin
setUuid
setSourceName
setUniverse
setChannel
sendPacket
setSequenceNumber
getSequenceNumber
setSyncAddress
setOptions
readData
packetSize

This project is maintained by tigoe

sACN over Ethernet

This example shows how to send sACN from an Arduino over Ethernet. It was written with a Nano 33 IoT and a MKR Ethernet shield, as shown in Figure 1, but should work with any Arduino and any Ethernet shield that’s compatible with the Ethernet library.

Figure 1 shows the circuit. The Arduino’s SPI pins are connected to the Ethernet shield’s SPI pins. There is an additional pin used to disable the SD Card on the MKR Ethernet shield.

If you’re using a MKR board (MKR Zero, MKR1010, etc), you can just plug the shield in directly. For other boards, you’ll need to match the pins up.

The pins for the Nano 33 IoT and other Nanos is in Table 1 below. The physical pin numbers for both the Nano and the shield are counted in a U pattern, starting with pin 1 on the top left. The physical pin numbers don’t correspond to the pin labels, so the pin labels are listed in parentheses in table 1.

Note: in the circuit diagram in Figure 1, the MKR Ethernet shield is being powered by 3.3V from the Nano, rather than 5V. The shield will run off 3.3V, but it must be connected to the 5V pin, not the Vin pin if so. The Vin pin needs >5V to run the board.

Function Nano 33 IoT Physical Pin MKR Ethernet Shield Physical Pin
SDO 29 (D1) 17 (D8)
SDI 30 (D12) 19 (D10)
CS 23 (D5) 14 (D5)
SCK 1 (D13) 18 (D9)
Reset 3 (Reset) 24 (Reset)
SD Card Enable 22 (D4) 13 (D4)

Table 1. Pin connections between an Arduino Nano and the MKR Ethernet shield

The code can be found at this link.

Figure 1. Nano 33 IoT connected to a MKR Ethernet shield

Figure 1. Nano 33 IoT connected to a MKR Ethernet shield