From 63fd8f19549a4f6eae1c9e9df8b03070eb615638 Mon Sep 17 00:00:00 2001 From: ntruchsess Date: Fri, 18 Oct 2013 12:08:01 +0000 Subject: [PATCH] update perl-firmata (fix handle onewire-capabilities response) git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4063 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/lib/Device/Firmata/Platform.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/lib/Device/Firmata/Platform.pm b/fhem/FHEM/lib/Device/Firmata/Platform.pm index 0f0e0c852..d8b2f2bfe 100644 --- a/fhem/FHEM/lib/Device/Firmata/Platform.pm +++ b/fhem/FHEM/lib/Device/Firmata/Platform.pm @@ -281,7 +281,7 @@ sub sysex_handle { if ($capabilities->{$pin}->{PIN_I2C+0}) { push @i2cpins, $pin; } - if ($capabilities->{$pin}->{PIN_OUTPUT+0}) { + if ($capabilities->{$pin}->{PIN_ONEWIRE+0}) { push @onewirepins, $pin; } }