Skip to content

Instantly share code, notes, and snippets.

View i0annis's full-sized avatar
📚
Busy learning...

i0annis

📚
Busy learning...
View GitHub Profile
@i0annis
i0annis / GT9110_overlay.dts
Created February 23, 2021 15:48
Device Tree overlay for GT9110 touch driver on Raspberry Pi
// Device tree overlay for Goodix GT9110 touch controller
// connected to Raspberry Pi via I2C on GPIO pins.
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2835", "brcm,bcm2836", "brcm,bcm2708", "brcm,bcm2709";
fragment@0 {
target = <&gpio>; // Overlay for GPIO pins, using standard 'gpio' node
@i0annis
i0annis / Bash Commands
Last active November 6, 2019 17:06
Just some notes on Bash...
################################################################################################
# #
# ******** Welcome to my notes on Bash Commands and Scripting ******** #
# #
# Here you will find a list of commonly used commands and a brief explanation of what they do. #
# The purpose of these notes are to remind the use of the commands, rather than to teach. If #
# you need more information type "man " before each command in the terminal. There are many #
# sources online you can find also. #
# #
################################################################################################