MicroCore
MicroCore copied to clipboard
A light-weight Arduino hardware package for ATtiny13
**Hi,** While developing a small ATtiny13 based servo motor control, I found out that `delayMicroseconds` fails to compile with non constant argument! ``` void setup() { delayMicroseconds(1000); // compiles with...
This PR add an OLED I2C display example. This example was tested on the following board with ATtiny13 inserted.  This board image is taken from https://www.iot-experiments.com/attiny85-development-board/ for reference purposes....
Hi there guys :) Tonight I've encountered a strange behavior. PB0 manipulation works OK in setup, but after one INT0 interrupt (in which I equal an unsigned long variable to...
It's almost ready for a new release, but before we do that I want to give the user the ability to use timer0 with millis(). This will most likely load...
My work on MicroCore begins with my typical timing accuracy improvements 😋 I touched most of the clocks and improved the multiplication. I also changed the comments so you can...
I have modified part of the code for adding support for the Attiny10 and Attiny9. There is lot of limit (32 byte ram, 8 bit analog resolution, only 3 I/O...
Hi, Maybe someone may help me but for now it looks like there is a bug in microcore for attiny13. I am trying to handle external interrupt INT0 for detecting...
I am getting the following error while uploading a sketch: avrdude: Yikes! Invalid device signature. Double check connections and try again, or use -F to override this check.
Hi Hans, I maintain a lot of arduino libraries and now got the request to support ATmega8. Therfore I was forced to use your package. For my CI I use...
I'm trying to use pulseIn at attiny13a while at attiny85 has working with same code but there have problem when uploading the sketch with code "sg=pulseIn(2,HIGH);" //at attiny85 its work...