Honmaka Astro / Mbed 2 deprecated IntervalShutter

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 DigitalOut Camera1(p30);
00004 DigitalOut Camera2(p29);
00005 
00006 int main() {
00007     while(1) {
00008         wait(3);
00009         Camera1 = 1;
00010         Camera2 = 1;
00011         wait(60);
00012         Camera1 = 0;
00013         Camera2 = 0;
00014     }
00015 }