Hi laser people,
i am C++ programmer and newbe in laser
i work with ether dream to control my laser by ILDA with macboook pro.
everything is working but i don't understand why i have ro create a loop as a exemple as that >>
if i don't do this while loop my laser is flashing
this loop cause trouble on my soft display interface.
they are programmer is the room to help me
thanks

while (1) {
fill_circle((float)i / 50);
int res = etherdream_write(d, circle, CIRCLE_POINTS, 30000, 1);
if (res != 0) {
printf("write %d\n", res);
}
etherdream_wait_for_ready(d);
i++;
}