2013-08-22 17:22:01 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Start-up script for the BeagleBone Weather cape.
|
|
|
|
|
|
|
|
# TSL2550 Ambient Light Sensor
|
|
|
|
test -e /dev/tsl2550b3s39 || (cd /dev && MAKEDEV tsl2550b3s39)
|
2014-07-29 20:29:57 +02:00
|
|
|
/bin/service up /service/tsl2550 -dev /dev/tsl2550b3s39 \
|
2013-08-22 17:22:01 +02:00
|
|
|
-label tsl2550.3.39 -args 'bus=3 address=0x39' && echo -n " tsl2550"
|
|
|
|
|
|
|
|
# SHT21 Temperature and Humidity Sensor
|
|
|
|
test -e /dev/sht21b3s40 || (cd /dev && MAKEDEV sht21b3s40)
|
2014-07-29 20:29:57 +02:00
|
|
|
/bin/service up /service/sht21 -dev /dev/sht21b3s40 \
|
2013-08-22 17:22:01 +02:00
|
|
|
-label sht21.3.40 -args 'bus=3 address=0x40' && echo -n " sht21"
|
|
|
|
|
|
|
|
# BMP085 Temperature and Pressure Sensor
|
|
|
|
test -e /dev/bmp085b3s77 || (cd /dev && MAKEDEV bmp085b3s77)
|
2014-07-29 20:29:57 +02:00
|
|
|
/bin/service up /service/bmp085 -dev /dev/bmp085b3s77 \
|
2013-08-22 17:22:01 +02:00
|
|
|
-label bmp085.3.77 -args 'bus=3 address=0x77' && echo -n " bmp085"
|
|
|
|
|
2013-08-26 04:07:42 +02:00
|
|
|
daemonize tcpd http /usr/share/beaglebone/weather/weatherstation.lua
|