From your description, it seems like the smart panel is a device that operates at a pretty low level, and doesn't understand HTTP or another common net protocol.
It may be easier for you to write the "connect to smart panel" piece in a different language if you have a better grasp of it (e.g. C, asm) than perl.
However, for the manipulating and processing part, perl's your man :-)

If you're (or wanting to be) writing files containing the panel's data, perl can easily read those in and manipulate them to your heart's content. Depending on the type of file, you could use DBI and DBD::CSV for comma delimited files, or split on some simple string or pattern.
As for graphing options, I'd recommend sitting down with the book "Programming Web Graphics with Perl and GNU Software". Despite its title, it's a good review of many of perl's graphics modules in general, and has a chapter devoted to programming graphs using gifgraph.

In reply to Re: Module Selection by boo_radley
in thread Module Selection by emcs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.