Note: This page refers to a product that is retired.
The Arduino Gemma is a microcontroller board made by Adafruit based on the ATtiny85. It has 3 digital input/output pins (of which 2 can be used as PWM outputs and 1 as analog input), an 8 MHz resonator, a micro USB connection, a JST connector for a 3.7V battery, and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a battery to get started.
You can find your board warranty information here.
In the Getting Started section, you can find all the information you need to configure your board, use the Arduino Software (IDE), and start to tinker with coding and electronics.
Arduino Gemma is open-source hardware! You can build your own board using the following files:
The Arduino Gemma can be powered via the micro USB connection or with a 3.7V Li-Ion battery (connected to the JST connector on the board). Either power source is regulated down to the operating voltage (3.3V) by the on-board MIC5225.
The board can be turned on and off with the on-board switch. With the switch in the ON position, the microcontroller receives power and the board runs. With the switch in the "OFF" position, the microcontroller doesn't receive power. (This is true whether the board is powered via USB or a battery.)
Half of the pads on the Gemma are related to power in and out: 3Vo , Vout and GND. The power pins are as follows:
The ATtiny85 has 8 kB (with 2.75 kB used for the bootloader). It also has 512 Bytes of SRAM and 512 Bytes of EEPROM (which can be read and written with the EEPROM library).
Each of the 3 digital I/O pins on the Arduino Gemma can be used as an input or output, usingpinMode(), digitalWrite(), and digitalRead() functions. They operate at 3.3V volts. Each pin can provide or receive a maximum of 20 mA and has an internal pull-up resistor (disconnected by default) of 20-50 kOhms.
In addition, some pins have specialized functions:
The Arduino Gemma doesn't support the Serial Monitor, but SoftwareSerial library allows serial communication on any of the Gemma's digital pins.
The Arduino Gemma can be programmed with the Arduino Arduino Software (IDE).
The ATtiny85 on the Gemma comes preburned with a bootloader that allows you to upload new code to it without the use of an external hardware programmer. It communicates using the AVR109 protocol.
You can also bypass the bootloader and program the microcontroller through the SPI pins. The bottom of the board has a large pad that is connected to the Reset pin, you can use it soldering a wire to it.
Note: Some computers' USB v3 ports don't recognize the Gemma's bootloader. Simply use a USB v2 port or a USB Hub in between.
The Arduino Gemma requires a physical press of the reset button before an upload. After the processor resets, the bootloader starts, remaining active for about 10 seconds.
The Arduino Gemma is a circle, approximately 27.98mm (1.1") round in diameter. The Micro USB connector extends slightly beyond this diameter. The board itself is .8mm (1/32") thick (approximately 6.5mm (1/4") including components, the tallest of which is the JST battery connector).
Microcontroller | ATtiny85 |
Operating Voltage | 3.3V |
Input Voltage | 4V-16V |
Digital I/O Pins | 3 |
PWM Channels | 2 |
Analog Input Channels | 1 |
DC Current per I/O Pin | 20 mA |
Absorption | 9 mA while running |
Flash Memory | 8 kB (ATtiny85) of which 2.75 kB used by bootloader |
SRAM | 512 Bytes (ATtiny85) |
EEPROM | 512 Bytes (ATtiny85) |
Clock Speed | 8 MHz |
LED_BUILTIN | 1 |
Diameter | 27.94 mm |