CNAP

Franzininho Reference

An ATtiny85-based open-hardware board from the Brazilian maker community — a minimal, low-pin-count alternative to the Uno for simple projects.

Pin names

Pin IDLabelSignalNotes
PB0PB0 / MOSI / SDASPI / I²C
PB1PB1 / MISOSPI
PB2PB2 / SCK / SCLSPI / I²C
PB3PB3Analog
PB4PB4Analog
PB5PB5 (RESET)AnalogAlso the board reset pin
VINVINPowerExternal power input
VCCVCCPower5V power (two pins)
GNDGNDPowerGround (two pins)

Attributes

This component has no configurable attributes.

Usage

With only 5 usable GPIOs (PB0PB4, since PB5 doubles as reset), the Franzininho suits small single-purpose sketches rather than multi-peripheral projects.

void setup() {
  pinMode(PB0, OUTPUT);
}

void loop() {
  digitalWrite(PB0, HIGH);
  delay(500);
  digitalWrite(PB0, LOW);
  delay(500);
}

Examples

DescriptionAttrs
Default board{}

See also