/*
Forum: https://forum.arduino.cc/t/command-line-needs-sending-by-a-keyboard/1244534/6
Wokwi: https://wokwi.com/projects/394411520212640769
*/
char command[] = "curl.exe -d \"{\"command\": \"sendCameraCommand\",\"cameras\": [\"GoPro 2281\"],\"cameraCommand\": \"startRecording\"}\" \"http://192.168.0.108:809\"";
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println(command);
}
void loop() {
delay(100);
}