├── .cvsignore ├── AUTHORS ├── COPYING ├── CREDITS ├── ChangeLog ├── CodingStyle ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO ├── aclocal.m4 ├── ax_python_devel.m4 ├── bootstrap ├── cfg.c ├── cfg.h ├── config.guess ├── config.h.in ├── config.rpath ├── config.sub ├── configure ├── configure.ac ├── contrib └── picoLCD │ ├── lcd4linux.conf │ ├── lcd4linux.conf.mrtg │ ├── lcd4linux.conf.rss │ ├── lcd4linux.conf.rss.timers │ ├── mrtg.py │ └── rsstimer.py ├── curses.m4 ├── debug.c ├── debug.h ├── depcomp ├── drivers.m4 ├── drv.c ├── drv.h ├── drv_ASTUSB.c ├── drv_BWCT.c ├── drv_BeckmannEgle.c ├── drv_Crystalfontz.c ├── drv_Curses.c ├── drv_Cwlinux.c ├── drv_D4D.c ├── drv_EA232graphic.c ├── drv_EFN.c ├── drv_FW8888.c ├── drv_FutabaVFD.c ├── drv_G15.c ├── drv_GLCD2USB.c ├── drv_HD44780.c ├── drv_IRLCD.c ├── drv_Image.c ├── drv_LCD2USB.c ├── drv_LCDLinux.c ├── drv_LCDTerm.c ├── drv_LEDMatrix.c ├── drv_LPH7508.c ├── drv_LUIse.c ├── drv_LW_ABP.c ├── drv_M50530.c ├── drv_MatrixOrbital.c ├── drv_MatrixOrbitalGX.c ├── drv_MilfordInstruments.c ├── drv_NULL.c ├── drv_Newhaven.c ├── drv_Noritake.c ├── drv_PHAnderson.c ├── drv_PICGraphic.c ├── drv_Pertelian.c ├── drv_RouterBoard.c ├── drv_Sample.c ├── drv_SamsungSPF.c ├── drv_ShuttleVFD.c ├── drv_SimpleLCD.c ├── drv_T6963.c ├── drv_TeakLCM.c ├── drv_Trefon.c ├── drv_USBHUB.c ├── drv_USBLCD.c ├── drv_WincorNixdorf.c ├── drv_X11.c ├── drv_dpf.c ├── drv_generic.c ├── drv_generic.h ├── drv_generic_gpio.c ├── drv_generic_gpio.h ├── drv_generic_graphic.c ├── drv_generic_graphic.h ├── drv_generic_i2c.c ├── drv_generic_i2c.h ├── drv_generic_keypad.c ├── drv_generic_keypad.h ├── drv_generic_parport.c ├── drv_generic_parport.h ├── drv_generic_serial.c ├── drv_generic_serial.h ├── drv_generic_text.c ├── drv_generic_text.h ├── drv_mdm166a.c ├── drv_picoLCD.c ├── drv_picoLCDGraphic.c ├── drv_serdisplib.c ├── drv_st2205.c ├── drv_ula200.c ├── drv_vnc.c ├── evaluator.c ├── evaluator.h ├── event.c ├── event.h ├── font_6x8.h ├── font_6x8_bold.h ├── glcd2usb.h ├── hash.c ├── hash.h ├── indent.sh ├── install-sh ├── layout.c ├── layout.h ├── lcd4kde.conf ├── lcd4linux.c ├── lcd4linux.conf.sample ├── lcd4linux.kdelnk ├── lcd4linux.lsm ├── lcd4linux.xpm ├── lcd4linux_i2c.h ├── missing ├── mkinstalldirs ├── nph-png ├── pid.c ├── pid.h ├── plugin.c ├── plugin.h ├── plugin_apm.c ├── plugin_asterisk.c ├── plugin_button_exec.c ├── plugin_cfg.c ├── plugin_cpuinfo.c ├── plugin_dbus.c ├── plugin_diskstats.c ├── plugin_dvb.c ├── plugin_event.c ├── plugin_exec.c ├── plugin_fifo.c ├── plugin_file.c ├── plugin_gps.c ├── plugin_hddtemp.c ├── plugin_huawei.c ├── plugin_i2c_sensors.c ├── plugin_iconv.c ├── plugin_imon.c ├── plugin_isdn.c ├── plugin_kvv.c ├── plugin_loadavg.c ├── plugin_math.c ├── plugin_meminfo.c ├── plugin_mpd.c ├── plugin_mpris_dbus.c ├── plugin_mysql.c ├── plugin_netdev.c ├── plugin_netinfo.c ├── plugin_pop3.c ├── plugin_ppp.c ├── plugin_proc_stat.c ├── plugin_python.c ├── plugin_qnaplog.c ├── plugin_raspi.c ├── plugin_sample.c ├── plugin_seti.c ├── plugin_statfs.c ├── plugin_string.c ├── plugin_test.c ├── plugin_time.c ├── plugin_uname.c ├── plugin_uptime.c ├── plugin_w1retap.c ├── plugin_wireless.c ├── plugin_xmms.c ├── plugins.m4 ├── png.html ├── property.c ├── property.h ├── qprintf.c ├── qprintf.h ├── rgb.c ├── rgb.h ├── smoketest.sh ├── svn_version.h ├── svn_version.sh ├── thread.c ├── thread.h ├── timer.c ├── timer.h ├── timer_group.c ├── timer_group.h ├── tux.png ├── udelay.c ├── udelay.h ├── usbhub.conf ├── widget.c ├── widget.h ├── widget_bar.c ├── widget_bar.h ├── widget_gpo.c ├── widget_gpo.h ├── widget_icon.c ├── widget_icon.h ├── widget_image.c ├── widget_image.h ├── widget_keypad.c ├── widget_keypad.h ├── widget_text.c ├── widget_text.h ├── widget_timer.c └── widget_timer.h /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/.cvsignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | $Id$ 2 | $URL$ 3 | 4 | see http://lcd4linux.bulix.org for an up-to-date list of contributors! 5 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/ChangeLog -------------------------------------------------------------------------------- /CodingStyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/CodingStyle -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /ax_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/ax_python_devel.m4 -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/bootstrap -------------------------------------------------------------------------------- /cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/cfg.c -------------------------------------------------------------------------------- /cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/cfg.h -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/config.h.in -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/config.rpath -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/picoLCD/lcd4linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/contrib/picoLCD/lcd4linux.conf -------------------------------------------------------------------------------- /contrib/picoLCD/lcd4linux.conf.mrtg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/contrib/picoLCD/lcd4linux.conf.mrtg -------------------------------------------------------------------------------- /contrib/picoLCD/lcd4linux.conf.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/contrib/picoLCD/lcd4linux.conf.rss -------------------------------------------------------------------------------- /contrib/picoLCD/lcd4linux.conf.rss.timers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/contrib/picoLCD/lcd4linux.conf.rss.timers -------------------------------------------------------------------------------- /contrib/picoLCD/mrtg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/contrib/picoLCD/mrtg.py -------------------------------------------------------------------------------- /contrib/picoLCD/rsstimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/contrib/picoLCD/rsstimer.py -------------------------------------------------------------------------------- /curses.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/curses.m4 -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/debug.c -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/debug.h -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/depcomp -------------------------------------------------------------------------------- /drivers.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drivers.m4 -------------------------------------------------------------------------------- /drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv.c -------------------------------------------------------------------------------- /drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv.h -------------------------------------------------------------------------------- /drv_ASTUSB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_ASTUSB.c -------------------------------------------------------------------------------- /drv_BWCT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_BWCT.c -------------------------------------------------------------------------------- /drv_BeckmannEgle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_BeckmannEgle.c -------------------------------------------------------------------------------- /drv_Crystalfontz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Crystalfontz.c -------------------------------------------------------------------------------- /drv_Curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Curses.c -------------------------------------------------------------------------------- /drv_Cwlinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Cwlinux.c -------------------------------------------------------------------------------- /drv_D4D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_D4D.c -------------------------------------------------------------------------------- /drv_EA232graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_EA232graphic.c -------------------------------------------------------------------------------- /drv_EFN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_EFN.c -------------------------------------------------------------------------------- /drv_FW8888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_FW8888.c -------------------------------------------------------------------------------- /drv_FutabaVFD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_FutabaVFD.c -------------------------------------------------------------------------------- /drv_G15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_G15.c -------------------------------------------------------------------------------- /drv_GLCD2USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_GLCD2USB.c -------------------------------------------------------------------------------- /drv_HD44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_HD44780.c -------------------------------------------------------------------------------- /drv_IRLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_IRLCD.c -------------------------------------------------------------------------------- /drv_Image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Image.c -------------------------------------------------------------------------------- /drv_LCD2USB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LCD2USB.c -------------------------------------------------------------------------------- /drv_LCDLinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LCDLinux.c -------------------------------------------------------------------------------- /drv_LCDTerm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LCDTerm.c -------------------------------------------------------------------------------- /drv_LEDMatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LEDMatrix.c -------------------------------------------------------------------------------- /drv_LPH7508.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LPH7508.c -------------------------------------------------------------------------------- /drv_LUIse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LUIse.c -------------------------------------------------------------------------------- /drv_LW_ABP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_LW_ABP.c -------------------------------------------------------------------------------- /drv_M50530.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_M50530.c -------------------------------------------------------------------------------- /drv_MatrixOrbital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_MatrixOrbital.c -------------------------------------------------------------------------------- /drv_MatrixOrbitalGX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_MatrixOrbitalGX.c -------------------------------------------------------------------------------- /drv_MilfordInstruments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_MilfordInstruments.c -------------------------------------------------------------------------------- /drv_NULL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_NULL.c -------------------------------------------------------------------------------- /drv_Newhaven.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Newhaven.c -------------------------------------------------------------------------------- /drv_Noritake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Noritake.c -------------------------------------------------------------------------------- /drv_PHAnderson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_PHAnderson.c -------------------------------------------------------------------------------- /drv_PICGraphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_PICGraphic.c -------------------------------------------------------------------------------- /drv_Pertelian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Pertelian.c -------------------------------------------------------------------------------- /drv_RouterBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_RouterBoard.c -------------------------------------------------------------------------------- /drv_Sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Sample.c -------------------------------------------------------------------------------- /drv_SamsungSPF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_SamsungSPF.c -------------------------------------------------------------------------------- /drv_ShuttleVFD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_ShuttleVFD.c -------------------------------------------------------------------------------- /drv_SimpleLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_SimpleLCD.c -------------------------------------------------------------------------------- /drv_T6963.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_T6963.c -------------------------------------------------------------------------------- /drv_TeakLCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_TeakLCM.c -------------------------------------------------------------------------------- /drv_Trefon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_Trefon.c -------------------------------------------------------------------------------- /drv_USBHUB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_USBHUB.c -------------------------------------------------------------------------------- /drv_USBLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_USBLCD.c -------------------------------------------------------------------------------- /drv_WincorNixdorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_WincorNixdorf.c -------------------------------------------------------------------------------- /drv_X11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_X11.c -------------------------------------------------------------------------------- /drv_dpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_dpf.c -------------------------------------------------------------------------------- /drv_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic.c -------------------------------------------------------------------------------- /drv_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic.h -------------------------------------------------------------------------------- /drv_generic_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_gpio.c -------------------------------------------------------------------------------- /drv_generic_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_gpio.h -------------------------------------------------------------------------------- /drv_generic_graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_graphic.c -------------------------------------------------------------------------------- /drv_generic_graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_graphic.h -------------------------------------------------------------------------------- /drv_generic_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_i2c.c -------------------------------------------------------------------------------- /drv_generic_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_i2c.h -------------------------------------------------------------------------------- /drv_generic_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_keypad.c -------------------------------------------------------------------------------- /drv_generic_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_keypad.h -------------------------------------------------------------------------------- /drv_generic_parport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_parport.c -------------------------------------------------------------------------------- /drv_generic_parport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_parport.h -------------------------------------------------------------------------------- /drv_generic_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_serial.c -------------------------------------------------------------------------------- /drv_generic_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_serial.h -------------------------------------------------------------------------------- /drv_generic_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_text.c -------------------------------------------------------------------------------- /drv_generic_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_generic_text.h -------------------------------------------------------------------------------- /drv_mdm166a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_mdm166a.c -------------------------------------------------------------------------------- /drv_picoLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_picoLCD.c -------------------------------------------------------------------------------- /drv_picoLCDGraphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_picoLCDGraphic.c -------------------------------------------------------------------------------- /drv_serdisplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_serdisplib.c -------------------------------------------------------------------------------- /drv_st2205.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_st2205.c -------------------------------------------------------------------------------- /drv_ula200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_ula200.c -------------------------------------------------------------------------------- /drv_vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/drv_vnc.c -------------------------------------------------------------------------------- /evaluator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/evaluator.c -------------------------------------------------------------------------------- /evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/evaluator.h -------------------------------------------------------------------------------- /event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/event.c -------------------------------------------------------------------------------- /event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/event.h -------------------------------------------------------------------------------- /font_6x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/font_6x8.h -------------------------------------------------------------------------------- /font_6x8_bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/font_6x8_bold.h -------------------------------------------------------------------------------- /glcd2usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/glcd2usb.h -------------------------------------------------------------------------------- /hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/hash.c -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/hash.h -------------------------------------------------------------------------------- /indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/indent.sh -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/install-sh -------------------------------------------------------------------------------- /layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/layout.c -------------------------------------------------------------------------------- /layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/layout.h -------------------------------------------------------------------------------- /lcd4kde.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4kde.conf -------------------------------------------------------------------------------- /lcd4linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4linux.c -------------------------------------------------------------------------------- /lcd4linux.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4linux.conf.sample -------------------------------------------------------------------------------- /lcd4linux.kdelnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4linux.kdelnk -------------------------------------------------------------------------------- /lcd4linux.lsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4linux.lsm -------------------------------------------------------------------------------- /lcd4linux.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4linux.xpm -------------------------------------------------------------------------------- /lcd4linux_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/lcd4linux_i2c.h -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /nph-png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/nph-png -------------------------------------------------------------------------------- /pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/pid.c -------------------------------------------------------------------------------- /pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/pid.h -------------------------------------------------------------------------------- /plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin.c -------------------------------------------------------------------------------- /plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin.h -------------------------------------------------------------------------------- /plugin_apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_apm.c -------------------------------------------------------------------------------- /plugin_asterisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_asterisk.c -------------------------------------------------------------------------------- /plugin_button_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_button_exec.c -------------------------------------------------------------------------------- /plugin_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_cfg.c -------------------------------------------------------------------------------- /plugin_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_cpuinfo.c -------------------------------------------------------------------------------- /plugin_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_dbus.c -------------------------------------------------------------------------------- /plugin_diskstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_diskstats.c -------------------------------------------------------------------------------- /plugin_dvb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_dvb.c -------------------------------------------------------------------------------- /plugin_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_event.c -------------------------------------------------------------------------------- /plugin_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_exec.c -------------------------------------------------------------------------------- /plugin_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_fifo.c -------------------------------------------------------------------------------- /plugin_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_file.c -------------------------------------------------------------------------------- /plugin_gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_gps.c -------------------------------------------------------------------------------- /plugin_hddtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_hddtemp.c -------------------------------------------------------------------------------- /plugin_huawei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_huawei.c -------------------------------------------------------------------------------- /plugin_i2c_sensors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_i2c_sensors.c -------------------------------------------------------------------------------- /plugin_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_iconv.c -------------------------------------------------------------------------------- /plugin_imon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_imon.c -------------------------------------------------------------------------------- /plugin_isdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_isdn.c -------------------------------------------------------------------------------- /plugin_kvv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_kvv.c -------------------------------------------------------------------------------- /plugin_loadavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_loadavg.c -------------------------------------------------------------------------------- /plugin_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_math.c -------------------------------------------------------------------------------- /plugin_meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_meminfo.c -------------------------------------------------------------------------------- /plugin_mpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_mpd.c -------------------------------------------------------------------------------- /plugin_mpris_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_mpris_dbus.c -------------------------------------------------------------------------------- /plugin_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_mysql.c -------------------------------------------------------------------------------- /plugin_netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_netdev.c -------------------------------------------------------------------------------- /plugin_netinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_netinfo.c -------------------------------------------------------------------------------- /plugin_pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_pop3.c -------------------------------------------------------------------------------- /plugin_ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_ppp.c -------------------------------------------------------------------------------- /plugin_proc_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_proc_stat.c -------------------------------------------------------------------------------- /plugin_python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_python.c -------------------------------------------------------------------------------- /plugin_qnaplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_qnaplog.c -------------------------------------------------------------------------------- /plugin_raspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_raspi.c -------------------------------------------------------------------------------- /plugin_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_sample.c -------------------------------------------------------------------------------- /plugin_seti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_seti.c -------------------------------------------------------------------------------- /plugin_statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_statfs.c -------------------------------------------------------------------------------- /plugin_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_string.c -------------------------------------------------------------------------------- /plugin_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_test.c -------------------------------------------------------------------------------- /plugin_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_time.c -------------------------------------------------------------------------------- /plugin_uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_uname.c -------------------------------------------------------------------------------- /plugin_uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_uptime.c -------------------------------------------------------------------------------- /plugin_w1retap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_w1retap.c -------------------------------------------------------------------------------- /plugin_wireless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_wireless.c -------------------------------------------------------------------------------- /plugin_xmms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugin_xmms.c -------------------------------------------------------------------------------- /plugins.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/plugins.m4 -------------------------------------------------------------------------------- /png.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/png.html -------------------------------------------------------------------------------- /property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/property.c -------------------------------------------------------------------------------- /property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/property.h -------------------------------------------------------------------------------- /qprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/qprintf.c -------------------------------------------------------------------------------- /qprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/qprintf.h -------------------------------------------------------------------------------- /rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/rgb.c -------------------------------------------------------------------------------- /rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/rgb.h -------------------------------------------------------------------------------- /smoketest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/smoketest.sh -------------------------------------------------------------------------------- /svn_version.h: -------------------------------------------------------------------------------- 1 | #define SVN_VERSION "1193" 2 | -------------------------------------------------------------------------------- /svn_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/svn_version.sh -------------------------------------------------------------------------------- /thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/thread.c -------------------------------------------------------------------------------- /thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/thread.h -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/timer.h -------------------------------------------------------------------------------- /timer_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/timer_group.c -------------------------------------------------------------------------------- /timer_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/timer_group.h -------------------------------------------------------------------------------- /tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/tux.png -------------------------------------------------------------------------------- /udelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/udelay.c -------------------------------------------------------------------------------- /udelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/udelay.h -------------------------------------------------------------------------------- /usbhub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/usbhub.conf -------------------------------------------------------------------------------- /widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget.c -------------------------------------------------------------------------------- /widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget.h -------------------------------------------------------------------------------- /widget_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_bar.c -------------------------------------------------------------------------------- /widget_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_bar.h -------------------------------------------------------------------------------- /widget_gpo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_gpo.c -------------------------------------------------------------------------------- /widget_gpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_gpo.h -------------------------------------------------------------------------------- /widget_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_icon.c -------------------------------------------------------------------------------- /widget_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_icon.h -------------------------------------------------------------------------------- /widget_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_image.c -------------------------------------------------------------------------------- /widget_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_image.h -------------------------------------------------------------------------------- /widget_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_keypad.c -------------------------------------------------------------------------------- /widget_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_keypad.h -------------------------------------------------------------------------------- /widget_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_text.c -------------------------------------------------------------------------------- /widget_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_text.h -------------------------------------------------------------------------------- /widget_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_timer.c -------------------------------------------------------------------------------- /widget_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmccrohan/lcd4linux/HEAD/widget_timer.h --------------------------------------------------------------------------------