Skip to content

Instantly share code, notes, and snippets.

@bsantraigi
Created June 18, 2014 15:37
Show Gist options
  • Save bsantraigi/8d335ef66c0dc4a3f8a0 to your computer and use it in GitHub Desktop.
Save bsantraigi/8d335ef66c0dc4a3f8a0 to your computer and use it in GitHub Desktop.
/*
* GLCD.h
*
* Created: 6/12/2014 9:52:42 AM
* Author: [email protected]
*/
#ifndef GLCD_H_
#define GLCD_H_
void GLCD_print_char(unsigned char);
void GLCD_send_cmd(unsigned char);
void GLCD_print_string(char[]);
void init_GLCD();
void turn_off_GLCD();
void set_position_GLCD(int y);
void select_chip(int _CS);
void GLCD_print_byte(unsigned char data_byte);
void set_top_display_line(int _CS,int disp_line);
void goto_line(int x);
void GLCD_clear_screen();
void write_on_chip2();
void goto_next_line();
#endif /* GLCD_H_ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment