50 lines
1.1 KiB
Python
Executable file
50 lines
1.1 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
# Slixmpp: The Slick XMPP Library
|
|
# Copyright (C) 2011 Dann Martens
|
|
# This file is part of Slixmpp.
|
|
# See the file LICENSE for copying permission.
|
|
|
|
from slixmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \
|
|
ANY_ALL
|
|
import threading
|
|
|
|
class Thermostat(Endpoint):
|
|
|
|
def FQN(self):
|
|
return 'thermostat'
|
|
|
|
def __init__(self, initial_temperature):
|
|
self._temperature = initial_temperature
|
|
self._event = threading.Event()
|
|
|
|
@remote
|
|
def set_temperature(self, temperature):
|
|
print("Setting temperature to %s" % temperature)
|
|
self._temperature = temperature
|
|
|
|
@remote
|
|
def get_temperature(self):
|
|
return self._temperature
|
|
|
|
@remote(False)
|
|
def release(self):
|
|
self._event.set()
|
|
|
|
def wait_for_release(self):
|
|
self._event.wait()
|
|
|
|
|
|
|
|
def main():
|
|
|
|
session = Remote.new_session('sleek@xmpp.org/rpc', '*****')
|
|
|
|
thermostat = session.new_handler(ANY_ALL, Thermostat, 18)
|
|
|
|
thermostat.wait_for_release()
|
|
|
|
session.close()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|