natnatroswell22
Well-Known Member
Yah basically you're working with digital packets and when you read the data you're getting it in an already parsed fashion with the particle electron.
https://docs.particle.io/guide/getting-started/examples/electron/
Search that page for "Particle.function" that basically registers a web hook so when you make a web request to a particle API it triggers the C++ function on the particle board and passes it a complete string payload of what was sent to the web request. After you check the string coming into the function you can send the appropriate PWM signals or possibly use I2C or sbus or a serial connection to the FC (I'm not familiar with what FCs expect in terms of control signals for navigation but the electron is pretty versatile).
Exactly thank you for the brief explanation sir i learned from you