LTlib LaurTec Library  4.0.3
Open Source C Library for Microchip Microcontrollers based on XC8 Compiler
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
main.c
Go to the documentation of this file.
1 
2 #include <xc.h>
3 
4 #include <LTlib.h>
5 
6 #include <LTlib_delay.h>
7 #include <LTlib_delay.c>
8 
9 #include <module_IO.h>
10 #include <module_IO.c>
11 
12 #include <module_ADC.h>
13 #include <module_ADC.c>
14 
15 #include <LCD_44780.h>
16 #include <LCD_44780.c>
17 
18 // Tested on Freedom II evaluation board
19 
20 int main (void){
21 
23 
24  LCD_initialize(20);
25 
26  while(1){
27  LCD_home();
28  LCD_write_message("Value : ");
30  }
31 }