Issue with eBUSd Not Loading Configuration for Vaillant BAI00 #1498
-
Hello everyone,I'm having an issue with Previously,
Even at that time, running
Now, after restarting
And What I Tried:Config files exist ( System Info:
Would really appreciate any help! Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 7 replies
-
Have you changed within the csv from "r" to e.g. "r1", that it will poll the values (like r1;w,,AdaptHeatCurve,adaptive heat curve,,,,1400,,,yesno,,,automatic correction of configured heat curve) ? See https://github.com/john30/ebusd/wiki/4.1.-Message-definition where it says
What happens if you Afte that we will look, why the csv are not loaded (ebusctl info). Mine looks like:
My AdaptHeatCurve is within 15.ctlv2.csv. Regards Sebastian |
Beta Was this translation helpful? Give feedback.
-
@Hotelk52339 - it's a bit confusing when you have two threads open for the same issue, here and on the issues forum! I'd be inclined to close one (the other one)? I'd also be inclined to review the logs on start-up, capturing the details around the scan process and post those back here? This will help you see if there was some issue on startup. It would be helpful If you could more fully describe your equipment maybe. And are you sure you're showing the whole And when you say you use to get some observed behaviour and now you don't, what could have changed - new adapter, some other hardware change, boiler service etc? Have you ever been able to read values successfully from ebusd and it had recently stopped or you haven't got that far yet? (and anyway 08.bai,csv only loads a few status message definitions, it's main role is as a 'manifest' to match and load either specific boiler config files or failing that, load the default definitions file bai308523.inc so you want to at least get to that point, but one step at a time!) |
Beta Was this translation helpful? Give feedback.
-
Did you point ebusd to the directory with the CSV config files using the --configpath parameter?
|
Beta Was this translation helpful? Give feedback.
-
Yes- it shouldn’t be empty! You can observe what it should have here : https://github.com/eBUS/ebus.github.io/blob/main/en/vaillant/08.bai.csv maybe a permissions issue when you copied? Not sure without seeing the Product Id which other file it would load, probably bai.308523.inc - but for now I would clone the entire config files folder, or at very least those bai……inc files as well. It should load 08.bai.csv based on address and circuit name and then iterate through it trying to match product id or hw level. If it matches (lines 15-40) it loads the specifically referenced file. If it matches none, it should load bai308523.inc (line 41) |
Beta Was this translation helpful? Give feedback.
-
I suspect that I might have installed ebusd incorrectly on Ubuntu, which could be causing these issues. If that is the case, I am willing to completely remove and reinstall ebusd from scratch If anyone could provide a step-by-step guide on how to properly install and configure ebusd for my setup, I would really appreciate it |
Beta Was this translation helpful? Give feedback.
You could start from scratch, but first I'd be tempted to simply clone the whole config repository - there are other .csv files like broadcast, templates, hcmode etc. that you need as well and also bai.308523.inc may not be the right file for your boiler.
Or alternatively, do not clone the files and do not set
--configpath
to your local and use the online service instead (I think if you omit --configpath the default will be https://ebus.github.io/ but you can explicitly use that instead to be sure I guess)I'm not an expert at either ebusd or linux but I think you're using some of the commands incorrectly too.
Do you get the product id if you run
ebusctl find id | grep -i "scan.08"
? If yo…