diff --git a/hauptbahnhof/hauptbahnhof.py b/hauptbahnhof/hauptbahnhof.py
index f668b48014316be43ba5c8808c3027cdd2c9ef41..d5639ce8b553d3b277cf4e693c9af27873eeaa55 100644
--- a/hauptbahnhof/hauptbahnhof.py
+++ b/hauptbahnhof/hauptbahnhof.py
@@ -75,15 +75,16 @@ class Hauptbahnhof:
             self.loop.cancel()
             raise
         await self.connected.wait()
-        self.log.info("Successfully connected to %s", self._config['host'])
 
+        self.log.info("Successfully connected to %s", self._config['host'])
         for topic in self._subscriptions:
             mqtt.subscribe(topic)
 
+        self._mqtt = mqtt
         while self._mqtt_queue:
             topic, msg = self._mqtt_queue.pop(0)
             self.log.debug("Topic: %s", topic)
-            await self._mqtt.publish(topic, msg)
+            self._mqtt.publish(topic, msg)
 
         # Now we have mqtt available!
         self._mqtt = mqtt
diff --git a/rupprecht/rupprecht.py b/rupprecht/rupprecht.py
index 9fd94fc9693e81a196db48e67ffe5394282eb60a..07768d3d2ca81de8c75ea928a7d82555bf1ea8b6 100644
--- a/rupprecht/rupprecht.py
+++ b/rupprecht/rupprecht.py
@@ -34,16 +34,19 @@ class Rupprecht:
         self.space_is_open = False
 
         try:
-            r = RupprechtInterface("/dev/ttyACM0")
+            self.rupprecht = RupprechtInterface("/dev/ttyACM0")
         except serial.SerialException:
-            r = RupprechtInterface("/tmp/rupprechtemulator")
+            self.rupprecht = RupprechtInterface("/tmp/rupprechtemulator")
 
-        r.subscribe_button(self.button_message)
+        self.rupprecht.subscribe_button(self.button_message)
 
         self.imposed_ids = {
-            'rupprecht-table': rcswitch.Quigg1000(code=1337, subaddr=1, rupprecht=r),
-            'rupprecht-alarm': rcswitch.Quigg1000(code=1337, subaddr=2, rupprecht=r),
-            'rupprecht-fan': rcswitch.Quigg1000(code=1337, subaddr=3, rupprecht=r)
+            'rupprecht-table': rcswitch.Quigg1000(code=1337, subaddr=1,
+                                                  rupprecht=self.rupprecht),
+            'rupprecht-alarm': rcswitch.Quigg1000(code=1337, subaddr=2,
+                                                  rupprecht=self.rupprecht),
+            'rupprecht-fan': rcswitch.Quigg1000(code=1337, subaddr=3,
+                                                rupprecht=self.rupprecht)
         }
 
     async def teardown(self):
@@ -65,9 +68,11 @@ class Rupprecht:
         if msg['open'] and not self.space_is_open:
             self.space_is_open = True
             await self.hbf.publish('/haspa/status', json.dumps({'haspa':'open'}))
+            self.rupprecht.text("Status: Open")
         elif not msg['open'] and self.space_is_open:
             self.space_is_open = False
             await self.hbf.publish('/haspa/status', json.dumps({'haspa':'closed'}))
+            self.rupprecht.text("Status: Closed")
 
 class RupprechtInterface:
     class SerialProtocol(asyncio.Protocol):