You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<Arduino.h>voidsetup()
{
// initialize LED digital pin as an output.pinMode(LED_BUILTIN, OUTPUT);
}
voidloop()
{
// turn the LED on (HIGH is the voltage level)digitalWrite(LED_BUILTIN, HIGH);
// wait for a seconddelay(1000);
// turn the LED off by making the voltage LOWdigitalWrite(LED_BUILTIN, LOW);
// wait for a seconddelay(1000);
}
Additional info
The text was updated successfully, but these errors were encountered:
* develop:
Fix incorrect line order when converting from INO to CPP and pointer is used
Fix unit test
Notify about `version` field when creating library
Add support for SparkFun Blynk Board
Return valid exit code from ``plaformio test`` command
Disable SSL Server-Name-Indication for Python < 2.7.9
Version bump to 3.0.1 (issue #772)
Disable temporary SSL for PlatformIO services // Resolve#772
Version bump to 3.0.0 (issues #770, #766, #747, #730, #765, #640, #659, #742, #459, #542, #763, #759, #753, #757, #749, #748, #745, #519, #709, #743, #413, #498, #410, #740, #361, #414, #554, #732, #588, #475, #461, #101, #719, #721, #537, #415, #522, #289, #556, #570, #456, #617, #432, #408, #479, #667, #510)
Fix menu height for docs
Fix issue with multiple archives when linking firmware
Add migration guide for PIO2 to PIO3
Search libraries by headers/includes with ``platformio lib search --header`` option
Update pio run command examples
Add Unit Testing Demo
Update PIO Plus badge title and link
Add PlatformIO Plus badge
Add links to PlatformIO Plus
Configuration
Operating system: macOS 10.11.6
PlatformIO Version (
platformio --version
): PlatformIO, version 3.0.0a4Description of problem
After running "pio run" and "pio run -t clean" none of the object or firmware files are removed
Steps to Reproduce
Actual Results
find /tmp/pio/blink/uno/ -type f
/tmp/pio/blink/uno//firmware.elf
/tmp/pio/blink/uno//firmware.hex
/tmp/pio/blink/uno//FrameworkArduino/_wiring_pulse.o
/tmp/pio/blink/uno//FrameworkArduino/abi.o
/tmp/pio/blink/uno//FrameworkArduino/CDC.o
/tmp/pio/blink/uno//FrameworkArduino/HardwareSerial.o
/tmp/pio/blink/uno//FrameworkArduino/HardwareSerial0.o
/tmp/pio/blink/uno//FrameworkArduino/HardwareSerial1.o
/tmp/pio/blink/uno//FrameworkArduino/HardwareSerial2.o
/tmp/pio/blink/uno//FrameworkArduino/HardwareSerial3.o
/tmp/pio/blink/uno//FrameworkArduino/hooks.o
/tmp/pio/blink/uno//FrameworkArduino/IPAddress.o
/tmp/pio/blink/uno//FrameworkArduino/main.o
/tmp/pio/blink/uno//FrameworkArduino/new.o
/tmp/pio/blink/uno//FrameworkArduino/PluggableUSB.o
/tmp/pio/blink/uno//FrameworkArduino/Print.o
/tmp/pio/blink/uno//FrameworkArduino/Stream.o
/tmp/pio/blink/uno//FrameworkArduino/Tone.o
/tmp/pio/blink/uno//FrameworkArduino/USBCore.o
/tmp/pio/blink/uno//FrameworkArduino/WInterrupts.o
/tmp/pio/blink/uno//FrameworkArduino/wiring.o
/tmp/pio/blink/uno//FrameworkArduino/wiring_analog.o
/tmp/pio/blink/uno//FrameworkArduino/wiring_digital.o
/tmp/pio/blink/uno//FrameworkArduino/wiring_pulse.o
/tmp/pio/blink/uno//FrameworkArduino/wiring_shift.o
/tmp/pio/blink/uno//FrameworkArduino/WMath.o
/tmp/pio/blink/uno//FrameworkArduino/WString.o
/tmp/pio/blink/uno//libFrameworkArduino.a
/tmp/pio/blink/uno//libFrameworkArduinoVariant.a
/tmp/pio/blink/uno//src/Blink.o
Expected Results
delete compiled object files, libraries and firmware/program binaries
If problems with PlatformIO Build System:
The content of
platformio.ini
:Source file to reproduce issue:
Additional info
The text was updated successfully, but these errors were encountered: