I want to write a C++ app that will send three different IR signals to a device on a preset interval. I have a basic idea of how to write this, but I can’t seem to find the documentation about how to get my code to interact with the FlipperZero’s hardware. Can someone point me in that direction? I’m thinking about storing the IR values in arrays then calling on them like this
while (true) {
sendIRSignal(red);
sleep(900000); // Sleep for 15 minutes (900000 milliseconds)
sendIRSignal(purp);
sleep(900000);
sendIRSignal(pink);
sleep(900000);
}