Where I describe the impact of data types on math on an AVR microcontroller (ATmega328P) and pitfalls to avoid.
Introduction#
While working on the mapping entry I ran into a problem with the mapping function. The function wasn’t returning correct …
Where I describe the impact of data types on math on an AVR microcontroller (ATmega328P) and pitfalls to avoid.
While working on the mapping entry I ran into a problem with the mapping function. The function wasn’t returning correct …
This page provides a broad level of short hints and comments as to C programming and AVR programming.
From Embedded C Coding Standard Barr Group
While the entire book is outstanding, I want to call out some specific practices which I …
Where I describe the function - analogRead().
The function analogRead() is similar to digitalRead(), in the sense, it takes a pin number as a parameter and returns the pin’s value. In the case of analogRead, the value will be a number …
Where I describe the function - digitalRead().
The function digitalRead() is analogous to digitalWrite(), in the sense, it takes a pin number as a parameter and as compared to setting its value, it returns the pin’s value. The value …