1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
This is a "plugin" for the Video Disk Recorder (VDR).
Written by : Andreas Brachold <vdr07 AT deltab de>
Project's homepage: http://projects.vdr-developer.org/wiki/plg-imonlcd
This iMON LCD plugin for VDR is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as published
by the Free Software Foundation, version 3 of the License.
This iMON LCD plugin for VDR is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with this iMON LCD plugin for VDR. If not, see <http://www.gnu.org/licenses/>.
See the file COPYING for license information.
Description:
------------
imonlcd is a plugin for the Video Disc Recorder and shows information
about the current state of VDR on iMON LCD.
Install LIRC kernel module lirc_imon:
-------------------------------------
You need installed kernel module lirc_imon installed to use the iMon LCD.
This module are provided by LIRC (which will also allow you to use the IR
receiver that is built into the screen).
Other software like LCDproc should not be used, it could locking the
device access.
Install LIRC
A newer or current CVS version of LIRC is required for support of the iMON LCD.
You need to have the CVS client installed and then you can issue the following
commands:
#> cvs -d:pserver:anonymous@lirc.cvs.sourceforge.net:/cvsroot/lirc login
#> cvs -z8 -d:pserver:anonymous@lirc.cvs.sourceforge.net:/cvsroot/lirc co lirc
#> cd lirc
#> ./autogen.sh
#> ./setup.sh
If you have any errors at this point, make sure you've installed all the
prerequisite build tools. At this you'll be at the "setup" menu for LIRC.
You'll need to choose "Driver Configuration" then
"USB Devices" then "Soundgraph iMON IR/LCD".
Choose OK, then "Save configuration & run configure" to run the configure script.
Once that finishes, run the following commands to install the modules:
#> make
#> make install
#> modprobe lirc_imon
At this point, you've got LIRC installed, and you might like to take some time
to set up your remote (if you've got one).
That step is outside the scope of these instructions, so I'll just skip that
and move on to install vdr-plugin-imonlcd now.
Install vdr-plugin-imonlcd:
---------------------------
Unpack the vdr-plugin-imonlcd tarball to $VDRSOURCE/PLUGINS/src directory
#> cd /usr/local/src/vdr/PLUGINS/src
#> tar -xzvf vdr-imonlcd-0.0.1.tgz
#> ln -s imonlcd-0.0.1 imon
Compile the plugin (from VDR's source directory)
#> cd /usr/local/src/vdr/PLUGINS/src
#> make plugins
#> make install
Check follow requirements
-------------------------
* module lirc_imon is loaded
* /dev/lcd0 still exits
* /dev/lcd0 are writable
* To determine need protocol to communicate with LCD, known values
0038 - For LCD with ID 15c2:0038 SoundGraph Inc (default)
ffdc - For LCD with ID 15c2:ffdc SoundGraph Inc
#> lsusb | grep 15c2
Bus 002 Device 002: ID 15c2:0038 SoundGraph Inc.
or by udev
#> udevinfo -a -n /dev/lcd0 \
| grep -2 'ATTRS{idVendor}=="15c2"' \
| grep ATTRS{idProduct} | cut -d '=' -f 3
"0038"
Start VDR with the plugin.
---------------------------
You have to specify the device and protocol of your display in the config file
on the command line.
Possible options are:
-d DEV, --device=DEV sets the lcd-device to other device than /dev/lcd0
-p MODE, --protocol=MODE sets the protocol of lcd-device
0038 - For LCD with ID 15c2:0038 SoundGraph Inc (default)
ffdc - For LCD with ID 15c2:ffdc SoundGraph Inc
Examples:
vdr -P'imonlcd'
vdr -P'imonlcd -d /dev/lcd0 -p ffdc'
Plugin SVDRP commands
---------------------
* HELP - List known commands
* OFF - Suspend driver of display.
* ON - Resume driver of display.
* ICON [name] [on|off|auto] - Force state of icon.
Use this commands like follow samples
#> svdrpsend.pl PLUG imonlcd OFF
220 vdr SVDRP VideoDiskRecorder ....
250 driver suspended
221 vdr closing connection
#> svdrpsend.pl PLUG imonlcd HELP ICON
214-ICON [name] [on|off|auto]
214- Force state of icon. Names of icons are:
214- Music,Movie,Photo,DVD,TopTV,Web,News
...
This commands can have follow responses
OFF : 250 driver suspended
251 driver already suspended
ON : 250 driver resumed
251 driver already resumed
554 driver could not resumed
ICON : 250 icon state 'auto'
251 icon state 'on'
252 icon state 'off'
* 501 unknown command
|