From aea492368a47dabd6d936bd11d8b05eee2aeb751 Mon Sep 17 00:00:00 2001 From: gryzli133 <30415928+gryzli133@users.noreply.github.com> Date: Mon, 24 Jan 2022 08:40:45 +0100 Subject: [PATCH] Add additional sketch that use v_percentage (#21121) Co-authored-by: Franck Nijhof --- source/_integrations/cover.mysensors.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/_integrations/cover.mysensors.markdown b/source/_integrations/cover.mysensors.markdown index 48130cbd796..95d6e48d10a 100644 --- a/source/_integrations/cover.mysensors.markdown +++ b/source/_integrations/cover.mysensors.markdown @@ -149,3 +149,9 @@ void receive(const MyMessage &message) { } } ``` + +## Sketch example with position measurement based on motor running time + +This sketch is ideally for star topology wiring. You can run up to 12 covers with a single Arduino Mega board and some relays. All you need to set is one line of parameters for one Cover. However, you can also use it for a single cover based on an Arduino Nano or even an ESP8266 board. + +[Check out the code on GitHub.](https://github.com/gryzli133/RollerShutterSplit)