This truly is off-topic, but in the spirit of the question ...

If you are trying to control a 7-segment type LCD screen with say two lines of ten 7-segment characters each, then you would first need a hardware driver for the LCD and then some way to talk to the driver. Usually, those drivers can be talked to through serial-type communication, where bits are shifted in with an external clock. Since your computer only knows about RS-232 serial ports, you'd have to rig up your hardware with some kind of a processor (like the PIC uC from Microchip) and then have this processor generate the clock and shift out the bits.

On the other hand, if you are talking about a larger dot matrix type LCD screen, then the drivers become much more complicated to control (I personally have never dealt with those). Likewise, if you are interested in driving a color LCD (like a 3"x5"), then the control is even more cumbersome, however, even that can be done with PICs (two actually because the horsepower of one is not enough for both Vsynch and HSynch).

As for remote control, well, you are off into another realm of problems. Digikey sells some RF transmitters/receivers that are fairly easy (relatively speaking) to implement with a PIC, but I'm not sure if those will be able to work over 30m.

Hope this helps.


In reply to Re: Slightly OT: Control display of a portable LCD screen by gri6507
in thread OT: Control display of a portable LCD screen by mdog

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.