etc/services - sync with NetBSD-8
[minix.git] / minix / drivers / sensors / tsl2550 / README.txt
blob22577730123fa0a1739f5ced09441e83072c5f20
1 TSL2550 Driver (Ambient Light Sensor)
2 =====================================
4 Overview
5 --------
7 This is the driver for the ambient light sensor commonly found on the
8 WeatherCape expansion board for the BeagleBone.
10 Interface
11 ---------
13 This driver implements the character device interface. It supports reading
14 through /dev/tsl2550b{1,3}s39. When read from, it returns a string containing
15 a data label, a colon, and the sensor value.
17 Example output of `cat /dev/tsl2550b3s39`:
19 ILLUMINANCE     : 830
21 Illuminance is expressed in lux. Valid values are 0 to 1846.
23 Limitations
24 -----------
26 Extended mode isn't implemented. Normal mode should be sufficient for most
27 applications.
29 Testing the Code
30 ----------------
32 The driver should have been started by a script in /etc/rc.capes/ If not,
33 this is how you start up an instance:
35 cd /dev && MAKEDEV tsl2550b3s39
36 /sbin/minix-service up /service/tsl2550 -label tsl2550.3.39 \
37         -dev /dev/tsl2550b3s39 -args 'bus=3 address=0x39'
39 Getting the sensor value:
41 cat /dev/tsl2550b3s39
43 Killing an instance:
45 /sbin/minix-service down tsl2550.3.39