mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
15 lines
185 B
C++
15 lines
185 B
C++
#include <camera.h>
|
|
|
|
int cameraPin = 7;
|
|
camera science(cameraPin);
|
|
|
|
void setup() {
|
|
}
|
|
|
|
void loop() {
|
|
science.fullZoomIn();
|
|
delay (2000);
|
|
science.fullZoomOut();
|
|
delay(2000);
|
|
}
|