Initial upload

This commit is contained in:
shrkey
2016-10-09 18:40:35 +01:00
parent 74f650a336
commit 5534c9472e
35 changed files with 3239 additions and 0 deletions

9
examples/Servo/Makefile Normal file
View File

@@ -0,0 +1,9 @@
CC = g++
DW = ../../darkwater
INCLUDES = -I ../..
all:
$(CC) $(INCLUDES) Servo.cpp $(DW)/PCA9685.cpp $(DW)/I2Cdev.cpp $(DW)/gpio.cpp $(DW)/Util.cpp -o Servo
clean:
rm Servo