Skip to content

08.1 Dashboards with Picodash

Daniel Dunn edited this page Jul 15, 2024 · 1 revision

Picodash is Kaithem's native framework for displaying data. It is also a fully standalone library with more info available at the Picodash Repo.

Kaithem comes with a plugin that makes all tag points available as plugins. Right now, all tags require full admin permissions, except for tags associated with devices, which are customizable on the device page.

Try creating a page resource and adding this HTML, to show the system temperature in real time.

{% extends "pagetemplate.j2.html" %}

{% block title %} dashing {% endblock %}

{% block body %}

<script type="module" src="/static/js/picodash.js"></script>

<main>
  <h2>Picodash Demo</h2>
  <section class="window stacked-form">
    <label>System Temperature
      <ds-meter source="tag:/system/sensors/temp/coretemp"></ds-meter>
      <ds-span source="tag:/system/sensors/temp/coretemp"></ds-span>
    </label>
  </section>
</main>

{% endblock %}
Clone this wiki locally