Leyk lightener application for raspberry pi and piface module.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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)