diff --git a/dist/starline-card.js b/dist/starline-card.js
index c52ea8f..21cc685 100644
--- a/dist/starline-card.js
+++ b/dist/starline-card.js
@@ -1,6 +1,6 @@
/**
* lovelace-starline-card v1.2.1
- * Thu, 28 Dec 2023 08:54:08 GMT
+ * Wed, 03 Jan 2024 14:09:59 GMT
*/
const STARLINE_ENTITIES = {
'battery': {
@@ -33,6 +33,11 @@ const STARLINE_ENTITIES = {
required: true,
regex: /^sensor\.(.+)_gsm_signal(_[0-9]+)?$/,
},
+ 'fuel': {
+ name: 'Fuel volume',
+ required: false,
+ regex: /^sensor\.(.+)_fuel_volume(_[0-9]+)?$/,
+ },
'hbrake': {
name: 'Hand Brake',
required: false,
@@ -140,6 +145,10 @@ class StarlineCard extends HTMLElement {
gps: {
element: null,
value: null
+ },
+ fuel: {
+ element: null,
+ value: null
}
};
this._gsm_lvl = {
@@ -565,6 +574,10 @@ class StarlineCard extends HTMLElement {