-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from Nall-chan/patch-bridge-1
Patch bridge
- Loading branch information
Showing
8 changed files
with
762 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,103 @@ | ||
# IPS-Z2MBridge | ||
Anbindung von www.zigbee2mqtt.io an IP-Symcon. | ||
Modul für die Zigbee2MQTT Bridge | ||
# Bridge <!-- omit in toc --> | ||
Modul für alle Systemweiten Funktionen von Zigbee2MQTT | ||
|
||
Die Bridge wird aktuell NICHT benötigt. Also auch nicht anlegen! | ||
|
||
Zukünftig wird es für die Bridge neue Funktionalitäten geben. Diese werden in der BEta ausgetestet und dann in die Master übertragen. | ||
## Inhaltverzeichnis <!-- omit in toc --> | ||
- [1. Gruppen in Z2M](#1-gruppen-in-z2m) | ||
- [2. Konfiguration](#2-konfiguration) | ||
- [3. Funktionen](#3-funktionen) | ||
|
||
| | ||
## 3. Instanz-Funktionen | ||
|
||
```php | ||
bool Z2M_InstallSymconExtension(int $InstanzID); | ||
``` | ||
Die aktuelle Symcon Erweiterung wird in Z2M installiert. | ||
|
||
-- | ||
|
||
```php | ||
bool Z2M_SetLastSeen(int $InstanzID); | ||
``` | ||
Die Konfiguration der `last_seen` Einstellung in Z2M wird auf `epoch` verändert, damit die Instanzen in Symcon den Wert korrekt darstellen können. | ||
|
||
-- | ||
```php | ||
bool Z2M_SetPermitJoin(int $InstanzID, bool $PermitJoin); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_SetLogLevel(int $InstanzID, string $LogLevel); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_Restart(int $InstanzID); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_CreateGroup(int $InstanzID, string $GroupName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_DeleteGroup(int $InstanzID, string $GroupName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_RenameGroup(int $InstanzID, string $OldName, string $NewName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_AddDeviceToGroup(int $InstanzID, string $GroupName, string $DeviceName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_RemoveDeviceFromGroup(int $InstanzID, string $GroupName, string $DeviceName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_RemoveAllDevicesFromGroup(int $InstanzID, string $GroupName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_Bind(int $InstanzID, string $SourceDevice, string $TargetDevice); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_Unbind(int $InstanzID, string $SourceDevice, string $TargetDevice); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_RequestNetworkmap(int $InstanzID); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_RenameDevice(int $InstanzID, string $OldDeviceName, string $NewDeviceName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_RemoveDevice(int $InstanzID, string $DeviceName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_CheckOTAUpdate(int $InstanzID, string $DeviceName); | ||
``` | ||
|
||
-- | ||
```php | ||
bool Z2M_PerformOTAUpdate(int $InstanzID, string $DeviceName); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,25 @@ | ||
{ | ||
"translations": { | ||
"de": { | ||
"State": "Status" | ||
"Install or upgrade Symcon-Extension": "Symcon Erweiterung installieren oder updaten", | ||
"Symcon-Extension is up-to-date": "Symcon Erweiterung ist aktuell", | ||
"Set last_seen setting to epoch": "Setze die last_seen Einstellung auf epoch", | ||
"last_seen setting is correct": "last_seen Einstellung ist korrekt", | ||
"Error": "Fehler", | ||
"Warning": "Warnungen", | ||
"State": "Status", | ||
"Log Level": "Protokollierung", | ||
"Network Map": "Netzwerkkarte", | ||
"Allow joining the network": "Beitritt zum Netzwerk zulassen", | ||
"Restart Required": "Neustart erforderlich", | ||
"Perform a restart": "Neustart durchführen", | ||
"Network Channel": "Netzwerkkanal", | ||
"Extension Version": "Erweiterung Version", | ||
"Extension is up to date": "Erweiterung ist aktuell", | ||
"Wrong last_seen setting in Zigbee2MQTT. Please set last_seen to epoch.": "Falsche Einstellung für last_seen in Zigbee2MQTT. Bitte last_seen auf epoch einstellen.", | ||
"Symcon Extension in Zigbee2MQTT is outdated. Please update the extension.": "Symcon Erweiterung in Zigbee2MQTT ist veraltet. Bitte Erweiterung updaten.", | ||
"No Symcon Extension in Zigbee2MQTT installed. Please install the extension.": "Symcon Erweiterung in Zigebee2MQTT nicht installiert. Bitte die Erweiterung installieren.", | ||
"Extension Loaded": "Erweiterung geladen" | ||
} | ||
} | ||
} |
Oops, something went wrong.