Hello everyone, it is my first post and I hope we get along very well.
I am doing an implementation where I use an interface in arduino for which I need to move my aircraft (a helicopter, anyone who selects the user of my application) forward, back and sides, I have made different queries in the forums and check a lot of documentation but I do not miss my purpose and it is to move my aircraft slowly in these four directions in slew mode, I must use slew mode to give control to my arduino.
I use the following offsets.
private Offset<byte> move_fb = new Offset<byte>(0x05EB);
private Offset<byte> move_lr = new Offset<byte>(0x05ED);
It works properly to move, but the change intervals are very high, it goes from 4.13 to 18 and a little more than 1 to 2 as input to FSUIPC, I want to increase the speed in these axes in a more controlled way, this problem does not I am presented by moving up and down with the following code:
private Offset<short> mover_ud = new Offset<short>(0x05E8);
I already reviewed from my beginner knowledge all the possible offsets that could be useful, but I have not achieved anything that comes close to my need, I think that maybe I require the use of a combination of accelerators (that can be controlled in slew mode) to be able better control the movement, but I can't find the right combination.
I am waiting for your comments and help, in advance thank you very much