diff options
author | RossTheRoss <msattr@gmail.com> | 2019-02-22 15:19:14 +0000 |
---|---|---|
committer | RossTheRoss <msattr@gmail.com> | 2019-02-22 15:19:14 +0000 |
commit | 9ad6bbd3ac975f926755566d3224ade95361a875 (patch) | |
tree | 39357990baf2b1f11a27fb86aa416838bb56e2f3 /src | |
parent | E (diff) | |
parent | Rearrange (diff) | |
download | homework-9ad6bbd3ac975f926755566d3224ade95361a875.tar homework-9ad6bbd3ac975f926755566d3224ade95361a875.tar.gz homework-9ad6bbd3ac975f926755566d3224ade95361a875.tar.bz2 homework-9ad6bbd3ac975f926755566d3224ade95361a875.tar.lz homework-9ad6bbd3ac975f926755566d3224ade95361a875.tar.xz homework-9ad6bbd3ac975f926755566d3224ade95361a875.tar.zst homework-9ad6bbd3ac975f926755566d3224ade95361a875.zip |
Merge branch 'master' of github.com:RosstheRoss/TestingFun
Forgetting to commit is hard
Diffstat (limited to '')
-rw-r--r-- | src/Test.ino | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Test.ino b/src/Test.ino new file mode 100644 index 0000000..99e9198 --- /dev/null +++ b/src/Test.ino @@ -0,0 +1,18 @@ +/* + * Project Test + * Description: + * Author: + * Date: + */ + +// setup() runs once, when the device is first turned on. +void setup() { + // Put initialization like pinMode and begin functions here. + +} + +// loop() runs over and over again, as quickly as it can execute. +void loop() { + // The core of your code will likely live here. + +}
\ No newline at end of file |