Recently an interesting question came up about converting a number to binary within Seeq. The goal was to convert an integer (0-255) to an 8-bit binary number.  This can be done by dividing the integer by 2, 8 times and keeping track of the remainders.  More information about binary numbers can be found here. https://en.wikipedia.org/wiki/Binary_number   Note: For this conversion to work the input signal needs to be an integer between 0 and 255, also it cannot have units. Below is
    • Thanks
    • Like
    2