Monoprice Door sensor dry contact

thanks
but wouldn’t
1 byte dec be 1 and not 255
and
1 byte hex be 255
?

Yes. Typo.

so
1 byte dec , 1
or
1 byte hex , FF or other?

it didn’t like
1 byte hex ,255

[quote=“RV, post:23, topic:181416”]it didn’t like
1 byte hex ,255[/quote]

That’s NOT surprising, as “255” as a hex value is two bytes…

HSD99 did NOT make a typo… What he posted was exactly correct.

Variable: 1
Data Size: 1 byte dec
Desired value: 255

The reference you linked to clearly indicated a value of 0x00(hex) = 0(dec) = default to disable the external switch, and a value of 0xFF(hex) = 255 (dec) to enable the external switch.

You could also use a hex byte (but most people don’t think in hex…:

Variable: 1
Data Size: 1 byte hex
Desired value: FF

thanks

I went with
Variable: 1
Data Size: 1 byte hex
Desired value: FF

one device is working as expected and the other is still “Waiting for wakeup to configure device”

I’m going ti give it a little more time.

the working one has these 2 variables now
VariablesSet 1,1h,FF
VariablesGet 1,255,

the non working one only has the VariablesSet one so far.

Patience is a virtue, all working

here’s the vision spec sheet BTW