Is it possible to have a card on my lovelace frontend that displays the content of a text file?
The text file is plain text and looks like this (afv.txt):
DATA1
DATA2
DATA3
What I want is a list in the same way on the frontend.
I tried with a file sensor & markdown card but without any luck:
I would like a better way to do this too (without having to create a sensor), but here is what I did (you seem to be close):
Created a sensor that gets is data from a text file, then get the state (data) from the sensor using a markdown card. The sensor and markdown seem to keep the same format, at least the multi-line
I decided to make a āHistory of Eventsā, as in the Majordomo smart home platform. But I also ran into the problem described above āonly works if the number of characters is below 255ā.
Ideas appeared:
Use attributes (since they seem to be not limited by the number of characters in the value of sensor). But I donāt know how to give the sensor across platform: command_line an attribute. It is also not clear how to change the attribute inside the finished sensor (attribute_templates?).
Use card of webpage, storing data in html in www, wrapping data in html code for nice line wrapping, etc. But what the fuck ā¦ this card works through the ass and just does not update at all ā¦
Is it possible to somehow refresh the page, by some service or in another way? Since events are generated by automation / scripts, we can add something that will trigger a page refresh (loading data from a file) ā¦
Iāve had the exact same problem. The card does not update because of web caching that HomeAssistant is doing. The only solution that I have come up with is running my own webserver where I can tell it not to do caching, and then point the webpage card to that link.
Thatās quite a pain though for a simple thing, Iām still looking for a better solution.
It is also an option. But I didnāt go that far, I added an update button to the html file, ignoring the cache, it works on a double click ā¦ I think you can also make an automatic update using a script.
We insert this into your html file (you can insert it, stupidly, in a line, or better put it into the ā<bodyā¦ā):
The caching occurs in the content card in the lovelace dashboardā¦ which is understandable but super annoying. A yaml option to toggle this behavior on and off would be awesome.
The Workaround:
The way to bypass content caching is to use a dynamic query string and load content. Hereās how I do it for a few of my applications, and it works like a charm (almost the EXACT use case the OP is after).
Store your log content in a file in the WWW directory. HTML, text, whatever. For argumentās sake, letās call it ālog.txtā (warning, this data is accessible without authentication, bewareā¦).
Use a different HTML file in WWW (letās call it log.html) as your āwebpage cardā embedded in the dashboard, with a javascript call in it to HTTP GET the log.txt and document.write() it out. The TRICK is to use a dynamic query string within the javascript GET call loading the other content. The query string is always different, so it bypasses the cache every time.
<html>
<head>
<title>TEST</title>
<script>
function httpGet(theUrl)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
xmlHttp.send( null );
return xmlHttp.responseText;
}
</script>
</head>
<body>
Log Text: <script>document.write(httpGet("/local/log.txt?" + Date.now()));</script>
</body>
</html>
iām so happy i checked this and grateful that the forum has people that are reluctant and donāt give up.
I havenāt tried it yet, but the post and follow up just give me hope. Thanks again
Thanks for this tip! I have one question: My file contains line breaks. How do I read the file, so that it displays the line breaks? Right now it shows everything in one line.
Di you mean the text on a new line? Then you need to save the data to your file as for html, that is, add < p></ p> (need to remove the space before āpā) every time for new line: <p>Here is my text.</p>
really sorry, but how do we use the webpage card on a local fileā¦ could you please show me?
only use the card for external addresses, and they merely show the link, so this usage is new to me
I am using the html in www/html/daylight_settings.html, and content is is looking for in in /config/logging/filed_daylight_settings.txt.
upon loading I can see the Initial text string, but also see the HA icon we see when Ha is loading. After that, nothing is showing except for an empty card and my own menu shortcut bar, which I dont understand why that is showing at allā¦
I managed to show the file by using the /local/filed_daylight_settings.txt and /local/ for the paths only. Can we not change those paths at all? seems a bit strange if that were the case.
I am using this html script that works fine but since the file is having a lot of lines, does somebody know how to display directly the bottom of the file in the Web page card?
That will avoid to move the vertical scroll bar to the bottom to read the last input.
I once made top-down and bottom-up navigation buttons using ready-made JS and CSS libraries, but since I am not a programmer and have little experience, I could not bring it to mind. Over time, demolished and sunk into oblivionā¦
Here is the solution I use for text file, convert the file into an html format using the following shell script (this shell script is adding a first line which is refreshing the link every 5 seconds !):
#
# program to convert a file into an html format
#
/config/private_shell_scripts/text2html.awk $1 > $2
sed -i '1i<meta http-equiv="refresh" content="5">' $2
You can call this script into another shell to convert for example the output logfile into a html page. Here is an example:
I wanted to display text file content (actually, a selected set of recent lines from a log file) and couldnāt find an easy way to do this - and the accepted solution here didnāt do what I needed. I ended up using an http component. Posting here in case someone else finds it useful. See this github gist: