natcl / Artnet

An Art-Net library for Teensy, Arduino and ESP boards
Other
334 stars 91 forks source link

Breaks with Teensy 4.1 Native Ethernet #60

Closed isocorDev closed 2 years ago

isocorDev commented 2 years ago

I was unable to compile until I overwrote the artnet.h calls to load Ethernet.h and EthernetUDP.h to NativeEthernet.h and NativeEthernetUDP.h

`#include

include `

Perhaps including a #elif defined(TEENSY41) would solve the issue.

natcl commented 2 years ago

Thanks, will have a look !

isocorDev commented 2 years ago

You are most welcome, and really, thank you for the awesome library. I added this code and it is working great. `#elif defined(ARDUINO_TEENSY41)

include

include `

natcl commented 2 years ago

Fixed. Thanks again !