Skip to content

Commit 1dd0da7

Browse files
committed
v0.2.0
1 parent 666631e commit 1dd0da7

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# ArduinoShrink
22
This library replaces Arduino AVR Core functions with smaller and faster versions.
3-
For example, the Blink example sketch built for the Uno is 284 bytes smaller with ArduinoShrink.
3+
For example, the Blink example sketch built for the Uno takes 924 bytes of flash, but only needs 196 bytes with ArduinoShrink.
44

55
## Usage
66
Select ArduinoShrink from the Sketch, Include Library menu. This will replace pinMode, digitalWrite, and digitalRead with much smaller and faster versions. The Arduino pin number must be known at compile time if you are using this library.
77

8+
## Limitations
9+
ArduinoShrink implements a simple millis timer, but does not implement micros.
10+
811
## Development plans
9-
Future versions will include replacements for millis() and delay().
12+
Future versions will include support for 8Mhz clock rate.

library.properties

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=ArduinoShrink
2+
version=0.2.0
3+
author=Ralph Doncaster
4+
maintainer=
5+
sentence=
6+
paragraph=
7+
url=
8+
architectures=avr
9+
dot_a_linkage=true

0 commit comments

Comments
 (0)