How to combine two projects

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hello community,

   

My basic question is how to combine two projects. I found a project on the internet for a display module which is working fine for my purposes. Nevertheless it is rather complex. Now i want to use this project in my original project. So I am searching for a simple way to import the display project into my original project.
Any ideas?

   

Thanks in advance,

   

Alex

0 Likes
1 Reply
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Generate (write) a ,h file with all the declarations that are needed for the modules (main()) that need the LCD.

   

Create a .c file with all the definitions and variables used by the LCD. #include the .h file in your main()

   

 

   

Bob

0 Likes