void setup() { Processor.setMinSpeed(); // 12MHz is plenty for a blinky! } void loop() { ledOn(BODY_RGB_RED_PIN); // Blink delay(1000); ledOff(BODY_RGB_RED_PIN); delay(300); }