String to Binary Bang?

Hi!

I’m looking for a way to convert a text string into a binary blinking signal. I’m quite new to patching. Is there a specific note? I haven’t found one.

My approach would have been to split the string and send the spreads through a key analyzer…

But i’m shure there is a easyer way!
thnx for help!

greets :)

Well, we have a blinker node, but what string are you going to use?
U want the timing in the string, or is it just:

If WordA=WordB => Start blinking (see patch)

As always, some example patch makes us helping you easier.

BlinkUndBang.v4p (10.6 kB)

thx, but i’m looking for something different! i want to convert letters into their binary code (like A=01000001) and “blink” this code with a light.

ok, i tried it this way. works, but i hope that there is a more efficient way to do this?

greets

blink.v4p (12.0 kB)

Okay, with Ord (string) we convert a letter to the ASCII value, and with Radix (value) you can get the Binarie stuff (check the helpfile) hope it helps (a bit).

Here is something useful, hope it does what you want, forgot to post it last time.

BinBlink.v4p (40.0 kB)