digitalWriteFast
digitalWriteFast copied to clipboard
Arduino library for faster and smaller digitalWrite(), digitalRead() and pinMode() functions using direct port manipulation for constant pin numbers.
It doesn't work on ATtiny3217 etc..
I included the library : `#include ` The code snippet below toggles a Led: ``` void lightup() { for (int i = 0; i < 10; i++) { digitalWrite(ledpin, HIGH);...
Hi, Do you accept pull requests to support other types of chip that Atmels? I found those 2 lines for rp2040: https://github.com/zoobab/digitalWriteFast-rp2040 I am also trying to find the same...