From 8c8168fe34dbed2c35920299c4477cf60cb21bf7 Mon Sep 17 00:00:00 2001 From: Gregg Date: Wed, 26 Aug 2020 17:45:00 -0500 Subject: [PATCH] Update ZephyrHood3.ino Switched pins for fan<->light --- examples/ZephyrHood3/ZephyrHood3.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ZephyrHood3/ZephyrHood3.ino b/examples/ZephyrHood3/ZephyrHood3.ino index c8fa19c..c8946e1 100644 --- a/examples/ZephyrHood3/ZephyrHood3.ino +++ b/examples/ZephyrHood3/ZephyrHood3.ino @@ -17,11 +17,11 @@ void setup() { new SpanAccessory(); new DEV_Identify("Zephyr Light","HomeSpan","ZVH-1","RF-Control","1.0",0); - new DEV_ZephyrLight(0x51390,17); + new DEV_ZephyrLight(0x51390,19); new SpanAccessory(); new DEV_Identify("Zephyr Fan","HomeSpan","ZVH-1","RF-Control","1.0",0); - new DEV_ZephyrFan(0x51388,0x61398,16); + new DEV_ZephyrFan(0x51388,0x61398,18); }