diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-10-10 18:53:02 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-10-10 19:07:26 +0200 |
commit | f4d736112b64933c1849d16072575f665ca9f4c1 (patch) | |
tree | fe444d5a446016397753ba684008d2340ccd83f7 /data/templates/lcd | |
parent | 1786246655c36e932be649a29d70cca6c9a29773 (diff) | |
download | vyos-1x-f4d736112b64933c1849d16072575f665ca9f4c1.tar.gz vyos-1x-f4d736112b64933c1849d16072575f665ca9f4c1.zip |
lcd: T2564: add support for hd44780 displays
(cherry picked from commit 4218a5bcb1093108e25d4e07fa07050b4f79d3d5)
Diffstat (limited to 'data/templates/lcd')
-rw-r--r-- | data/templates/lcd/LCDd.conf.tmpl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/data/templates/lcd/LCDd.conf.tmpl b/data/templates/lcd/LCDd.conf.tmpl index 6cf6a440f..2c7ad920f 100644 --- a/data/templates/lcd/LCDd.conf.tmpl +++ b/data/templates/lcd/LCDd.conf.tmpl @@ -53,6 +53,8 @@ DriverPath=/usr/lib/x86_64-linux-gnu/lcdproc/ Driver=CFontzPacket {% elif model == 'sdec' %} Driver=sdeclcd +{% elif model == 'hd44780' %} +Driver=hd44780 {% endif %} {% endif %} @@ -128,5 +130,10 @@ USB=yes ## SDEC driver for Lanner, Watchguard, Sophos sppliances ## [sdeclcd] # No options +{% elif model == 'hd44780' %} +[hd44780] +ConnectionType=ezio +Device={{ device }} +Size=16x2 {% endif %} {% endif %} |