JAVUINO

Em testes aqui...pisca pisca led

- Código: Selecionar todos
import muv.process.*;
/*
This example code is in the public domain.
*/
public class BlinkApp extends V8OBoard{
public void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
public void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(250); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(250); // wait for a second
}
}