### Install ArtnetWifi using PlatformIO Source: https://github.com/rstephan/artnetwifi/blob/master/README.md Install the ArtnetWifi library using the PlatformIO Core CLI. This command initializes a new project for the NodeMCUv2 board and then installs the library. ```bash pio init --board nodemcuv2 pio lib install artnetwifi ``` -------------------------------- ### ArtnetWifi Transmit Example Source: https://github.com/rstephan/artnetwifi/blob/master/README.md A simple transmitter example that sends 3 bytes of Art-Net data to create a ramp-up effect in RGB lighting. This demonstrates basic Art-Net transmission capabilities. ```c++ // This is a simple transmitter. Send 3 byte over into the Art-Net, to make a RGB light ramp-up in white. ``` -------------------------------- ### ArtnetWifi Debug Example Output Source: https://github.com/rstephan/artnetwifi/blob/master/README.md Example output from the ArtnetWifiDebug sketch, showing DMX data received over serial at 115200 baud. This output is useful for verifying basic WiFi, serial, and Art-Net communication. ```text DMX: Univ: 0, Seq: 0, Data (48): 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.