From 785172104fd0ab50ac1742cabbb0644859451de6 Mon Sep 17 00:00:00 2001 From: Chris Oloff Date: Wed, 14 Jan 2026 18:57:35 +0200 Subject: [PATCH] update README to reflect new way of creating a panel client (quickstart) --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 8402efd..d6f315c 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,21 @@ and to allow users to interact with it. # Quickstart +## Create a View for a Watt42 System, using a Template + +1. Ensure you've got Python and Poetry installed (see Prerequisites below). +2. Run the install script to create a new view project: + +```bash +wget -q -O - https://source.c3.uber5.com/watt42-public/install/raw/branch/main/install.sh | TARGET=view bash +``` + +3. Follow the instructions printed by the install script to set up your new view + project. + + +## "Hello World" Example + Given a Watt42 system that exposes the status of a smart device (`is_geyser_on` is either `true` or `false`), the following code creates a simple view that shows the status of the device.