Build and upload the arduino-asyncudp example
developTo run the arduino-asyncudp example, you must have PlatformIO Core installed. Follow these steps:
- Install PlatformIO Core: Ensure the CLI is available in your environment.
- Download the platform: Download the development platform ZIP containing examples from the official repository.
- Extract and Navigate: Extract the archive and change your working directory to the specific example folder:
platform-espressif8266/examples/arduino-asyncudp. - Build, Upload, or Clean: Use the PlatformIO CLI (
pio) to manage the project lifecycle.
# Change directory to example
cd platform-espressif8266/examples/arduino-asyncudp
# Build project
pio run
# Upload firmware
pio run --target upload
# Clean build files
pio run --target clean