We have 151 units in our Sydney Warehouse available for immediate dispatch.
We can get a further 100 units into Australia from Little Bird. If you order today, we can dispatch this stock between Jan 19, 2025 - Feb 05, 2025.
It has an ATtiny85 microcontroller on it so it’s actually pretty smart! You can sew on 4 LEDs and connect a battery and the LEDs will each flash at different times.
If you’re an advanced user and want to re-program the Finch, the ICSP programming connectors are broken out on the back. It's perfect for all your ATtiny wearable projects!
Includes:
- 1x Little Bird Finch - LittleTiny Board
- Input Voltage of 3V up to 6V
- ATtiny85 (datasheet) - Microcontroller
- 4 GPIO
- Sew pins
- Dimensions: 17mm (width) x 20mm (height) x 3mm (depth)
The Factory Code on the Finch is a simple flash and delay. You can get started with it, here:
void setup() {
pinMode(3, OUTPUT);
pinMode(2, OUTPUT);
pinMode(1, OUTPUT);
pinMode(0, OUTPUT);
}
void loop() {
digitalWrite(3, !digitalRead(3));
delay(250);
digitalWrite(2, !digitalRead(2));
delay(150);
digitalWrite(1, !digitalRead(1));
delay(100);
digitalWrite(0, !digitalRead(0));
delay(20);
}