diff options
author | reinelt <> | 2004-06-02 05:35:55 +0000 |
---|---|---|
committer | reinelt <> | 2004-06-02 05:35:55 +0000 |
commit | 4a5682a4e9280046c53b5b5fc1c9cf7f15641686 (patch) | |
tree | 5752d67b84241bded853ffd0eeaf74239d7ddb69 | |
parent | 2e3c73e0883a2bdfa525fc6fe4e10d30971d9651 (diff) | |
download | lcd4linux-4a5682a4e9280046c53b5b5fc1c9cf7f15641686.tar.gz |
[lcd4linux @ 2004-06-02 05:35:55 by reinelt]
added i2c_sensors example to lcd4linux.conf.sample
Diffstat (limited to '')
-rw-r--r-- | lcd4linux.conf.sample | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lcd4linux.conf.sample b/lcd4linux.conf.sample index 5e92190..c8ef7ed 100644 --- a/lcd4linux.conf.sample +++ b/lcd4linux.conf.sample @@ -274,6 +274,26 @@ Widget Eth0Bar { update tack } +Widget Temp { + class 'Text' + expression i2c_sensors('temp_input3')*1.0324-67 + prefix 'Temp' + width 9 + precision 1 + align 'R' + update tick +} + +Widget TempBar { + class 'Bar' + expression i2c_sensors('temp_input3')*1.0324-67 + min 40 + max 80 + length 10 + direction 'E' + update tack +} + Widget MySQLtest1 { class 'Text' expression MySQL::query('SELECT id FROM table1') |