diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-08 19:35:22 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-08 19:35:22 +0000 |
commit | 8029d9e8c20c56b5013ff3ce2a203084e12dd638 (patch) | |
tree | 305ad5e9c770cbeb44bf0367d64b1ce1d89bf661 /usbhub.conf | |
parent | 0577f2c47263a4317a93c753f0e09269e67c06d9 (diff) | |
download | lcd4linux-8029d9e8c20c56b5013ff3ce2a203084e12dd638.tar.gz |
[lcd4linux @ 2006-08-08 19:35:21 by reinelt]
USBHUB driver from Ernst Bachmann
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@683 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'usbhub.conf')
-rw-r--r-- | usbhub.conf | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/usbhub.conf b/usbhub.conf new file mode 100644 index 0000000..0d9e8ad --- /dev/null +++ b/usbhub.conf @@ -0,0 +1,51 @@ +Variables { + tick 500 + tack 100 + minute 60000 +} + +Display SitecomHUB { + Driver 'USBHUB' + Vendor '0x04b4' + Product '0x6560' +} + +Display TyphoonHUB { + Driver 'USBHUB' + Vendor '0x0409' + Product '0x0058' +} + + +Widget GPO_Test300 { + class 'GPO' + expression 2+(1+test::onoff(1))/2 + update 300 +} +Widget GPO_Test400 { + class 'GPO' + expression 2+(1+test::onoff(2))/2 + update 400 +} +Widget GPO_Test500 { + class 'GPO' + expression 2+(1+test::onoff(3))/2 + update 500 +} +Widget GPO_Test600 { + class 'GPO' + expression 2+(1+test::onoff(4))/2 + update 600 +} + +Layout TestHUB { + GPO1 'GPO_Test300' + GPO2 'GPO_Test400' + GPO3 'GPO_Test500' + GPO4 'GPO_Test600' +} + +#Display 'SitecomHUB' +Display 'TyphoonHUB' +Layout 'TestHUB' + |