https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 4273de8f2bdbdd8888981db134d8b8f970fecfe5 authored by a1ex on 29 July 2014, 11:11:39 UTC
Close branch recursive-lock-fix-eosm
Tip revision: 4273de8
hello.c
/*
@title Hello, World!
@param n Pics to take
@range n 0 5
*/

printf("Hello from PicoC!\n");

sleep(2);

for (int i = 0; i < n; i++)
{
    printf("Taking pic %d of %d...\n", i+1, n);
    sleep(1);
    takepic();
}

printf("Done :)\n");
back to top