Leyk lightener application for raspberry pi and piface module.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516171819 |
- #!/usr/bin/env python
- # -*- coding: UTF-8 -*-
-
- import report
-
- secret = b'give_a_secret_string_here'
- server_ip = '127.0.0.1'
- server_port = 10001
-
- # Logging
- #
- APP_NAME = 'leyk'
- LOGTARGET = 'stdout'
- LOGLVL = 'DEBUG'
-
- LOGHOST = 'localhost'
- LOGPORT = 19996
-
- formatter = report.LONG_FMT
|