Skip to content

Instantly share code, notes, and snippets.

@michaellin
Created December 1, 2015 04:39
Show Gist options
  • Save michaellin/9a891a9ab2ec936ba115 to your computer and use it in GitHub Desktop.
Save michaellin/9a891a9ab2ec936ba115 to your computer and use it in GitHub Desktop.
#ifndef Mod2_H
#define Mod2_H
#include <stdint.h>
#include <stdbool.h>
void LCD_HWInit(void);
void LCD_Init(void);
void LCD_WriteCommand4(uint8_t NewData);
void LCD_WriteCommand8(uint8_t NewData);
void LCD_WriteData8(uint8_t NewData);
void LCD_BlueLEDOff( void );
void LCD_BlueLEDOn( void );
void LCD_RedLEDOff( void );
void LCD_RedLEDOn( void );
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment