Skip to content

Commit

Permalink
Import legacy files
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgol committed Nov 8, 2022
1 parent 0d6914a commit 6f4fc73
Show file tree
Hide file tree
Showing 48 changed files with 13,399 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
use ExtUtils::MakeMaker;

WriteMakefile (
NAME => 'CAIWebcontrol-perl',
VERSION_FROM => 'lib/CAIWebcontrol.pm',
AUTHOR => 'James Golovich <[email protected]>',
ABSTRACT => 'CAI Webcontrol Perl Interface',
PMLIBDIRS => [ 'lib' ],
PREREQ_PM => { 'RRDs' => 0,
'Getopt::ArgvFile' => 0,
'Switch' => 0,
'XML::Simple' => 0,
'File::Slurp' => 0,
'Sort::Versions' => 0},

'dist' => {
COMPRESS => 'gzip -9f', SUFFIX => 'gz',
DIST_DEFAULT => 'tardist'
},
);
19 changes: 19 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
CAI Webcontrol Perl Modules
by James Golovich <[email protected]>

If anyone ever uses these I'll consider putting them on CPAN when it gets more advanced.

Supports:
Variable subsition in PLC code
Generating RRD graphs
Upload PLC code

I use these devices for my fermenter glycol chiller controller and walk in cooler. Example code can be found in samplecode


The latest release should be available at http://webcontrol.gnuinter.net

To install:
perl Makefile.PL
make all
make install
Loading

0 comments on commit 6f4fc73

Please sign in to comment.