mirror of
https://github.com/robotdoly/DOLY-DIY.git
synced 2025-02-17 20:10:43 +01:00
14 lines
363 B
Markdown
14 lines
363 B
Markdown
|
|
|
|
# LcdControl Example program
|
|
|
|
### Compile example program
|
|
This example needs some static libraries and header files located under '/Doly/libs' & '/Doly/include'
|
|
Make sure you have already copy '/Doly' folder under your root directory.
|
|
|
|
```bash
|
|
g++ -L../Doly/libs -I../Doly/include -Wall -o test main.cpp -lServoMotor -lTimer -lGpio -lpthread
|
|
```
|
|
|
|
|