Using an Arduino Micro to take a screen shot every 15 seconds to then make a stop frame video using Davinci Resolve 18
#include Keyboard.h //you need to include angle brackets before and after the filename. For some //reason google will not allow these characters
void setup() {
Keyboard.begin();
}
void loop()
{
// Set to print screen to file loaction every 1 second
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(KEY_F5);
Keyboard.releaseAll();
delay(15000);
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press(KEY_PRINT_SCREEN);
Keyboard.releaseAll();
}