Updated Value conversion (markdown)

FalcoGoodbody
2020-09-09 22:23:20 +02:00
parent 71bb925ba6
commit 1406cf427a

@@ -54,7 +54,7 @@ plc.Write("DB1.DBD40", val.ConvertToUInt());
* Read bool from byte
```
byte myByte = 5; // 0000 0101
myByte.SelectBit(0) // true
myByte.SelectBit(1) // false
byte myByte = 5; // 0000 0101
myByte.SelectBit(0) // true
myByte.SelectBit(1) // false
```