@@ -17,4 +17,4 @@ Unfortunatley the way this is currently designed is to have `pyCommsLib.cpp` and
Once you have the two files, when you open your main .ino file through the arduino ide, you should see two new tabs with the .cpp and .h files. This mean you have included the files correctly.
On the main .ino file, you can simply write `#include "pyCommsLib.h` at the top which will make the functions available. There are variables you will need to define and specific ways to call the send/recive functions but this is currently most easily followed by looking at the example in `pyComms/pyComms.ino`.
\ No newline at end of file
On the main .ino file, you can simply write `#include "pyCommsLib.h"` at the top which will make the functions available. There are variables you will need to define and specific ways to call the send/recive functions but this is currently most easily followed by looking at the example in `pyComms/pyComms.ino`.