AB412 collective test print photos and thoughts on software

 

Finished the first test print of the head, and it looks good! Seems like it will be quite interesting from a point of software: with 3-way switches, there will be 17 buttons + 2 hat switches, and if we add a mode switch, it will triple this number. The question is, whether the master controller will be able to poll all this stuff and return values to windows without lags (in windows joysticks have weird limitations of 32 buttons, 1 hat switch and 2 7 axes per piece, so it will have to look as several joysticks to work everywhere). In the worst case scenario, it will be a semi-scale head with 2 hats, 11 buttons, 1 rotary axis and (probably) a mode switch.

Master controller software bug fix, please update

When working on a flight test video, I noticed that emergency trim release with SENS_SWITCH function had not been working properly if force trim release button was pressed (actually the case when you may need emergency trim release function most). This was just fixed, so please update your master controller software.

Download it from GitHub

Thoughts on sensitivity of controls

I have been testing new hardware more thoroughly and noticed, that different sims have very different controls sensitivity settings (and ways to adjust it).  More than that, some of the sims tend to react on even the slightest jitter from Hall effect sensors and ADC (which is really almost nonexistent), while others ignore it completely.  That means that often, there’s a need for per-sim or even per-aircraft setting.

Simchair MKIII cyclic and pedals are sensitive enough to emulate the control response of lightest and twitchiest helicopters out there. But what if you feel it is too sensitive for the particular helicopter model you want to fly? Or, maybe the sim you are flying in treats joystick sensitivity settings differently, or even doesn’t have proper controls settings at all? What if setting curves is not what you want, but your sim doesn’t have any linear sensitivity adjustment options?

Continue reading “Thoughts on sensitivity of controls”

A better resolution for cyclic and pedals

While experimenting with adjusting controls sensitivity for different sims, I have found an interesting thing: in fact, the ADS1115 is so precise its values can be used without filtering at a 15-bit resolution! It is rather impressive 32768 points per axis. I can’t say the difference is as huge as between 8 bit and 12, but it depends on the game. For example, while I  only felt a marginal difference in DCS and X-plane, it was very noticeable in Arma 3. That’s why  I added an ADS1115_RESOLUTION constant to the master controller sketch.

You can set ADS1115 resolution like that:

#define ADS1115_RESOLUTION 15 //from 12 to 15 bits

I am now curious if changing a connection scheme of an ADC to a differential one will give even better results!

You can download an updated .ino file from GitHub.