Coder Social home page Coder Social logo

iobroker.tr-064's Introduction

Logo

ioBroker.tr-064

Number of Installations Number of Installations NPM version

Test and Release Translation status Downloads

This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for information how to disable the error reporting see Sentry-Plugin Documentation! Sentry reporting is used starting with js-controller 3.0.

Info

This adapter reads main information from AVM Fritz!Box, like call list or number of messages on answering machine. Based on this AVM documentations

Needed Settings in your Fritzbox:

  • You need to change the Login to "Use Username and password"
    • The maximum relevant password length for FritzBox is 32 characters! FritzBox cuts the password silently in the UI. Please make sure to enter only the 32 relevant characters in the adapter configuration
  • Create a user and allow him to "control the Fritzbox and settings"
  • Enable Application Access (on Network tab). Click flow in german: Netzwerk ->Heimnetzfreigaben -> Zugriff für Anwendungen -> aktiviert
  • If you want to use the "ring" function you need to set additional settings (see below)

Initial Creation

This adapter was initially created by @soef at https://github.com/soef/ioBroker.tr-064 but not maintained any more, so we moved it to iobroker-community so that bugs could be fixed. thanks @soef for his work.

How to migrate from tr-064-community (intermediate version and name)

If you move from tr-064-community adapters you can easily copy whole device list or settings by:

  • Go in admin to objects and enable expert mode
  • Look for an object tree which is called system.adapter.tr-064-community.0 (where 0 is the instance, if you had multiple instances select the right one)
  • On the very right of this line is a button with a pencil, click on it
  • On the window you get select "raw (experts only)" and there copy the NATIVE part of the json
  • then open system.adapter.tr-064.0 (where 0 is the instance, if you had multiple instances select the right one)
  • paste the copied native part in there in native
  • save the changes
  • start the adapter
  • check configuration if anything was restored correctly

Features

Simple states and functions

  • turn on/off wifi for 2.4GHz and 5GHz,
  • turn on/off guest wifi,
  • reboot Fritz!Box,
  • start WPS process,
  • reconnect Internet
  • external ip address

ring (dial a number)

  • When using an internal number (like **610) the ring state will let ring that internal phone. E.g.: **610[,timeout]
  • When using an external number, the ring state will connect you to the external number. The Fritz!Box will call the external number and your default phone will ring, when the called phone is picked up. The default phone can be configured in the Fritz!Box under: Telefonie/Anrufe/[Tab]Wahlhilfe/Wählhilfe verwenden . Please also make sure to choose "Verbindung mit dem Telefon ISDN- und Schnurlostelefone"

toPauseState

  • Values: ring, connect, end
  • Can be used to pause a video player on an incoming call (ring), or on pick up the phone (connect).
  • Resume can be done on the end value.

Presence

To monitor the presence of persons in your home, so to control once anyone of your family/roommate is leaving or arriving, you can use this adapter as follows:

  • Enter the Adapter options and switch to the 'Devices' tab
  • Add all devices (like smart phones) of your family/roommate members accordingly, and confirm with 'Save'.
  • For each device, the adapter will now create a folder structure under the ioBroker Objects of the adapter, typically in the folder "tr-064.0.devices"
  • Now once anyone is arriving or leaving, this adapter will get the information accordingly. For example, the state "tr-064.0.devices.xxx.active", where xxx is the device name, will indicate if the specific device is available or not, so if the person is present or not. User feedback is that this works reliable for iOS devices as well, like with iPhones. For iPhones, user feedback is that it takes up to 10 minutes until the Fritz!Box notices that a person left and is no longer connected with WiFi, and it takes up to 1 minute until the Fritz!Box will notice the presence again.

Also, a script was published by the ioBroker community which uses this adapter information to trigger actions (e.g. everyone left home, so turn off everything automatically, see number of persons currently being present, or person status in general, via VIS, etc.). See ioBroker forum thread (in German)

AB - Anrufbeantworter (answering machine)

Can be switched on/off. The state cbIndex can be set, to address # of the answering machine.

Call monitor

The call monitor will create realtime states for every inbound and outbound call. If the phone book is enabled (default), numbers will be resolved to Names There ist also a state indicating a ringing phone.

Phone book

  • The phone book, if enabled, will be used to get the name of callers phone number.
  • Further there are three states to resolve a number or a name. If available you will also get the image URL of the contact. e.g.: if you set the state phonebook.number all 3 states, name, number and image will be set to the found contact. Note, searches by name will first compare the complete name, if not found, part of is used.

Call lists

Output formats:

  • json
  • html

Call lists are:

  • all calls
  • missed calls
  • inbound calls
  • outbound calls

Call count: The call count can be set to 0. The next call will increment 1.

The html output can be configured by a template.

command & commandResult state

With the command state you can call every tr-064 command from this documentation. e.g.

command = {
    "service": "urn:dslforum-org:service:WLANConfiguration:1",
    "action": "X_AVM-DE_SetWPSConfig",
    "params": {
        "NewX_AVM-DE_WPSMode": "pbc",
        "NewX_AVM-DE_WPSClientPIN": ""
    }
};

The command state should be set to a JSON of the above Lines. So { ... } (without command = and line breaks) The callback of the call will set the commandResult state.

Here you will find an example how to switch the answering machine in the Fritzbox on and off by using the command state. For testing you can just copy & paste the string into the state tr-064.0.states.command

Switch the answering machine on: {"service": "urn:dslforum-org:service:X_AVM-DE_TAM:1","action": "SetEnable", "params": {"NewIndex": "0","NewEnable": "1"}}

Switch the answering machine off: {"service": "urn:dslforum-org:service:X_AVM-DE_TAM:1","action": "SetEnable", "params": {"NewIndex": "0","NewEnable": "0"}}

A detailed description of the actions and parameters for TAM you can find here https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/x_tam.pdf (link is contained in the AVM documentation above).

Enable call monitor

To use the call monitor feature it must be first enabled in the AVM Fritz!Box. To enable the call monitor dial #96*5* and the TCP/IP Port 1012 will be opened. To close the port dial #96*4*.

Changelog

4.3.0 (2024-04-30)

  • (mcm1957) Adapter requires node.js >= 18 and js-controller >= 5 now
  • (mcm1957) Dependencies have been updated

4.2.18 (2023-01-04)

  • (Apollon77) Prepare for future js-controller verisons

4.2.17 (2022-09-16)

  • (simatec/Apollon77) Prevent duplication of entries in configuration
  • (Apollon77) Make sure active status of devices in jsonDeviceList is correct

4.2.16 (2022-03-21)

  • (Apollon77) Fix info logs on callee/caller
  • (Apollon77) Add special handling for potential broken external image links in phonebook
  • (Apollon77) Prevent some crash cases reported by Sentry

4.2.15 (2021-12-08)

  • (bluefox) fix crash case (Sentry IOBROKER-TR-064-35)

License

The MIT License (MIT)

Copyright (c) 2023-2024 ioBroker Community Developers [email protected]
Copyright (c) 2015-2023 soef [email protected], ioBroker-Community-Developers

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

iobroker.tr-064's People

Contributors

apollon77 avatar arteck avatar bazidibavaria avatar dependabot-preview[bot] avatar dependabot[bot] avatar dimaindahood avatar feurer98 avatar foxriver76 avatar germanbluefox avatar greenkeeper[bot] avatar hurdurderp avatar jey-cee avatar jogibear9988 avatar johnnybyzhang avatar ldittmar81 avatar maag-da avatar maeb3 avatar mcm1957 avatar medjaiiii avatar mic-m avatar mobilutz avatar paul53 avatar petervoronov avatar simatec avatar slix185 avatar sneak-l8 avatar soef avatar tquakulinsky avatar unclesamswiss avatar wuzlwuz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iobroker.tr-064's Issues

forEachConfiguredDevice: in GetSpecificHostEntry 4(/xx:xx:A8:xx:4A):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}

From @Michaelnorge on August 14, 2018 17:21

I have a problem with tr-064 together with ioBroker and FRITZ!Box 7430.

I started using it a while ago and it did its job,
But now since I started to control the guest-network (online/offline-control) ioBroker shows that error all over:forEachConfiguredDevice: in GetSpecificHostEntry 4(/xx:xx:A8:xx:4A):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500} - after getting this error tr-064 is not updating anymore on guest network.

I searched on Google and found a lot of people with the same problem.

So my suggestion is that it will be enough for me to see if somebody IS online on guest network or NOT.
So like true (1) or false (0).

It will be wunderfull if that is shown at the objects of ioBroker.

Is it maybe possible to change that??

Greetings fm Norway/Germany

Michael

Copied from original issue: soef/ioBroker.tr-064#76

Kein Eintrag in inboung Callername & Caller

Beim Community Adapter werden die Datenpunkte .../inbound/caller und Callername nicht ausgefüllt, beim derzeit parallel laufenden NonCommunity werden diese wie gewohnt angegeben.
inbound_tr064
Die Instanz vom alten Adapter hatte ich nur zum Vergleich parallel mitlaufen lassen, auch wenn dieser aus ist ist der Fehler beim Community Adapter der gleiche.
2inbound_tr064_community

Steuersequenz nach Pause an Türsprechanlage

From @hammond23 on August 22, 2018 7:40

Hallo,

wäre es möglich, über eine weitere Funktion (ringcontrol) folgendes zu realisieren:

Anruf an ein internes Telefon (in diesem Fall Türsprechanlage an Fon2), kurz warten (-P), dann Steuersequenz senden:

Wahlstring: **2 -P **0#

**2 wählt die Türsprechanlage an
-P ist eine Pause (wenn möglich einstellbar 1 ... 10 sec)
**0# ist die Steuersequenz

Dann wäre es z.B möglich, die Türsprechanlage nach dem Verlassen des Hauses über eine Anwesenheitserkennung automatisch auf Externruf um- und beim Betreten des Hauses wieder
auf Internruf zu stellen.

Grüße und Danke

Copied from original issue: soef/ioBroker.tr-064#78

Adapter stürzt mit TypeError ab.

From @threedee on January 12, 2018 21:58

In meinen Logs tauchen Neustarts des Adapters auf. Ich denke mal er wird versucht auf ein Object zu zugreifen welches es nicht gibt.
Ich bekomme folgende Fehlermeldung:
`

host.iobroker 2018-01-12 22:00:12.679 error instance system.adapter.tr-064.0 terminated with code 0 (OK)
Caught 2018-01-12 22:00:12.679 error by controller[0]: at Socket.emit (events.js:188:7)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at emitOne (events.js:96:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Socket.socketErrorListener (_http_client.js:310:9)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at ClientRequest.emit (events.js:188:7)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at emitOne (events.js:96:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Request.onRequestError (/opt/iobroker/node_modules/iobroker.tr-064/node_modules/request/request.js:878:8)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Request.emit (events.js:188:7)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at emitOne (events.js:96:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at self.callback (/opt/iobroker/node_modules/iobroker.tr-064/node_modules/request/request.js:186:22)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Request._callback (/opt/iobroker/node_modules/iobroker.tr-064/node_modules/tr-O64/lib/Service.js:273:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at args.(anonymous function) (/opt/iobroker/node_modules/iobroker.tr-064/lib/deflections.js:58:39)
Caught 2018-01-12 22:00:12.676 error by controller[0]: TypeError: Cannot convert undefined or null to object
tr-064.0 2018-01-12 22:00:12.665 info terminating

`

Copied from original issue: soef/ioBroker.tr-064#59

Error Code=500

From @Charlyphyro on January 28, 2017 12:12

Hallo soef,
Hab ein error im log mit der version 0.1.31. Was nun anders ist, ich hab das Update meiner fritzbox 7490 auf 06.80 geupdatet. Seit dem kommt diese Fehlermeldung im IoB
error code=500 sendSOAPActionRequest Error action=GetInfo serviceType=urn:dslforum-org:service:WLANConfiguration:1: 500

Hoffe das hilft dir einwenig.
Viele Grüße Charly

Copied from original issue: soef/ioBroker.tr-064#19

Anrufe in Abwesenheit zählen

From @bakes0815 on March 10, 2018 17:22

Gibt es die Möglichkeit Anrufe in Abwesenheit zu zählen auch wenn der AB drann geht und nicht draufgesprochen wird?
Der Datenpunkt calllists.missed.count zählt leider nur Anrufe bei denen der AB nicht drann geht.

Copied from original issue: soef/ioBroker.tr-064#69

Think about to fix the issues found by adapter checker

I am an automatic service that looks for possible errors in ioBroker and creates an issue for it. The link below leads directly to the test:

https://adapter-check.iobroker.in/?q=https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.tr-064-community

  • [E114] No adapter are allowed in the repo without admin3 support
  • [E201] Bluefox was not found in the collaborators on NPM!. Please execute in adapter directory: "npm owner add bluefox iobroker.tr-064-community"
  • [E301] Tests on Travis-ci.org are broken. Please fix.
  • [E802] No topics found in the repository. Please go to "https://github.com/iobroker-community-adapters/ioBroker.tr-064-community" and press "Manage topics"

I have also found warnings that may be fixed if possible.

  • [W113] Adapter should support compact mode
  • [W400] Cannot find "tr-064-community" in latest repository

Thanks,
your automatic adapter checker.

FritzBox Gastnetz Fehlermeldung

(In der Soef Version:)
Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}

und zwar NUR von den Geräten, die im Gäste-Wlan der FritzBox 7560 NICHT mehr angemeldet sind.
Sind diese Geräte wieder angemeldet, dann keine Fehlermeldung.
Von Geräten im "normalen" Netzwerk erfolgt keine Fehlermeldung.

Wäre super, wenn Ihr bei der Überarbeitung diesen Fehler fixen würdet.

Changelog

From @dna909 on November 22, 2017 11:42

Hallo soef,

könntest Du bitte das Changelog auf den aktuellen Stand bringen.

Danke.

Gruß

dna909

Copied from original issue: soef/ioBroker.tr-064#50

Tr-064 lässt sich nur für jeweils 5 Sekunden starten

Der Adapter lässt sich jeweils nur ca. 5 Sekunden starten, dann wechselt die Farbe von Grün auf Rot und im Log erscheint folgendes:
TR064

Bereits versucht:
-Anderen FritzBox-User nutzen (keine Änderung)
-FritzBox Neustart (keine Änderung)

  • Upnp Einstellung Fritzbox geprüft
    -IoBroker Neustart (keine Änderung)
    -ioBroker Installation "Fixer" (keine Änderung)
    -Ping Fritzbox - (keine Änderung aber erfolgreich)
    -Alten Soef-Adapter installiert, cd /opt/iobroker/
    iobroker stop tr-064
    cd /opt/iobroker/node_modules/iobroker.tr-064
    npm install soef
    durchgeführt (keine Änderung)

Datenpunkt Geräte Name ändert sich

From @Scrounger on March 1, 2019 15:59

@soef:
Ich habe das Problem, dass der hinterlegte Name für Gerät sich nach einer gweissen Zeit ändert.
Bsp:
grafik
Folgender Name ist eingestellt für mein Handy. Es wird vom Adapter ein Obejkt "tr-064.0.devices.MotoG6" angelegt. Nach einer gewissen Zeit, wenn sich der Name in der FB ändert, erstellt der Adapter ein neues Obejkt z.B. in "tr-064.0.devices.Android" um. Problem ist das meine Anwesenheitserkennung dann nicht mehr funktioniert.

Einen festen Namen in der FB zu vergeben geht nicht, weil ich ein spezielle Config habe. Blöderweise kann man seit Android 8 auch nicht mehr den Namen im Handy direkt vergeben, so dass ich das Problem lösen könnte.

Meine Bitte wäre deshalb, dass der Adapter immer den unter Einstellung Gerät hinterlegten Namen verwendet oder z.B. fix die Mac oder IP Adresse als Obejkt Namen verwendet.

Könntest du das bitte entsprechend anpassen?

Copied from original issue: soef/ioBroker.tr-064#91

Connection after update Fritz!Box

Habe heute morgen meine Fritz!Box 7490 von v7.01 auf v7.11 geupdated.
Danach diese Fehlermeldungen:

2019-06-21 06:48:07.857 - error: tr-064.0 forEachConfiguredDevice: in GetSpecificHostEntry 2(Netbook/00:26:9E:05:BD:F1):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 404 - {"code":404}

2019-06-21 06:48:07.872 - error: tr-064.0 forEachConfiguredDevice: in GetSpecificHostEntry 3(ioBroker-RasPi/B8:27:EB:51:BC:5D):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 404 - {"code":404}
2019-06-21 06:48:07.886 - error: tr-064.0 forEachConfiguredDevice: in GetSpecificHostEntry 4(Tab3/20:D3:90:DB:4E:9F):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 404 - {"code":404}
2019-06-21 06:48:07.900 - error: tr-064.0 forEachConfiguredDevice: in GetSpecificHostEntry 5(Broadlink-RMPROPLUS/B4:43:0D:C7:37:AD):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 404 - {"code":404}
2019-06-21 06:48:07.914 - error: tr-064.0 forEachConfiguredDevice: in GetSpecificHostEntry 6(Broadlink-A1/34:EA:34:B2:AA:59):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 404 - {"code":404}
2019-06-21 06:48:07.926 - error: tr-064.0 forEachConfiguredDevice: in GetSpecificHostEntry 7(Morpheus/38:10:D5:5A:F0:99):Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 404 - {"code":404}

Habe dann mal die Box nochmal neu gestartet. Jetzt ist der alte Fehler nicht mehr da, dafür aber das:

2019-06-21 07:41:06.809 - info: tr-064.0 starting. Version 0.4.18 in /opt/iobroker/node_modules/iobroker.tr-064, node: v10.16.0

2019-06-21 07:41:06.861 - error: tr-064.0 Error: connect ECONNREFUSED 192.168.21.101:49000 - {"errno":"ECONNREFUSED","code":"ECONNREFUSED","syscall":"connect","address":"192.168.21.101","port":49000}
2019-06-21 07:41:06.862 - error: tr-064.0 ~
2019-06-21 07:41:06.862 - error: tr-064.0 ~~ Fatal error. Can not connect to your FritzBox.
2019-06-21 07:41:06.862 - error: tr-064.0 ~~ If configuration, networt, IP address, etc. ok, try to restart your FritzBox
2019-06-21 07:41:06.862 - error: tr-064.0 ~
2019-06-21 07:41:11.874 - error: host.Dellbook instance system.adapter.tr-064.0 terminated with code 1 ()

PLS Fix

issue with js-controller 1.4.0

From @xmace on March 13, 2018 10:25

The adapter worked well since I updated the js-controller to latest version 1.3.0.

`

host.iobrokerVM 2018-03-13 10:15:29.054 info Do not restart adapter system.adapter.tr-064.0 because disabled or deleted
host.iobrokerVM 2018-03-13 10:15:29.054 error instance system.adapter.tr-064.0 terminated with code 1 ()
Caught 2018-03-13 10:15:29.054 error by controller[0]: at bootstrap_node.js:608:3
Caught 2018-03-13 10:15:29.054 error by controller[0]: at startup (bootstrap_node.js:187:16)
Caught 2018-03-13 10:15:29.054 error by controller[0]: at Function.Module.runMain (module.js:684:10)
Caught 2018-03-13 10:15:29.054 error by controller[0]: at Function.Module._load (module.js:491:3)
Caught 2018-03-13 10:15:29.054 error by controller[0]: at tryModuleLoad (module.js:499:12)
Caught 2018-03-13 10:15:29.054 error by controller[0]: at Module.load (module.js:556:32)
Caught 2018-03-13 10:15:29.054 error by controller[0]: at Object.Module._extensions..js (module.js:654:10)
Caught 2018-03-13 10:15:29.053 error by controller[0]: at Module._compile (module.js:643:30)
Caught 2018-03-13 10:15:29.053 error by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.tr-064/tr-064.js:16:20)
Caught 2018-03-13 10:15:29.053 error by controller[0]: at Object.exports.Adapter (/opt/iobroker/node_modules/soef/soef.js:1383:23)
Caught 2018-03-13 10:15:29.053 error by controller[0]: TypeError: fns.adapter is not a function
Caught 2018-03-13 10:15:29.053 error by controller[0]: ^
Caught 2018-03-13 10:15:29.053 error by controller[0]: fns.adapter = fns.adapter(options);
Caught 2018-03-13 10:15:29.052 error by controller[0]: /opt/iobroker/node_modules/soef/soef.js:1383
host.iobrokerVM 2018-03-13 10:15:22.124 info object change system.adapter.tr-064.0

`

Copied from original issue: soef/ioBroker.tr-064#70

Google Anruferbilder

From @bahnuhr on December 9, 2017 8:14

Guten Tag,

das holen der Anruferbilder klappt immer noch nicht (bzw. ich hab es noch nicht hinbekommen).

Genauer:
Wir hatten für deine Version 0.3.6 und 0.3.7 mal diskuttiert wie man diese Bilder mit phonebook holt.
Es wird auch eine url angezeigt; diese funktioniert jedoch nicht.

Beispiel:
Ich gebe in iobroker bei phonebook.number und sofort wird mit bei phonebook.image eine url angezeigt.
So ungefähr (Zahlen teilweise geändert):
http://192.168.xxx.x:49000/download.lua?path=https://www.google.com/m8/feeds/photos/media/d.muxxxxx%40googlemail.com/7f3c56c1xxxxxx,240&sid=b40d379a18f1xxxxxx=240

Wenn ich diese url in chrome auf win7 eingebe kommt:

-> <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
-> <s:Body>
-> <s:Fault>
-> s:Client
-> UPnPError
->
->
-> 606
-> Action Not Authorized
->
->
-> </s:Fault>
-> </s:Body>
-> </s:Envelope>

Fazit:
Irgendwie stimmt da etwas nicht. Ich habe es bisher nicht hinbekommen, dass mir die Bilder von den Anrufern angezeigt werden.

Gibt es hier schon eine Lösung ?

mfg
D.Müller

Copied from original issue: soef/ioBroker.tr-064#52

Callmonitor: JSON-Table nicht als Array definiert?

From @maloross on January 12, 2019 16:16

Zunächst: ich bin Anfängerin und mit der Programmierung nicht sehr vertraut.

Einige der json-Tabellen lassen sich nicht mit dem JSON-Widget darstellen, da anscheinend die Array-Definition fehlt (die Werte sind nur in geschweiften, nicht in abschließenden eckigen Klammern)
Also so:
korrkte Darstellung -

[{Daten}]

leeres Widget

{Daten}

In einem solchen Fall habe ich nur ein leeres Feld. Setze ich nachträglich die eckigen Klammern, dann wird die Tabelle korrekt dargestellt.
Könnte das bei Gelegenheit gefixt werden oder gibt es Alternativen?

Copied from original issue: soef/ioBroker.tr-064#87

Startet nicht - viele Fehler im Log

Ich hatte die community-Version parallel zur "alten" Version installiert, um die Ip-Adressen rüber zu kopieren.
Danach Habe ich alle meine Scripte, die mit tr-064 zu tun haben umgeschrieben.

Als alles lief, habe ich die "alte" Instanz und den Adapter gelöscht.
Leider war danach auch die Community-Instanz verschwunden, die ich neu hinzugefügt habe.

Jetzt startet die Version nicht mehr. Weder eine Neuinstallation des Adapters noch ein Neustart des ioBrokers haben etwas gebracht.

2019-05-29 05:59:41.850 - error: Caught by controller[0]: module.js:550

2019-05-29 05:59:41.851 - error: Caught by controller[0]: throw err;
2019-05-29 05:59:41.851 - error: Caught by controller[0]: ^
2019-05-29 05:59:41.851 - error: Caught by controller[0]: Error: Cannot find module 'soef'
2019-05-29 05:59:41.852 - error: Caught by controller[0]: at Function.Module._resolveFilename (module.js:548:15)
2019-05-29 05:59:41.852 - error: Caught by controller[0]: at Function.Module._load (module.js:475:25)
2019-05-29 05:59:41.852 - error: Caught by controller[0]: at Module.require (module.js:597:17)
2019-05-29 05:59:41.852 - error: Caught by controller[0]: at require (internal/module.js:11:18)
2019-05-29 05:59:41.852 - error: Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.tr-064-community/lib/calllist.js:3:12)
2019-05-29 05:59:41.852 - error: Caught by controller[0]: at Module._compile (module.js:653:30)
2019-05-29 05:59:41.853 - error: Caught by controller[0]: at Object.Module._extensions..js (module.js:664:10)
2019-05-29 05:59:41.853 - error: Caught by controller[0]: at Module.load (module.js:566:32)
2019-05-29 05:59:41.853 - error: Caught by controller[0]: at tryModuleLoad (module.js:506:12)
2019-05-29 05:59:41.853 - error: Caught by controller[0]: at Function.Module._load (module.js:498:3)
2019-05-29 05:59:41.853 - error: host.ioBroker-RasPi instance system.adapter.tr-064-community.0 terminated with code 1 ()

Verwende MDNS zum triggern der Aktuallisierung

From @ihavenonick on August 18, 2018 7:52

Ich mache meine Anwesenheitserkennung über Dein Adapter und MDNS sollte schneller sein als das Polling. Leider habe ich damit ein Problem. MDNS ist aktiv, aber die Aktualisierung erfolgt nach dem eingestellten Polling Intervall. Trage ich beim Intervall nichts ein, wird überhaupt nicht aktualisiert. Somit läuft das MDNS wohl überhaupt nicht. Liegt das am Adapter, oder habe ich was falsch verstanden?
Ich möchte nicht unbedingt alle 30 Sekunden ein Polling ausführen, nur um eine rechte schnelle Anwesenheitserkennung zu realisieren. Ich bin hier dankbar für jeden Tipp.
Fritz 7490
FRITZ!OS: 06.98-60269 BETA
node: 8.11.3
nodejs: 8.11.3
npm: 4.6.1

Copied from original issue: soef/ioBroker.tr-064#77

toPauseState erkennt, welches DECT-Telefon die Verbindung aufbaut

From @drtp on January 24, 2018 8:45

Hallo,

ist der Adapter per toPauseState in der Lage zu erkennen, mit welchem mit der FRITZ!Box verbundenen DECT-Telefon ein Anruf angenommen wurde? Hintergrund ist der, dass wir im Haus vier FRITZ!Fon C4 im Einsatz haben, ich aber den Fernseher nur automatisch leiser stellen möchte, wenn ein Gespräch mit dem FRITZ!Fon im Wohnzimmer geführt wird.

Gruß,

Thorsten

Copied from original issue: soef/ioBroker.tr-064#62

Adapter bleibt stehen, sobald die Fritze nicht mehr erreichbar ist.

From @creator81 on December 17, 2017 17:37

Hallo,
wenn aus irgend einem Grund die Fritzbox mal nicht erreichbar ist, stellt der Adapter seinen Dienst ein.
Folgendes konnte ich den Logs entnehmen.

tr-064.0 2017-12-17 18:05:21.642 error ~ tr-064.0 2017-12-17 18:05:21.642 error ~~ If configuration, networt, IP address, etc. ok, try to restart your FritzBox tr-064.0 2017-12-17 18:05:21.641 error ~~ Fatal error. Can not connect to your FritzBox. tr-064.0 2017-12-17 18:05:21.641 error ~ tr-064.0 2017-12-17 18:05:21.639 error Error: sendSOAPActionRequest Error action=GetInfo serviceType=urn:dslforum-org:service:WLANConfiguration:1: 500 - {'code':500}

Ich hätte erwartet, dass der Adapter das einfach nach x Sekunden wieder versucht.

Adapter Version 0.4.10
Node 6.4

Ich habe aber auch zugegeben alle 10 Sekunden die Fritzbox abgefragt, was wohl etwas übertrieben ist. :)
Die Fritzbox ist dennoch weiterhin im Netz erreichbar, hat wohl einfach in einem Moment mal nicht geklappt.

Copied from original issue: soef/ioBroker.tr-064#53

Fehlercode 243 bei Installation

Habe den alten TR064 von Soef gestoppt und den alten Adapter der Community deinstalliert.
Danach über die URL die aktielle Github Version installiert, dabei trat Fehler 243 im Lg auf und Instanz bzw. Adapter ist nicht vorhanden:

$ ./iobroker url "https://github.com/iobroker-community-adapters/ioBroker.tr-064-community"
install https://github.com/iobroker-community-adapters/ioBroker.tr-064-community/tarball/master
npm install https://github.com/iobroker-community-adapters/ioBroker.tr-064-community/tarball/master --production --save --prefix "/opt/iobroker" (System call)
npm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/array-extnpm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/dgram
npm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/ip
npm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/safe-buffer
npm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/dns-packet
npm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/sprintf-js
npm WARN checkPermissions Missing write access to /opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/soef

npm
WARN
[email protected] requires a peer of stream-browserify@* but none is installed. You must install peer dependencies yourself.

npm
ERR!
path
/opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/array-extnpm
ERR!
code EACCESnpm ERR! errno -13
npm ERR! syscall access

npm ERR! Error: EACCES: permission denied, access '/opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/array-ext'npm ERR! { Error: EACCES: permission denied, access '/opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/array-ext'
npm ERR! stack: 'Error: EACCES: permission denied, access '/opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/array-ext'',
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/opt/iobroker/node_modules/iobroker.tr-064-community/node_modules/array-ext' }

npm ERR! npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running

npm ERR! the command again as root/Administrator (though this is not recommended).

npm ERR! A complete log of this run can be found in:npm ERR! /home/iobroker/.npm/_logs/2019-05-31T07_29_39_417Z-debug.log

ERROR: host.raspberrypi Cannot install https://github.com/iobroker-community-adapters/ioBroker.tr-064-community/tarball/master: 243
ERROR: process exited with code 25

Device wird als abwesend erkannt

From @derAndyk on February 12, 2019 8:0

Hallo, ich habe das Problem, dass besonders Nachts die Handys mehrfach als An und Abwesend gemeldet werden. ich habe eine Fritzbox 7590 und 3 Fritz Repeater (im Mesh Betrieb) laufen.
Das Handy Bsp. iPhone 6s liegt die Nacht über an der selben stelle (voller WLAN Empfang), es ändert jedoch bis zu 30 mal zwischen 23 und 5 Uhr den Status Aktiv / inaktiv.

Ich hab den Pool Intervall auf 60 Sekunden gestellt.

Copied from original issue: soef/ioBroker.tr-064#90

Kein Start nach Update vom JS Controller auf 1.5.7

Habe gestern iobroker und JS Controller auf neueste Version geupdatet.
Nach dem Update vom JS auf 1.5.7 startet der AVM Adapter nicht mehr. Letzte Zeile im Log lautet:

nstance system.adapter.tr-064.0 terminated with code 1 ()

cannot find start file

cannot find start file

Iobroker Fix Script laufen lassen (Danke @Apollon77 !)

Habe den Adapter über das Github Symbol installiert, danach keine Instanz gefunden, aber in der Repository den Adapter gefunden und von dort dann installiert.
Nach dem Eingeben der FB-Verbindungsdaten Auszug im Log:
host.raspberrypi 2019-05-31 11:37:21.909 error startInstance tr-064-community.0: cannot find start file!
host.raspberrypi 2019-05-31 11:37:21.905 info "system.adapter.tr-064-community.0" enabled

Alter Adapter von Soef ist noch installiert aber Instanz gestoppt.

ring state doesn't work

From @cm86 on January 9, 2019 23:16

Hallo,
ich möchte gerne des Ring Sie des Adapters nutzen...
Hier gebe ich **610 ein allerdings passiert nix...

--> Wählhilfe ist aktiviert in der Fritzbox
--> Adapter-Version 0.4.18
--> Fritzbox 7490 OS 07.01
--> der Befehl (Command)
{ "service":"urn:dslforum-org:service:X_VoIP:1", "action": "X_AVM-DE_DialNumber", "params": { "NewX_AVM-DE_PhoneNumber": "**610#" }}
funktioniert auch nicht...

Im log der Fritzbox ist auch nix zu finden...

Hat jemand noch einen Lösungsansatz für mich?!

Mit freundlichen Grüßen
Chris

Copied from original issue: soef/ioBroker.tr-064#86

...To enable the call monitor dial #96*5* ...

From @DDDanny on September 22, 2017 19:48

Dear Team,

log instruction issue - AVM seems to allow to enable this feature only by attached phones (dect / line) - which is from sec. perspective pretty ok.

If you have time, you can add here a text, please:
...To enable the call monitor dial #965... (something like) "from a direct linked phone (dect / line)" - phones connect via the fritz app e.g. cannot grant this...

I'm pretty sure that i granted the last fax via the app... but I got very horny now cauz it didn't worked by using the phone app (via dect phone all was fine then)

Thanks a lot
Danny

Copied from original issue: soef/ioBroker.tr-064#40

Error code 156 bei geplantem Restart des Adapters

From @buanet on July 11, 2017 21:19

Hallo, ich starte den Adapter über ioBroker regelmäßig neu.
Bei den dadurch ausgelösten Neustarts habe ich allerdings jedes mal einen Fehler mit Code 156 im Log:

tr-064.0 2017-07-11 23:01:03.039 info starting. Version 0.3.19 in /opt/iobroker/node_modules/iobroker.tr-064, node: v6.10.3
host.nas 2017-07-11 23:01:01.587 info instance system.adapter.tr-064.0 started with pid 29059
host.nas 2017-07-11 23:01:00.067 info Restart adapter system.adapter.tr-064.0 because enabled
host.nas 2017-07-11 23:01:00.067 error instance system.adapter.tr-064.0 terminated with code 156 ()
tr-064.0 2017-07-11 23:01:00.048 info terminating
tr-064.0 2017-07-11 23:01:00.036 info Scheduled restart.

Die Funktion ist dadurch aber offensichtlich nicht eingeschränkt.

MfG,
André

Copied from original issue: soef/ioBroker.tr-064#35

Doesn't work with Fritz.box Fon WLAN 7170

From @Jey-Cee on March 5, 2018 13:13

The Fritz.box Fon WLAN 7170 has tr-064 support, but the Adapter can not connect to it.

`tr-064.1 2018-03-05 14:08:11.805 error ~
tr-064.1 2018-03-05 14:08:11.805 error ~~ If configuration, networt, IP address, etc. ok, try to restart your FritzBox
tr-064.1 2018-03-05 14:08:11.804 error ~~ Fatal error. Can not connect to your FritzBox.
tr-064.1 2018-03-05 14:08:11.804 error ~
tr-064.1 2018-03-05 14:08:11.804 error Error: sendSOAPActionRequest Error action=GetInfo serviceType=urn:dslforum-org:service:WLANConfiguration:1: 401 - {"code":401}
`

Here is the tr64desc.xml:

 
 
 
  1
  0
 
 
  urn:dslforum-org:device:InternetGatewayDevice:1
  FRITZ!Box Fon WLAN 7170 UPnP/1.0 AVM FRITZ!Box Fon WLAN 7170 (UI) 29.04.88
  AVM
  www.avm.de
  FRITZ!Box Fon WLAN 7170 (UI)
  FRITZ!Box Fon WLAN 7170 (UI)
  - 1und1
  www.avm.de
  uuid:739f2409-bccb-40e7-8e6c-00150C888D1C
 
 
  image/gif
  118
  119
  8
  /ligd.gif
 
 
 
 
  urn:dslforum-org:service:DeviceInfo:1
  urn:DeviceInfo-com:serviceId:DeviceInfo1
  /upnp/control/deviceinfo
  /upnp/control/deviceinfo
  /deviceinfoSCPD.xml
 
 
  urn:dslforum-org:service:DeviceConfig:1
  urn:DeviceConfig-com:serviceId:DeviceConfig1
  /upnp/control/deviceconfig
  /upnp/control/deviceconfig
  /deviceconfigSCPD.xml
 
 
  urn:dslforum-org:service:Layer3Forwarding:1
  urn:Layer3Forwarding-com:serviceId:Layer3Forwarding1
  /upnp/control/layer3forwarding
  /upnp/control/layer3forwarding
  /layer3forwardingSCPD.xml
 
 
  urn:dslforum-org:service:LANConfigSecurity:1
  urn:LANConfigSecurity-com:serviceId:LANConfigSecurity1
  /upnp/control/lanconfigsecurity
  /upnp/control/lanconfigsecurity
  /lanconfigsecuritySCPD.xml
 
 
  urn:dslforum-org:service:ManagementServer:1
  urn:ManagementServer-com:serviceId:ManagementServer1
  /upnp/control/mgmsrv
  /upnp/control/mgmsrv
  /mgmsrvSCPD.xml
 
 
  urn:dslforum-org:service:Time:1
  urn:Time-com:serviceId:Time1
  /upnp/control/time
  /upnp/control/time
  /timeSCPD.xml
 
 
  urn:dslforum-org:service:UserInterface:1
  urn:UserInterface-com:serviceId:UserInterface1
  /upnp/control/userif
  /upnp/control/userif
  /userifSCPD.xml
 
 
  urn:dslforum-org:service:X_VoIP:1
  urn:X_VoIP-com:serviceId:X_VoIP1
  /upnp/control/x_voip
  /upnp/control/x_voip
  /x_voipSCPD.xml
 
 
  urn:dslforum-org:service:X_AVM-DE_Storage:1
  urn:X_AVM-DE_Storage-com:serviceId:X_AVM-DE_Storage1
  /upnp/control/x_storage
  /upnp/control/x_storage
  /x_storageSCPD.xml
 
 
  urn:dslforum-org:service:X_AVM-DE_OnTel:1
  urn:X_AVM-DE_OnTel-com:serviceId:X_AVM-DE_OnTel1
  /upnp/control/x_contact
  /upnp/control/x_contact
  /x_contactSCPD.xml
 
 
  urn:dslforum-org:service:X_AVM-DE_WebDAVClient:1
  urn:X_AVM-DE_WebDAV-com:serviceId:X_AVM-DE_WebDAVClient1
  /upnp/control/x_webdav
  /upnp/control/x_webdav
  /x_webdavSCPD.xml
 
 
  urn:dslforum-org:service:X_AVM-DE_UPnP:1
  urn:X_AVM-DE_UPnP-com:serviceId:X_AVM-DE_UPnP1
  /upnp/control/x_upnp
  /upnp/control/x_upnp
  /x_upnpSCPD.xml
 
 
  urn:dslforum-org:service:X_AVM-DE_TAM:1
  urn:X_AVM-DE_TAM-com:serviceId:X_AVM-DE_TAM1
  /upnp/control/x_tam
  /upnp/control/x_tam
  /x_tamSCPD.xml
 
 
 
 
  urn:dslforum-org:device:LANDevice:1
  LANDevice - FRITZ!Box Fon WLAN 7170 (UI)
  AVM
  www.avm.de
  LANDevice - FRITZ!Box Fon WLAN 7170 (UI)
  LANDevice - FRITZ!Box Fon WLAN 7170 (UI)
  - 1und1
  www.avm.de
  uuid:75802409-bccb-40e7-8e6b-00150C888D1C
  AVM TR-064
 
 
  urn:dslforum-org:service:WLANConfiguration:1
  urn:WLANConfiguration-com:serviceId:WLANConfiguration1
  /upnp/control/wlanconfig1
  /upnp/control/wlanconfig1
  /wlanconfigSCPD.xml
 
 
  urn:dslforum-org:service:Hosts:1
  urn:LanDeviceHosts-com:serviceId:Hosts1
  /upnp/control/hosts
  /upnp/control/hosts
  /hostsSCPD.xml
 
 
  urn:dslforum-org:service:LANEthernetInterfaceConfig:1
  urn:LANEthernetIfCfg-com:serviceId:LANEthernetInterfaceConfig1
  /upnp/control/lanethernetifcfg
  /upnp/control/lanethernetifcfg
  /ethifconfigSCPD.xml
 
 
  urn:dslforum-org:service:LANHostConfigManagement:1
  urn:LANHCfgMgm-com:serviceId:LANHostConfigManagement1
  /upnp/control/lanhostconfigmgm
  /upnp/control/lanhostconfigmgm
  /lanhostconfigmgmSCPD.xml
 
 
 
 
  urn:dslforum-org:device:WANDevice:1
  WANDevice - FRITZ!Box Fon WLAN 7170 (UI)
  AVM
  www.avm.de
  WANDevice - FRITZ!Box Fon WLAN 7170 (UI)
  WANDevice - FRITZ!Box Fon WLAN 7170 (UI)
  - 1und1
  www.avm.de
  uuid:75802409-bccb-40e7-8e6a-00150C888D1C
  AVM TR-064
 
 
  urn:dslforum-org:service:WANCommonInterfaceConfig:1
  urn:WANCIfConfig-com:serviceId:WANCommonInterfaceConfig1
  /upnp/control/wancommonifconfig1
  /upnp/control/wancommonifconfig1
  /wancommonifconfigSCPD.xml
 
 
  urn:dslforum-org:service:WANDSLInterfaceConfig:1
  urn:WANDSLIfConfig-com:serviceId:WANDSLInterfaceConfig1
  /upnp/control/wandslifconfig1
  /upnp/control/wandslifconfig1
  /wandslifconfigSCPD.xml
 
 
 
 
  urn:dslforum-org:device:WANConnectionDevice:1
  WANConnectionDevice - FRITZ!Box Fon WLAN 7170 (UI)
  AVM
  www.avm.de
  WANConnectionDevice - FRITZ!Box Fon WLAN 7170 (UI)
  WANConnectionDevice - FRITZ!Box Fon WLAN 7170 (UI)
  - 1und1
  www.avm.de
  uuid:75802409-bccb-40e7-8e69-00150C888D1C
  AVM TR-064
 
 
  urn:dslforum-org:service:WANDSLLinkConfig:1
  urn:WANDSLLinkConfig-com:serviceId:WANDSLLinkConfig1
  /upnp/control/wandsllinkconfig1
  /upnp/control/wandsllinkconfig1
  /wandsllinkconfigSCPD.xml
 
 
  urn:dslforum-org:service:WANEthernetLinkConfig:1
  urn:WANEthernetLinkConfig-com:serviceId:WANEthernetLinkConfig1
  /upnp/control/wanethlinkconfig1
  /upnp/control/wanethlinkconfig1
  /wanethlinkconfigSCPD.xml
 
 
  urn:dslforum-org:service:WANPPPConnection:1
  urn:WANPPPConnection-com:serviceId:WANPPPConnection1
  /upnp/control/wanpppconn1
  /upnp/control/wanpppconn1
  /wanpppconnSCPD.xml
 
 
 
 
 
 
  http://fritz.box
 
 
   

Copied from original issue: soef/ioBroker.tr-064#68

Adapter startet nicht

Seit kurzem darf auch ich nun eine Fritzbox mein Eigen nennen. Nun würde ich gerne diesen Adapter in Betrieb nehmen. Ich habe die aktuelle Version des Adapters installiert. Leider startet er nicht. Im Log steht:
host.ioBroker-RasPi | 2019-03-31 22:59:14.141 | error | startInstance tr-064-community.0: cannot find start file!

Einen Upload habe ich bereits durchgeführt.
Woran könnte es liegen, dass er nicht starten will?

Probleme bei zwei parallelen Telefonaten

From @maeb3 on January 3, 2019 21:24

Bei mir sind mehrere Telefonnummern in der Fritzbox hinterlegt und es können mehrere Gespräche gleichzeitig geführt werden.
Wenn parallel Telefonate geführt werden, wird beim zweiten Anruf die Richtung (sym) nicht in die JSON-Anrufliste eingetragen.

Beispiel (Telefonnummern wurden im Beispiel ersetzt):
... {"id":5666,"type":"3","called":"06221xxxxxx","caller":"SIP: yyyyyyyy","callernumber":"yyyyyyyy","name":"bbbbbbbb","numbertype":"sip","device":"FritzFon 2","port":"10","date":"27.12.18 17:38","duration":"0:11","count":"","path":"",**"sym":"<"**,"external":"06221xxxxxx"}, {"id":5667,"type":"9","caller":"06221xxxxxx","called":"SIP: yyyyyyyy","callednumber":"yyyyyyyy","name":"cccccccc","numbertype":"sip","device":"AB","port":"40","date":"27.12.18 17:47","duration":"0:03","count":"","path":"","external":"06221xxxxxx"}, ...

Beim ersten Anruf (11 Minuten ab 17:38 Uhr) wird die Richtung noch gezeigt (sym: <).
Beim zweiten Anruf (3 Minuten ab 17:47 Uhr) fehlt der sym-Eintrag.

Dies passiert immer dann, wenn sich zwei Anrufe zeitlich überlappen.

Copied from original issue: soef/ioBroker.tr-064#84

Keinen Anrufernamen mehr

From @pr0j3ctx on January 3, 2018 12:58

Hallo.

Ich bekomme keinen Anrufernamen mehr angezeigt, obwohl der Kontakt im Telefonbuch hinterlegt ist. Wurde hier irgendetwas geändert? Ich nutze eine 7490 mit aktuellster Firmware.

Gruß
pr0

Copied from original issue: soef/ioBroker.tr-064#57

Think about to fix the issues found by adapter checker

From @ioBrokerChecker on February 3, 2019 15:30

I am an automatic service that looks for possible errors in ioBroker and creates an issue for it. The link below leads directly to the test:

https://adapter-check.iobroker.in/?q=https://raw.githubusercontent.com/soef/ioBroker.tr-064

  • [E019] Invalid repository URL: https://github.com/soef/iobroker.tr-064. Expected: git+https://github.com/soef/ioBroker.tr-064.git
  • [E109] desc in io-package.json should be an object for many languages. Found only TR 064
  • [E114] No adapter are allowed in the repo without admin3 support
  • [E115] No license found in io-package.json
  • [E201] Bluefox was not found in the collaborators on NPM!. Please execute in adapter directory: "npm owner add bluefox iobroker.tr-064"

ERR:["E019","E109","E114","E115","E201"]:ERR

Thanks,
your automatic adapter checker.

Copied from original issue: soef/ioBroker.tr-064#89

Adapter stürzt mit TypeError ab.

From @threedee on January 12, 2018 21:58

In meinen Logs tauchen Neustarts des Adapters auf. Ich denke mal er wird versucht auf ein Object zu zugreifen welches es nicht gibt.
Ich bekomme folgende Fehlermeldung:
`

host.iobroker 2018-01-12 22:00:12.679 error instance system.adapter.tr-064.0 terminated with code 0 (OK)
Caught 2018-01-12 22:00:12.679 error by controller[0]: at Socket.emit (events.js:188:7)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at emitOne (events.js:96:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Socket.socketErrorListener (_http_client.js:310:9)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at ClientRequest.emit (events.js:188:7)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at emitOne (events.js:96:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Request.onRequestError (/opt/iobroker/node_modules/iobroker.tr-064/node_modules/request/request.js:878:8)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Request.emit (events.js:188:7)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at emitOne (events.js:96:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at self.callback (/opt/iobroker/node_modules/iobroker.tr-064/node_modules/request/request.js:186:22)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at Request._callback (/opt/iobroker/node_modules/iobroker.tr-064/node_modules/tr-O64/lib/Service.js:273:13)
Caught 2018-01-12 22:00:12.678 error by controller[0]: at args.(anonymous function) (/opt/iobroker/node_modules/iobroker.tr-064/lib/deflections.js:58:39)
Caught 2018-01-12 22:00:12.676 error by controller[0]: TypeError: Cannot convert undefined or null to object
tr-064.0 2018-01-12 22:00:12.665 info terminating

`

Copied from original issue: soef/ioBroker.tr-064#59

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.