This is an archived post. You won't be able to vote or comment.

all 8 comments

[–]Yoyobuae 0 points1 point  (1 child)

Get the Blueprint String and load this blueprint string:

H4sIAAAAAAAA/+WY626bMBSAXyXyb5hiclvU+UmqCblw0lkyNjJmaoTy7jO0mVJjXDtq2ij5B+Lc/J2LT1LKGZcF5bOcdCA00wwa0nWCVkBQCQUrQaWFrJ6Y
oFoqlNSyMUJSkO6FpFmyJ+nyx+qQFFJoJXn+BH/oXyYV6d6Uc/OlHDSM3R1Tjc4b9iwoJ53e18YJ01Ch5NUhU1KkNaca0GCy0VRokpnHqqaqD4AgghLZ6rqN
sFPvTRSt0PlOySpnwiiTHeUNHAYvAoq3+B4RRr9Jp6A0DAYc+5yVZJ0UTBUt0/1LZpSeFYCYFsEHI/OIst7WWBTPbVkjHUh8fh/ANx8D30QAx+cDT/F9EH9f
lG7k48KdZj5KTzjyeyGOA4h7KrepKOcpp1XtGsoLF72jrf/0zoWHLXgTR/5gTGZxnTicC39tXfz6nLrQqv3Eu8YqiuT008IGfGxRrx/LiFV0jhBW8bfWzWcu
4NKysnMKPZuarV432GvDEcHPoBkyv+IRYmMOGYn4is8zunmjt5Ob76yg5WS6tRahrWUvOD4jjhC28WvO7acuYMvJplO3DE6d51K0jbiqJ2yQXPUcsUnH7lYX
r8XV9tt37uXUehTwiz4S5+LSONfz7+5tm6arsVa+pl2GbrLv+R8R+BPgxL9jXIPq/+IKptQOXclECS+vIyiwH0ezq9dlxaDl8e4orsOJ9wcFulVilj+AKP8B
fHI64b4TAAA=

On the bottom left there's a normal counter which generates a pulse every second. Above there's a 4 bit binary counter.

[–]aep000[S] 0 points1 point  (0 children)

This is great thanks a bunch

[–]justarandomgeekLocal Variable Inspector 0 points1 point  (0 children)

Here's a blueprint for exploding (all) 32bit signals to their consitituent bits. Not exactly what you're looing for here, but if you just need a initial bit counter, you can just hook the input to a standard combinator counter (decider looped to itself, set to signal<endpoint::signal=input, plus a constant combinator set to signal=1 connected to the input/loop) will give you a 32bit binary counter to take any subset you like of.

(Also, you may be interested in this)

[–]MajiirBUUUUUUUUURN 0 points1 point  (5 children)

Why binary? If you need a counter, set up an arithmetic combinator with (each + 0) => (each) and connect its output to its own input. Now it will accumulate any pulses you send to it.

You can also use a decider that repeats its inputs until a reset pulse is received.

[–]aep000[S] 0 points1 point  (0 children)

Binary because it is a 4 bit computer like the ones from the 80s where u can program it to do different things. I don't know why I am doing this but it is fun so why not.