diff --git a/README.md b/README.md index 72cb750..4556a13 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,26 @@ 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](./img/circuit.svg) + +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. diff --git a/img/circuit.svg b/img/circuit.svg new file mode 100644 index 0000000..c0d0f00 --- /dev/null +++ b/img/circuit.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + D0 + D1 + D2 + D3 + D4 + D5 + D6 + D7 + EN + R/W + RS + GND + V0 + VDD + + + + + + HD44780 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3V3 + GPIO2 + GPIO3 + GPIO4 + GND + GPIO17 + GPIO27 + GPIO22 + 3V3 + GPIO10 + GPIO9 + GPIO11 + GND + ID_SD + GPIO5 + GPIO6 + GPIO13 + GPIO19 + GPIO26 + GND + 5V0 + 5V0 + GND + GPIO14 + GPIO15 + GPIO18 + GND + GPIO23 + GPIO24 + GND + GPIO25 + GPIO8 + GPIO7 + ID_SC + GND + GPIO12 + GND + GPIO16 + GPIO20 + GPIO21 + + + + + \ No newline at end of file