aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2023-01-01 18:48:28 +0300
committerEvgeny Zinoviev <me@ch1p.io>2023-01-01 18:48:28 +0300
commite49fdedb40e0ea7dc1d67ff081b5c19718d92565 (patch)
treea6231cb1edc9732e9d1d08eae937a92edfbc554a
parent1162a9cc5393cf614654ba763ccfd0298df0765f (diff)
mqtt relay: rename home_id to device_id here and there
-rw-r--r--src/home/mqtt/relay.py8
-rwxr-xr-xtools/mcuota.py16
2 files changed, 12 insertions, 12 deletions
diff --git a/src/home/mqtt/relay.py b/src/home/mqtt/relay.py
index 2094b10..0e1725d 100644
--- a/src/home/mqtt/relay.py
+++ b/src/home/mqtt/relay.py
@@ -86,8 +86,8 @@ class MQTTRelay(MQTTBase):
except Exception as e:
self._logger.exception(str(e))
- def set_power(self, home_id, enable: bool):
- device = next(d for d in self._devices if d.id == home_id)
+ def set_power(self, device_id, enable: bool):
+ device = next(d for d in self._devices if d.id == device_id)
assert device.secret is not None, 'device secret not specified'
payload = PowerPayload(secret=device.secret,
@@ -98,11 +98,11 @@ class MQTTRelay(MQTTBase):
self._client.loop_write()
def push_ota(self,
- home_id,
+ device_id,
filename: str,
publish_callback: callable,
qos: int):
- device = next(d for d in self._devices if d.id == home_id)
+ device = next(d for d in self._devices if d.id == device_id)
assert device.secret is not None, 'device secret not specified'
self._ota_publish_callback = publish_callback
diff --git a/tools/mcuota.py b/tools/mcuota.py
index 75adf1b..f1e61a4 100755
--- a/tools/mcuota.py
+++ b/tools/mcuota.py
@@ -25,7 +25,7 @@ def guess_filename(product: str, build_target: str):
def relayctl_publish_ota(filename: str,
- home_id: str,
+ device_id: str,
home_secret: str,
qos: int):
global stop
@@ -34,10 +34,10 @@ def relayctl_publish_ota(filename: str,
global stop
stop = True
- mqtt_relay = MQTTRelay(devices=MQTTRelayDevice(id=home_id, secret=home_secret))
+ mqtt_relay = MQTTRelay(devices=MQTTRelayDevice(id=device_id, secret=home_secret))
mqtt_relay.configure_tls()
mqtt_relay.connect_and_loop(loop_forever=False)
- mqtt_relay.push_ota(home_id, filename, published, qos)
+ mqtt_relay.push_ota(device_id, filename, published, qos)
while not stop:
sleep(0.1)
mqtt_relay.disconnect()
@@ -61,7 +61,7 @@ products_dir = os.path.join(
def main():
parser = ArgumentParser()
parser.add_argument('--filename', type=str)
- parser.add_argument('--home-id', type=str, required=True)
+ parser.add_argument('--device-id', type=str, required=True)
parser.add_argument('--product', type=str, required=True)
parser.add_argument('--qos', type=int, default=1)
@@ -71,8 +71,8 @@ def main():
if arg.product not in products:
raise ValueError(f'invalid product: \'{arg.product}\' not found')
- if arg.home_id not in config['mqtt']['home_secrets']:
- raise ValueError(f'home_secret for home {arg.home_id} not found in config!')
+ if arg.device_id not in config['mqtt']['home_secrets']:
+ raise ValueError(f'home_secret for home {arg.device_id} not found in config!')
filename = arg.filename if arg.filename else guess_filename(arg.product, products[arg.product]['build_target'])
if not os.path.exists(filename):
@@ -80,13 +80,13 @@ def main():
print('Please confirm following OTA params.')
print('')
- print(f' Home ID: {arg.home_id}')
+ print(f' Device ID: {arg.device_id}')
print(f' Product: {arg.product}')
print(f'Firmware file: {filename}')
print('')
input('Press any key to continue or Ctrl+C to abort.')
- products[arg.product]['callback'](filename, arg.home_id, config['mqtt']['home_secrets'][arg.home_id], qos=arg.qos)
+ products[arg.product]['callback'](filename, arg.device_id, config['mqtt']['home_secrets'][arg.device_id], qos=arg.qos)
if __name__ == '__main__':