&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / ircon / Index.pm
1 # $Id$
2 # Main page of 'My::Project::ircon'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::ircon::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"IRCon",
32                 "platform"=>"unixuser",
33                 "priority"=>580,
34                 "icon"=>"ircon-icon.jpeg",
35                 "download"=>"ircon.tar.gz",
36                 "link-index of scanned images"=>"ircon-img/",
37                 "download-all scanned images"=>"ircon-img.tar",
38                 "summary"=>"InfraRed remote control hardware",
39                 "license"=>"PD",
40                 "maintenance"=>sub { return "obsolete-Superseded by ".a_href('http://www.lirc.org/','LIRC'); },
41                 "language"=>"C, Java",
42                 "description"=><<"HERE",
43 <p>Software package for custom simple hardware connected to PC parallel port
44 and transmitting infrared singals to fake real remote TV/video controllers. Hardware
45 is also equipped with receiver which is only used during development to grab and decode
46 original signals.</p>
47 HERE
48                 );
49
50 sub handler
51 {
52 project::Lib->init();
53
54
55 print <<"HERE";
56 <p>Package consists of:</p>
57 <ul>
58 <li>Linux kernel module implementing <code>/dev/ircon</code> device as hardware interface</li>
59 <li>Daemon to provide service for easy remote use over network</li>
60 <li>Multifunction decoder for singal analysis</li>
61 <li>Database of all the buttons (<strong>including some secret!</strong>) for supported devices</li>
62 <li>Set of CGIs for WWW interface operation support</li>
63 <li>Java 1.0 applet for more comforable WWW control from remote (not required, static HTML used if Java not available)</li>
64 <li>Software for complete tune-up of Maspro SRE-100R as set in text database (not useful, see last notice)</li>
65 </ul>
66 <p>Currently supported/decoded devices:</p>
67 <ul>
68 <li><a href="ircon-img/Panasonic-NV-HD650EE-1.png">Panasonic NV-HD650EE video</a>
69     <a href="ircon-img/Panasonic-NV-HD650EE-2.png">(in opened state)</a></li>
70 <li><a href="ircon-img/Korting-TV.png">Korting television</a></li>
71 <li><a href="ircon-img/AIWA-PX-E80.png">AIWA PX-E80 audio tower(?)</a></li>
72 <li><a href="ircon-img/Maspro-SRE-100R-SAC-90.png">Maspro SRE-100R satellite receiver/SAC-90 positioner</a></li>
73 <li><a href="ircon-img/Toshiba-V-800SZ.png">Toshiba V-800SZ video</a></li>
74 <li><a href="ircon-img/Sharp-VL-N1S.png">Sharp VL-N1S handy video camera</a></li>
75 </ul>
76 <p>Last code touches were done in summer 1997 and it's not in use for now. In fact the hardware
77 should be more intelligent and generate the signal itself as PC hardware simply is too slow to keep up strictly
78 with the original frequencies and so in about 1 of 30 button presses it misses. Due to this the automatic Maspro
79 tuning software (generating hundreds of button presses) is not usable.</p>
80
81 @{[ centerimg
82                 ['ircon-parport-small.jpeg','Parallel Port Adapter',"a_href_img"=>'ircon-parport.jpeg'],
83                 ['ircon-led-small.jpeg','Remote LED Transmitter',"a_href_img"=>'ircon-led.jpeg']
84                 ]}
85 HERE
86
87
88 exit;
89 }
90 1;