Find a file
2022-06-15 21:14:10 +02:00
img update readme 2022-06-15 21:13:04 +02:00
src driver now kinda works 2022-06-15 18:26:46 +02:00
.gitignore first commit (probably doesnt work) 2022-06-06 21:59:25 +02:00
install.sh added open/release syscalls 2022-06-07 16:00:49 +02:00
LICENSE Create LICENSE 2022-06-07 16:04:53 +02:00
Makefile driver now kinda works 2022-06-15 18:26:46 +02:00
pins.txt added basic pin config for lcd screen 2022-06-10 19:07:50 +02:00
README.md update readme 2022-06-15 21:14:10 +02:00
unload.sh first commit (probably doesnt work) 2022-06-06 21:59:25 +02:00

LCD Driver

This is eventually gonna be a kernel module capable of sending text to a connected LCD display. The communication would be happening via device file /dev/lcd

Installing the module creates the device /dev/lcd used for sending text to the screen. The LCD display is turned on by opening the file for writing. A string of characters has to be ended with \n in order to appear on the display.

This is the circuit I used to drive my screen:

Circuit Diagram

This is also the default pin layout used by the driver. If you want to use a different pin layout, you can change the driver's config as such:

sudo ./install.sh pin_name=pin_number ...

where pin_name is one of the following:

  • pin_power
  • pin_rs
  • pin_rw
  • pin_enable
  • pin_data

and pin_number is the GPIO pin number. For pin_data you need to supply a comma-separated list of four numbers.

How to build

Good luck.

How to use

Probably better to just not use it.