mqtt.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import paho.mqtt.client as mqtt
  2. import json
  3. import time
  4. def create_client(broker:str, port:int, username:str, password:str)-> mqtt:
  5. """_summary_
  6. Args:
  7. broker (str): _description_
  8. port (int): _description_
  9. username (str): _description_
  10. password (str): _description_
  11. Returns:
  12. mqtt: _description_
  13. """
  14. # Device-specific information for multiple sensors
  15. node_id = "floppy_player" # Unique device ID
  16. # Define discovery and state topics for each sensor
  17. discovery_topic_disc = f"homeassistant/sensor/floppy_player/current_disc/config"
  18. state_topic_disc = f"homeassistant/sensor/floppy_player/current_disc/state"
  19. discovery_topic_status = f"homeassistant/sensor/floppy_player/status/config"
  20. state_topic_status = f"homeassistant/sensor/floppy_player/status/state"
  21. # Sensor 1: current_disc (a text-based sensor)
  22. disc_config = {
  23. "name": "Current Disc",
  24. "state_topic": state_topic_disc,
  25. "value_template": "{{ value }}", # Textual value
  26. "unique_id": f"{node_id}_current_disc",
  27. "device": {
  28. "identifiers": [node_id],
  29. "name": node_id,
  30. "model": "v1",
  31. "manufacturer": "Karl"
  32. }
  33. }
  34. # Sensor 2: status (another text-based sensor)
  35. status_config = {
  36. "name": "Device Status",
  37. "state_topic": state_topic_status,
  38. "value_template": "{{ value }}", # Textual value
  39. "unique_id": f"{node_id}_status",
  40. "device": {
  41. "identifiers": [node_id],
  42. "name": node_id,
  43. "model": "v1",
  44. "manufacturer": "Karl"
  45. }
  46. }
  47. # # Create a function to handle connection
  48. # def on_connect(client, userdata, flags, rc):
  49. # if rc == 0:
  50. # print("Connected to broker")
  51. # # Publish device configuration for both sensors
  52. # client.publish(discovery_topic_disc, json.dumps(disc_config), retain=True)
  53. # client.publish(discovery_topic_status, json.dumps(status_config), retain=True)
  54. # else:
  55. # print(f"Connection failed with code {rc}")
  56. # Create a new MQTT client instance
  57. client = mqtt.Client()
  58. # Set username and password
  59. client.username_pw_set(username, password)
  60. # # Assign the on_connect function
  61. # client.on_connect = on_connect
  62. # Connect to the MQTT broker
  63. client.connect(broker, port, 60)
  64. return client
  65. def create_config(client:mqtt)->None:
  66. """Create Home Assistant discovery topics
  67. Args:
  68. client (mqtt): MQTT Client
  69. """
  70. # Device-specific information for multiple sensors
  71. node_id = "floppy_player" # Unique device ID
  72. # Define discovery and state topics for each sensor
  73. discovery_topic_disc = f"homeassistant/sensor/floppy_player/current_disc/config"
  74. state_topic_disc = f"homeassistant/sensor/floppy_player/current_disc/state"
  75. discovery_topic_status = f"homeassistant/sensor/floppy_player/status/config"
  76. state_topic_status = f"homeassistant/sensor/floppy_player/status/state"
  77. # Sensor 1: current_disc (a text-based sensor)
  78. disc_config = {
  79. "name": "Current Disc",
  80. "state_topic": state_topic_disc,
  81. "value_template": "{{ value }}", # Textual value
  82. "unique_id": f"{node_id}_current_disc",
  83. "device": {
  84. "identifiers": [node_id],
  85. "name": "Floppy Player",
  86. "model": "v1",
  87. "manufacturer": "Karl"
  88. }
  89. }
  90. # Sensor 2: status (another text-based sensor)
  91. status_config = {
  92. "name": "Device Status",
  93. "state_topic": state_topic_status,
  94. "value_template": "{{ value }}", # Textual value
  95. "unique_id": f"{node_id}_status",
  96. "device": {
  97. "identifiers": [node_id],
  98. "name": "Floppy Player",
  99. "model": "v1",
  100. "manufacturer": "Karl"
  101. }
  102. }
  103. client.publish(discovery_topic_disc, json.dumps(disc_config), retain=True)
  104. client.publish(discovery_topic_status, json.dumps(status_config), retain=True)
  105. def update_disc(client:mqtt, disc_message:dict)->None:
  106. """Update current disc.
  107. Args:
  108. client (mqtt): MQTT Client
  109. disc_message (dict): Current disc information
  110. """
  111. client.publish("homeassistant/sensor/floppy_player/current_disc/state", json.dumps(disc_message))
  112. print(f"Published current disc: {disc_message}")
  113. def control_player(client:mqtt, state:str)->None:
  114. """Control the player
  115. Args:
  116. client (mqtt): MQTT Client
  117. state (str): Player State
  118. """
  119. client.publish("homeassistant/sensor/floppy_player/status/state", state)
  120. print(f"Published status: {state}")