Skip to content

Instantly share code, notes, and snippets.

@din0x
din0x / main.c
Created April 24, 2026 20:08
C implementation of HD44780 for AVR
#include <avr/io.h>
#include <util/delay.h>
#define LCD_RS_DIR DDRC
#define LCD_RS_PORT PORTC
#define LCD_RS (1 << 0)
#define LCD_E_DIR DDRD
#define LCD_E_PORT PORTD
#define LCD_E (1 << 7)