Arduino ATTINY85 Micro General USB Development Board.
Specifications:
Package Included:
Look at this video to see how to program the board with arduino dev application.
Processor details
You will need to install the following Board in Adiono IDE
http://digistump.com/package_digistump_index.json
Digispark Default 16.5Mhz (Plug in the board only after you have selected to upload program.
Example Code.
Blinkie switch LED on and OFF
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(0, OUTPUT);
pinMode(1, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(0, HIGH); // turn the LED on (HIGH is the voltage level)
digitalWrite(1, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(0, LOW); // turn the LED off by making the voltage LOW
digitalWrite(1, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}