You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been successful reading several data and putting it via MQTT into a Influx DB and creating a custom Grafana Dashboard for more than a year now.
Now I would like to read some more attributes (i.e. d.29 - primary circuit water flow rate) from my heating to optimize the heating settings but PrimaryCircuitFlowRate_DK is not provided for my heating model. When I try to read the value this happens:
root@d310c0f97dcf:/# ebusctl read PrimaryCircuitFlowRate_DK
ERR: element not found
which is clear, because bai.308523.inc does not include this attribute.
As a next step I used devpod to create a VS workspace using the .devcontainer settings. This works fine, I'm able to use ebus-notebook and my ebusd instance is connected.
After that I searched the configurations for d.29 and created a custom bai.0010021924_inc.tsp file:
import "@ebusd/ebus-typespec";
import "./_templates.tsp";
using Ebus;
using Ebus.Num;
namespace Vaillant;
namespace Bai._0010021924_inc{
/** d.29 PrimaryCircuitFlowrate_DK */
@inherit(r)
@ext(0xfb, 0)
model PrimaryCircuitFlowrate {
/** value of flowrate */
@unit("l/h")
value: UIN;
}
}
When I run Convert model to eBUS CSV and test... the result is
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everybody,
I need some help (for dummies!) creating custom _inc.tsp configurations to read values which are not provided by default.
First of all I would like to give you some information about my Vaillant heating.
I've been successful reading several data and putting it via MQTT into a Influx DB and creating a custom Grafana Dashboard for more than a year now.
Now I would like to read some more attributes (i.e. d.29 - primary circuit water flow rate) from my heating to optimize the heating settings but PrimaryCircuitFlowRate_DK is not provided for my heating model. When I try to read the value this happens:
root@d310c0f97dcf:/# ebusctl read PrimaryCircuitFlowRate_DK ERR: element not found
which is clear, because
bai.308523.inc
does not include this attribute.As a next step I used devpod to create a VS workspace using the .devcontainer settings. This works fine, I'm able to use ebus-notebook and my ebusd instance is connected.
After that I searched the configurations for d.29 and created a custom bai.0010021924_inc.tsp file:
When I run
Convert model to eBUS CSV and test...
the result isNow I'm lost.
Beta Was this translation helpful? Give feedback.
All reactions