Add files via upload

This commit is contained in:
granaa
2018-02-03 16:47:36 -08:00
committed by GitHub
parent e9691eee5f
commit 105925a263
6 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include <camera.h>
int cameraPin = 7;
camera science(cameraPin);
void setup() {
}
void loop() {
science.fullZoomIn();
delay (2000);
science.fullZoomOut();
delay(2000);
}