stdd (short for "simple time display daemon") is a handy little daemon for the Raspberry PI device that can be used to display the current time.

Helmut Pozimski 2a971b6ed8 set umask to the defautl value instead of 0 8 years ago
adafruit_7segment 1fc29243d9 tried to throw an exception if the display is not available 10 years ago
config eee62b503b added a setup.py to install stdd with the distutils method and renamed the sample.conf to the final name 10 years ago
debian b02f141c26 change daemon and init script to create a separate directory for the init file so that the unpriviliged user can delete it 8 years ago
default 3318a15559 further improved the debian package build scripts 10 years ago
doc 1b531cf38e updated version number in man page, somehow I missed that 9 years ago
stddlib 2a971b6ed8 set umask to the defautl value instead of 0 8 years ago
.bzrignore 05e8135317 updated TODO 11 years ago
Changelog b02f141c26 change daemon and init script to create a separate directory for the init file so that the unpriviliged user can delete it 8 years ago
INSTALL 96a12c31d9 updated README and INSTALL 10 years ago
LICENSE 8834fb146d added minimal debian build scripts 10 years ago
MANIFEST.in 3318a15559 further improved the debian package build scripts 10 years ago
README 7e5b4158b5 this time really corrected python-pcrtl (with r) dependency 10 years ago
TODO b02f141c26 change daemon and init script to create a separate directory for the init file so that the unpriviliged user can delete it 8 years ago
setup.py b02f141c26 change daemon and init script to create a separate directory for the init file so that the unpriviliged user can delete it 8 years ago
stdd b02f141c26 change daemon and init script to create a separate directory for the init file so that the unpriviliged user can delete it 8 years ago

README

=== About ===

stdd (short for "simple time display daemon") is a handy little daemon for
the Raspberry PI device that can be used to display the current time on a
7 segment display with a HT16K33 backpack from Adafruit Industries. It
makes heavy use of the python libraries published by Adafruit to control
the display via I2C.

=== USAGE ===

see ./stdd

=== Dependencies ===

stov depends on the following software to be installed:

* python 2.7 or higher (lower 2.x versions might work but are not tested 3.x is not supported)
* python-smbus
* python-pcrtl (optional)

=== COPYING ===

see LICENSE

=== Configuration ===

HW_ADDRESS: hardware address for your display, a common value is
"0x70" use i2cdetect to find yours if it doesn't match

BLINK_COLON: define if you want the middle colon to blink, 0 = off, 1
= on

BRIGHTNESS_HIGH: value used for "high" brightness, valid values are
0-15

BRIGHTNESS_LOW: value used for "low" brightness, valid values are
0-15

SET_BRIGHTNESS_LOW: value used for "low" brightness, valid values are
0-15

SET_BRIGHTNESS_HIGH: time of the day to change the brightness from
low to high

SYSLOG_LEVEL: maximum syslog level to log, stdd uses debug, info and
error

SYSLOG_FACILITY: syslog facility to use for logging (default: user,
can also be daemon)


=== Known issues ===

None yet

=== Installation ==

see INSTALL