Just a collection of random useful code snippets
 
 
 
 
Go to file
BodgeMaster 5cc71d5ff5 finished implementation 2021-05-04 21:27:34 +02:00
external_control finished implementation 2021-05-04 21:27:34 +02:00
manual_control maybe, this issue didn't exist after all 2021-05-04 08:01:21 +02:00
LICENSE Initial commit 2021-04-28 08:01:08 +02:00
README.md added descriptions for the Arduino sketches 2021-05-04 12:01:37 +02:00
disable_laptop_lid.sh copied this from my laptop's /etc/rc.local 2021-04-28 08:05:28 +02:00
sensors.py added some comments so Panini will always know what is going on 2021-05-02 07:53:50 +02:00

README.md

RandomUsefulStuff

Just a collection of random useful code snippets (that can be used as programs on their own because why not)

Descriptions for each code snippet

disable_laptop_lid.sh

Disables laptop lid state detection in Linux by unregistering it from the driver.

Dependencies: Linux kernel, bash, sysfs filesystem mounted on /sys

sensors.py

Can be used to get the state of a hardware sensor connected to the computer.

Dependencies: lm-sensors, python3

manual_control

Arduino sketch that allows direct manual control of the pins over the serial interface. This is the older, fancier version which is only capable of controlling outputs. It has some hardcoded values that may need to be adjusted.

external_control

A less fancy but generally improved rewritten version of the manual control Arduino sketch that is more feature-packed and better suited for interaction with programs while still being usable for humans.