Skip to content

Instantly share code, notes, and snippets.

View schomakers's full-sized avatar

Andre schomakers

  • Hanover, Germany
View GitHub Profile
@MalcolmMielle
MalcolmMielle / IMURPYKalmanFilter.py
Last active July 3, 2024 09:18
Kalman filter to calculate roll pitch yaw. Based on the BaseKalman in KalmanFilter.py
def convert_acc(acc):
"""Convert raw accelerometer measurements in roll pitch yaw
https://stackoverflow.com/questions/3755059/3d-accelerometer-calculate-the-orientation
The yaw equation comes from here https://robotics.stackexchange.com/questions/14305/yaw-from-accelerometer-no-so-what-do-these-equations-actually-mean
If you have a magnetometer check out https://habr.com/en/post/499190/
Args:
acc (np.array): Array containing the three raw measurements on the accelerometer along
x, y, z
Returns:
@andrebrait
andrebrait / keychron_linux.md
Last active April 1, 2025 17:10
Keychron keyboards on Linux + Bluetooth fixes

Here is the best setup (I think so :D) for K-series Keychron keyboards on Linux.

Note: many newer Keychron keyboards use QMK as firmware and most tips here do not apply to them. Maybe the ones related to Bluetooth can be useful, but everything related to Apple's keyboard module (hid_apple) on Linux, won't work. As far as I know, all QMK-based boards use the hid_generic module instead. Examples of QMK-based boards are: Q, Q-Pro, V, K-Pro, etc.

Most of these commands have been tested on Ubuntu 20.04 and should also work on most Debian-based distributions. If a command happens not to work for you, take a look in the comment section.

Make Fn + F-keys work (NOT FOR QMK-BASED BOARDS)

Older Keychron keyboards (those not based on QMK) use the hid_apple driver on Linux, even in the Windows/Android mode, both in Bluetooth and Wired modes.