led(4freebsd)


NAME

     led --- API for manipulating LED's, lamps and other annunciators

SYNOPSIS

     #include <dev/led/led.h>

     typedef void led_t(void *priv, int onoff);

     struct cdev *
     led_create_state(led_t *func, void *priv, char const *name, int state);

     struct cdev *
     led_create(led_t *func, void *priv, char const *name);

     void
     led_destroy(struct cdev *);

DESCRIPTION

     The led driver provides generic support for handling LEDs, lamps and
     other annunciators.

     The hardware driver must supply a function to turn the annunciator on and
     off and the device name of the annunciator relative to /dev/led/.  The
     priv argument is passed back to this on/off function and can be used
     however the hardware driver sees fit.

     The lamp can be controlled by opening and writing ASCII strings to the
     /dev/led/bla device.

     In the following, we will use this special notation to indicate the
     resulting output of the annunciator:

       *       The annunciator is on for 1/10th second.
       _       The annunciator is off for 1/10th second.

     State can be set directly, and since the change happens immediately, it
     is possible to flash the annunciator with very short periods and
     synchronize it with program events.  It should be noted that there is a
     non-trivial overhead, so this may not be usable for benchmarking or
     measuring short intervals.

       0       Turn the annunciator off immediately.
       1       Turn the annunciator on immediately.

     Flashing can be set with a given period.  The pattern continues
     endlessly.

       f       _*
       f1      _*
       f2      __**
       f3      ___***
       ...
       f9      _________*********

     Three high-level commands are available:

       d%d     Numbers.  Each digit is blinked out at 1/10th second, zero
               as ten pulses.  Between digits a one second pause and after
               the last digit a two second pause after which the sequence
               is repeated.

       s%s     String.  This gives full control over the annunciator.
               Letters 'A' ... 'J' turn the annunciator on for from 1/10th
               to one full second.  Letters 'a' ... 'j' turn the
               annunciator off for 1/10th to one full second.  Letters 'u'
               and 'U' turn the annunciator off and on respectively when
               the next UTC second starts.  Unless terminated with a '.',
               the sequence is immediately repeated.

       m%s     Morse.

                     '.'     becomes '_*'
                     '-'     becomes '_***'
                     ' '     becomes '__'
                     '\n'    becomes '____'

     The sequence is repeated after a one second pause.

FILES

     /dev/led/*

EXAMPLES

     A 'd12' flashes the lamp

       *__________*_*______________________________

     A 'sAaAbBa' flashes

       *_*__**_

     /usr/bin/morse -l "Soekris rocks" > /dev/led/error

SEE ALSO

     morse(6)

HISTORY

     The led driver first appeared in FreeBSD 5.2.

AUTHORS

     This software was written by Poul-Henning Kamp phk@FreeBSD.org.

     This manual page was written by Sergey A. Osokin osa@FreeBSD.org and
     Poul-Henning Kamp phk@FreeBSD.org.





Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.