https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: f9afc03ab8d9de52cb37e053adf4f5a7b2d097ec authored by a1ex on 18 July 2014, 05:09:05 UTC
Close branch fullres-silent-pics-50d
Tip revision: f9afc03
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