thomasfredericks / MicroOsc

MicroOsc is a minimal Open Sound Control (OSC) library for Arduino
MIT License
16 stars 2 forks source link

Arduino UNO (SMD) - D4 as Output and OSC is not working? #11

Closed joschy3D closed 4 months ago

joschy3D commented 4 months ago

Hello, don't know if this belongs to the OSC library, but I found some strange behavior. Setup is an Arduino UNO with an Ethernet shield Rev. 2. When I use the D4 Pin for digital output, nothing works.

int addressPins[] = {2, 3, 5, 6}; -> works

int addressPins[] = {2, 3, 4, 5}; -> don't work

for (int j = 0; j <= 3; j++) { pinMode(addressPins[j], OUTPUT); }

cheers

thomasfredericks commented 4 months ago

MicroOscdoes not configure any pins or any Ethernet devices. You should ask your questions to the developers of the hardware in question.

Closing this issue.