Display_Avr_3/hdlc_screen/LCD/lcd_headers.h
2024-02-22 17:16:03 +03:00

26 lines
445 B
C

/*
* lcd_headers.h
*
* Created: 22.02.2024 15:16:19
* Author: 79513
*/
#ifndef LCD_HEADERS_H_
#define LCD_HEADERS_H_
#include <avr/io.h>
#include <util/delay.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <compat/twi.h>
#include <inttypes.h>
#include <avr/pgmspace.h>
#include <avr/interrupt.h>
#include <stdio.h>
#include "lcdpcf8574.h"
#include "pcf8574.h"
#include "i2cmaster.h"
#endif /* LCD_HEADERS_H_ */