Leyk lightener application for raspberry pi and piface module.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

leyk.py 519B

1234567891011121314151617
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. import config
  4. import os
  5. import report
  6. import tcp_socket
  7. import protocol
  8. import time
  9. if __name__ == '__main__':
  10. report.appLoggingConfigure(os.path.dirname(__file__), config.LOGTARGET, ((config.APP_NAME, config.LOGLVL), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT)
  11. s = tcp_socket.tcp_server_stp(config.server_ip, port=config.server_port)
  12. prot = protocol.my_server_protocol(s, secret=config.secret)
  13. while True:
  14. time.sleep(0.1)