Convert int to binary 0 and 1

I need to convert the current frame number to a binary number and display it visually on the screen for a screen analyzer (similar to the screen below).
Anyone in here have any ideas on how to achieve this?

Capture.PNG

You want different value for odd and even numbers?
You can use binary AND operator for “frame number” AND 0x01 will make that.

Thanks for the reply.
I’m not sure I understand this 100%.
How would the bp setup look like?

The first binary number is just a constant for the analyzer to know where to look.
The number below is the actual frame count.

If you could please show in BP what you mean with using AND and 0x01, I would appreciate it

Since Im not sure about the binary operators in blueprint, I just brute forced it like this.

1 Like

Wow I cant believe that worked!! But Im a noob so…
Thanks for the help!!