diff --git a/fhem/FHEM/00_OWX.pm b/fhem/FHEM/00_OWX.pm index bb930d333..ae66520c7 100644 --- a/fhem/FHEM/00_OWX.pm +++ b/fhem/FHEM/00_OWX.pm @@ -129,7 +129,7 @@ sub OWX_Initialize ($) { $hash->{UndefFn} = "OWX_Undef"; $hash->{GetFn} = "OWX_Get"; $hash->{SetFn} = "OWX_Set"; - $hash->{AttrList}= "loglevel:0,1,2,3,4,5,6 buspower:real,parasitic"; + $hash->{AttrList}= "loglevel:0,1,2,3,4,5,6 buspower:real,parasitic IODev"; #-- Adapt to FRM $hash->{InitFn} = "FRM_OWX_Init"; @@ -2394,6 +2394,7 @@ sub OWX_Verify_CCC ($$) { port or
  • via a passive DS9097 interface attached to an USB port or
  • via a network-attached CUNO or through a COC on the RaspBerry Pi
  • +
  • via an Arduino running OneWireFirmata attached to USB
  • Internally these interfaces are vastly different, read the corresponding Wiki pages
    @@ -2404,13 +2405,16 @@ sub OWX_Verify_CCC ($$) {
    define OWio2 OWX COC
    + define OWio3 OWX 10 +


    Define

    define <name> OWX <serial-device> or
    - define <name> OWX <cuno/coc-device> + define <name> OWX <cuno/coc-device> or
    + define <name> OWX <arduino-pin>

    Define a 1-Wire interface to communicate with a 1-Wire bus.

    @@ -2421,6 +2425,10 @@ sub OWX_Verify_CCC ($$) {
  • <cuno-device> The previously defined CUNO to which the 1-Wire bus is attached.
  • +
  • + <arduino-pin> The pin of the previous defined FRM + to which the 1-Wire bus is attached. If there is more than one FRM device defined + use IODev attribute to select which FRM device to use.

  • @@ -2467,6 +2475,8 @@ sub OWX_Verify_CCC ($$) {