Search found 3 matches

by MikeyP
Sunday 05 March 2023 21:54
Forum: Suggestions
Topic: Support for Somfy Connexoon and Tahoma
Replies: 211
Views: 68623

Re: Support for Somfy Connexoon and Tahoma

Thanks! See my comments on your Github beta for the working outcome without hosts entry: the mDNS effectively responds to (remove space)

Code: Select all

gateway-1234-5678-9012. local
(sorry @MikeyMan; as a new publishing member even the code notation does not allow me to post urls yet :))
by MikeyP
Saturday 04 March 2023 22:12
Forum: Suggestions
Topic: Support for Somfy Connexoon and Tahoma
Replies: 211
Views: 68623

Re: Support for Somfy Connexoon and Tahoma

Thanks MadPatrick, Jan-Jaap and others for building a more stable TaHoma interface!

(replace the "_" with "." below; I can't post with dots referring to ip addresses apparently)

My 2 cents on identifying the unit with pin "1234-5678-9012" by putting the ip address in the /etc/hosts (10_0_0_x 1234 ...
by MikeyP
Monday 26 March 2018 15:27
Forum: Other questions and discussions
Topic: FIX for The database disk image is malformed
Replies: 46
Views: 51311

Re: FIX for The database disk image is malformed

And even quicker, staying on the RPI prompt, without copying to pc or manually editing:

# Remove first line of dumped database:
tail dump.sql -n +2 > dump1.sql
# Make back-up of original just in case:
mv domoticz.db domoticz.bak.db
# Import into fresh database:
sqlite3 domoticz.db < dump1.sql ...