homebridge-tasmota-control 0.3.45 → 0.3.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+ ## [0.3.46] - (17.01.2022)
7
+ ## Changes
8
+ - update dependencies
6
9
 
7
10
  ## [0.3.45] - (29.12.2021)
8
11
  ## Changs
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Grzegorz
3
+ Copyright (c) 2022 Grzegorz Kaczor
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -23,6 +23,14 @@ Homebridge plugin for Tasmota flashed devices.
23
23
 
24
24
  ## Note
25
25
  * Right now only switch/outlets devices are supported.
26
+ * Tested with latest Tasmota 10.1.0
27
+
28
+ ## Troubleshooting
29
+ * If for some reason the device is not displayed in HomeKit app try this procedure:
30
+ * Go to `./homebridge/persist`.
31
+ * Remove `AccessoryInfo.xxx` file which contain Your device data: `{"displayName":"Tasmota"}`.
32
+ * Next remove `IdentifierCashe.xxx` file with same name as `AccessoryInfo.xxx`.
33
+ * Restart Homebridge and try add it to the Home app again.
26
34
 
27
35
  ## Configuration
28
36
  Install and use [Homebridge Config UI X](https://github.com/oznu/homebridge-config-ui-x/wiki) plugin to configure this plugin (Highly Recommended). The sample configuration can be edited and used manually as an alternative. See the `sample-config.json` file in this repository for an example or copy the example below into your config.json file, making the apporpriate changes before saving it. Be sure to always make a backup copy of your config.json file before making any changes to it.
@@ -70,7 +78,7 @@ Each accessory needs to be manually paired.
70
78
  5. Enter the Homebridge PIN or scan the QR code, this can be found in Homebridge UI or Homebridge logs.
71
79
  6. Complete the accessory setup.
72
80
 
73
- ## [What's New](https://github.com/grzegorz914/homebridge-tasmota-control/blob/master/CHANGELOG.md)
81
+ ## [What's New](https://github.com/grzegorz914/homebridge-tasmota-control/blob/master/CHANGELOG.md).
74
82
 
75
83
  ## Development
76
84
  * Pull request and help in development highly appreciated.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "0.3.45",
4
+ "version": "0.3.46",
5
5
  "description": "Homebridge plugin (https://github.com/homebridge/homebridge) to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",