You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
658 B
26 lines
658 B
// Stencil.ino -- rename first and update this title
|
|
// Empty file you can use if the WittyLib.zip has been loaded with Arduino libs
|
|
// Cut and paste what you use:
|
|
// #include "Witty.h" SetupWitty();
|
|
// #include "GetPush.h" need Witty.h
|
|
// #include "Telec.h" need Witty.h
|
|
// #include "Apa102.h" SetupApa102();
|
|
// #include "Inter2.h" SetupInter2(); application dependant
|
|
// #include "Pfm.h" SetupPfm();
|
|
// #include "TerSer.h" SetupTerSer();
|
|
// #include "I2Ctwi.h" SetupI2Ctwi();
|
|
// SetupGy521(); need I2Ctwi.h
|
|
|
|
#include "Witty.h"
|
|
// global variables and functions
|
|
|
|
void setup() {
|
|
SetupWitty();
|
|
|
|
}
|
|
|
|
void loop() {
|
|
|
|
|
|
}
|