https://bitbucket.org/hudson/magic-lantern
Revision 20384ecdaa80a092dfd56a54bd23ef09fd4a587e authored by a1ex on 06 August 2014, 07:31:33 UTC, committed by a1ex on 06 August 2014, 07:31:33 UTC
1 parent 2d3156b
Raw File
Tip revision: 20384ecdaa80a092dfd56a54bd23ef09fd4a587e authored by a1ex on 06 August 2014, 07:31:33 UTC
Stub tests: attempt to test CancelDateTimer
Tip revision: 20384ec
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