"Good idea, easy to implement. Add a cheap red LED (based on GaAs, voltage drop about 1.6 V) and a resistor to a GPIO pin."

No need even for that on a Pi. In my RPi::WiringPi, I use a couple of command line commands to manipulate the power and disk I/O LEDs so that a user can identify by eye which Pi is the one currently being worked on (this was a user request I implemented). Since this is a Perl forum, I've left the CLI commands within the actual code itself. Essentially, the identify routine turns the power LED off completely, and turns the disk IO LED on solid. Using these LEDs to set them to non-standard configuration could easily indicate a problem with custom software.

sub io_led { my ($self, $tweak) = @_; if ($tweak){ # stop disk activity from operating the green LED `echo none | sudo tee /sys/class/leds/led0/trigger`; # turn on the green LED full-time `echo 1 | sudo tee /sys/class/leds/led0/brightness`; } else { # turn off the green LED from being on full-time `echo 0 | sudo tee /sys/class/leds/led0/brightness`; # start disk activity operating the green LED `echo mmc0 | sudo tee /sys/class/leds/led0/trigger`; } } sub pwr_led { my ($self, $tweak) = @_; if ($tweak){ # turn off the red power LED `echo 0 | sudo tee /sys/class/leds/led1/brightness`; } else { # restore default power LED operation `echo input | sudo tee /sys/class/leds/led1/trigger`; } }

In reply to Re^3: Continuous or timed? by stevieb
in thread Continuous or timed? by Bod

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.