PBechon

Results 14 comments of PBechon

What should this do ? This will not reset the whole arduino as the reset button does. If you need an actual Arduino reset, you can use a dedicated button...

You can call [Serial.end](https://www.arduino.cc/reference/en/language/functions/communication/serial/end/) if you need to close the connection.

I could not reproduce the error to see if the debouncing corrects it. Here is the Arduino code tested, no KSP crashed occured with KSP 1.10 and ActionGroupExtended v2.4.0.1. The...

Thanks to Theresa on Discord, we have a screenshot of it happening. There is nothing in the KSP logs but there is an on screen message appearing 'SAS Disengaged" that...

Using the save provided by Theresa, I was able to reproduce it once in 8 tries. The message seems to be the same to the one triggered when no EC...

The trim values does not seem to work with an autopilot such as the one used by Simpit. Setting the trim values using the FlightCtrlState API does not seem to...

For those that want to try, see [the diff file](https://github.com/Simpit-team/KerbalSimpitRevamped/files/8729394/patch_trim.txt) of what I tried. Following a discussion on Discord, adding trim can be done in the controller without using KSP...

Additional information after some digging. As we use different logic if AGExt is installed of not, we need to consider both cases ## If AGExt is *not* installed We call...

For the record, this is doable in Windows with the keyboard emulation.

May be done using the [GamePersistence class](https://www.kerbalspaceprogram.com/ksp/api/class_game_persistence.html) and/or [the QuickSaveLoad class](https://www.kerbalspaceprogram.com/ksp/api/class_quick_save_load.html). In particular, this seems to be handled in kos [here for quicksave](https://github.com/KSP-KOS/KOS/blob/b828220c066576e16a4aeae4c89e048ef49a9109/src/kOS/Suffixed/KUniverseValue.cs#L181-L188) and [here for quickload](https://github.com/KSP-KOS/KOS/blob/b828220c066576e16a4aeae4c89e048ef49a9109/src/kOS/Suffixed/KUniverseValue.cs#L221-L224).