1
2
3
4
5
6
7
8
//this "draw" function just loops until you shut off the program
	public void draw()
	{
		arduino.digitalWrite(pin13, Arduino.HIGH);
		delay(1000);
		arduino.digitalWrite(pin13, Arduino.LOW);
		delay(1000);
	}