The <readbit> block reads a bit from an integer
•« in » : This is the integer from which a bit is extracted. The default value is 0 (type: int)
•« bit# » : This is the bit number, from 0 to 63 (or higher). The default value is 0 (type: int). Since an int in Python has no upper limit, “bit#” can be greater than 63.
•« bit » : This is the value (True/False) of bit “bit#” in “in”
The “in” and “bit#” inputs are of type: int
The “bit” output is of type: booll
See also the <writebit> block