Search found 1 match
- Tue Jun 27, 2017 12:48 am
- Forum: Other Projects
- Topic: Shift register using ATMEGA328p
- Replies: 0
- Views: 274866
Shift register using ATMEGA328p
I want to learn more about the shiftout function used with Arduinos and used the implementation with my ATMEGA328p. Here is the date sheet of atmega328p The Setup #define F_CPU 1000000UL #define BAUD 9600UL #define LSBFIRST 0 #define MSBFIRST 1 #define HIGH 0x1 #define LOW 0x0 #define INPUT 0x0 #def...