This shows you the differences between two versions of the page.
|
ubitx:rotary [2019/09/06 09:53] f4ija created |
ubitx:rotary [2019/09/15 22:25] (current) f4ija |
||
|---|---|---|---|
| Line 5: | Line 5: | ||
| Let's try it ! | Let's try it ! | ||
| + | |||
| + | After installation, it's working quite well but I don't have any reference beetween the standard one. By hand, it seems that it's more fluid for the movement. We'll see on long term ! | ||
| + | |||
| + | I wired it like explained on the standard uBitx schematics, and it seems that it's inverted in the encoder clockwise. | ||
| + | |||
| + | So, instead of unsoldering it (which was not that easy to solder the first time), I decided to change the pinout in the firwmare (KD8CEC firmware) in the file ubitx.h on line 214. | ||
| + | |||
| + | Before : | ||
| + | |||
| + | <code> | ||
| + | #define ENC_A (A0) | ||
| + | #define ENC_B (A1) | ||
| + | </code> | ||
| + | |||
| + | After : | ||
| + | |||
| + | <code> | ||
| + | #define ENC_A (A1) | ||
| + | #define ENC_B (A0) | ||
| + | </code> | ||
| + | |||
| + | No it's working fine. | ||