-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tydom2mqtt is failing to start when no tty #40
Comments
Hi @fmartinou ! Big thanks to take upon that project, you seems way more skilled that I am and I'm glad ! |
Hi @mrwiwi, I'm using Home-Assistant but unfortunately, I'm not using Hass.io so I don't know much about Supervisor, addons and so on. I'll take some time to know more about all that and I'll let you know if I think I can be helpful. Thanks again for your project! I'm now able to control my heating system from Home-Asssistant 🤩 ! |
You should try a supervised install ! Big advantage is backup/logs/installation of everything in HA, and add-ons are just docker containers integrated in HA ! You can check my add-on for tydom2mqtt, with your skills I'm pretty sure you will figure it out very quickly ! |
I've just installed your add-on, that's great, lighter indeed ! I think all users should switch to your fork now, what do you think ? |
Hi, I'm currently working on that :) I'm going to create an external addon repository because I'm planning to deploy 2 other addons in addition to Please give me few additional days and existing users should be able to switch to my fork 😄 Besides that, would you be interesting to join me as developer on my fmartinou/tydom2mqtt fork? Because I now about Docker, Code quality, automation... but I don't know much about Deltadore stuff (and I have almost no Deltadore devices at home) 🤔 |
I'm in ! ^^ I just have covers and alarm, but I begin to know pretty well the tydom box and websockets ;D |
Invitation sent; welcome on board! |
Hi @mrwiwi , I created a static documentation (hosted on Github pages) for the project: https://fmartinou.github.io/tydom2mqtt/ In addition, I created the first release on my fork ( Could you give it a try? Thanks! |
Voici mon adresse mail.
Ce sera peut-être plus simple pour échanger entre nous en dehors de Github
: ***@***.***
Cdt
Le mer. 24 nov. 2021 à 14:22, William Friconneau ***@***.***>
a écrit :
… I'm in ! ^^ I just have covers and alarm, but I begin to know pretty well
the tydom box and websockets ;D
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#40 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD2RGL3HCUTTPRD3MJTBNU3UNTRJLANCNFSM5IRPYQ6Q>
.
--
Manfred Martin
|
That's awesome !!! Hassio add-on working perfectly here, except for MQTT default value : localhost doesn't work, but "homeassistant" do ! The documentation, the icon... Wow it feels like an professional project :D thanks a lot ! |
Hi! Thanks for your support!
Oh yeah, I get it. By default, addons are running in the same network as homeassistant (see So on localhost, there is no MQTT_broker. |
tydom2mqtt fail starting if no tty is enabled.
Example failing
Example working
It's caused by the
Popen
in forever.py.Generally speaking, I don't think that handling uncaught errors in an uber Python process for automatic restart is a good practice.
Especially when working in containerized environments 🤔
Better use
--restart
Docker option to handle automatic restart on crash.You can find here the related commit on my fork.
The text was updated successfully, but these errors were encountered: