You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a switch/index problem with the transmission of NewKaku.
when I receive for example 20;89;NewKaku;ID=00f0ac76;SWITCH=1;CMD=ON;
I need to send the following to switch the plug 10;NewKaku;00f0ac76;0;ON;
1->0 , 2->1 , 3->2 and so on.
in Plugin_004.c I have changed bitstream |= Switch_bitstream; // Complete transmitted address
to bitstream |= Switch_bitstream-1;
it fixes the problem, but I do not know if there are side effects ;)
and since I have very poor programming skills,
I would be extremely happy about an integration of Kaku Transmit PLUGIN_TX_003
(tried commenting out #define PLUGIN_TX_003 and some other changes without success).
The text was updated successfully, but these errors were encountered:
Hi,
Big thanks @ all of you who made this possible.
There seems to be a switch/index problem with the transmission of NewKaku.
when I receive for example
20;89;NewKaku;ID=00f0ac76;SWITCH=1;CMD=ON;
I need to send the following to switch the plug
10;NewKaku;00f0ac76;0;ON;
1->0 , 2->1 , 3->2 and so on.
in Plugin_004.c I have changed
bitstream |= Switch_bitstream; // Complete transmitted address
to
bitstream |= Switch_bitstream-1;
it fixes the problem, but I do not know if there are side effects ;)
and since I have very poor programming skills,
I would be extremely happy about an integration of Kaku Transmit PLUGIN_TX_003
(tried commenting out
#define PLUGIN_TX_003
and some other changes without success).The text was updated successfully, but these errors were encountered: