Code Monkey home page Code Monkey logo

Comments (2)

sibbl avatar sibbl commented on July 22, 2024

Hi,

thanks for the feedback. I see two questions here:

  1. without jailbreak, using the default Kindle browser should result in the device turning off after a specific time. Even if this could be solved, I then think opening the Home Assistant dashboard directly might work better. So there would be no need for this rendering tool.

  2. cycling throught various lovelace panels/components is something which should be doable in the Home Assistant dashboard and might be out of scope for this plugin. You can modify some input_number helper value every minute and then use a dashboard component which only shows a specific component if this input_number field is 1, 2 or 3.

In the end, we just render the Home Assistand dashboard. So whatever is configured there, will also be usable by this tool :)

from hass-lovelace-kindle-screensaver.

LorenzoRogai avatar LorenzoRogai commented on July 22, 2024

If you input ~ds inside the Kindle search bar you can disable the sleep mode. Opening the dashboard directly doesn't work because of HA advanced Javascript that Kindle can't render

I was meaning something like

dockerip:5000/slideshow

That contains this HTML

<img src="http://mini-pc.home.internal:5000/">

<script>
function randomIntFromInterval(min, max) { // min and max included 
  return Math.floor(Math.random() * (max - min + 1) + min)
}

setInterval(function() {
  document.getElementsByTagName('img')[0].src = 'http://mini-pc.home.internal:5000/' + randomIntFromInterval(1, 5);
}, 60000);
</script>

I'm going to host this outside the Docker container but i thought it would be helpful to have this all-in-one

from hass-lovelace-kindle-screensaver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.