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.

26 lines
522B

  1. # -*- coding: utf-8 -*-
  2. """
  3. maxcul.signals
  4. ~~~~~~~~~~~~~~~~~~~~~~
  5. Hooks into communication with Moritz hardware
  6. :copyright: (c) 2014 by Markus Ullmann.
  7. :license: BSD, see LICENSE for more details.
  8. """
  9. # environment constants
  10. # python imports
  11. # environment imports
  12. from blinker import signal
  13. # custom imports
  14. # local constants
  15. device_pair_request = signal('device_pair_request')
  16. device_pair_accepted = signal('device_pair_accepted')
  17. thermostatstate_received = signal('thermostatstate_received')