Using the Set Bit Block
-
I am trying to use the set bit block and having problems. I have attached a simple program to illustrate the problem.
The python code generated is
On an M5Core, I get the error
unsupported types for or:'NoneType', 'int'
Can someone help me to resolve the problem?
Allan
-
Hello @uppermill
try to set
var1
to 0 before setting the bit.var1 = 0 var2 = (var1 | (0x01 << 0))
Thanks
Felix -
Thanks - elementary error on my part. Problem resolved.
Allan