Automate Commanding the CubeSatSim to Change Configurations #350
Replies: 1 comment 1 reply
-
For information on how the current Command and Control works, you should review https://github.com/alanbjohnston/CubeSatSim/wiki/Command-and-Control The simplest command to send is DTMF, or tones sent by an HT radio. Right now, DTMF tones 1-5 and 10 and 11 are used to change modes and other commands. So you could pick another, such as tones 12 for your change frequency command. To activate it, you would transmit a 1 then a 2 then #. The Python code that does this in in https://github.com/alanbjohnston/CubeSatSim/blob/master/dtmf_aprs_cc.py For example, this snippet of code detects 11#:
So you could add some code such as:
Later in the code, you could detect this and call the script to change the frequency. Right now, the script I hope this is helpful to you! Alan |
Beta Was this translation helpful? Give feedback.
-
Hello, as a beginner, I am not sure where to start. What I am trying to attempt is automating a command to change the frequency from the CubeSatSim when certain parameters determine a loss of connection. If you can provide me insight in where to start looking and how I can command the CubeSat from the ground station to change its frequency that would be greatly appreciated. I am assuming that I would have to command the modulator itself. Please help me, thank you.
Beta Was this translation helpful? Give feedback.
All reactions