22 lines
358 B
C
22 lines
358 B
C
|
|
#ifndef MYLCD_H_
|
|
#define MYLCD_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 |