Search found 13 matches

by rob.keij
Wed Nov 23, 2022 10:34 am
Forum: General
Topic: Slack Discord and Alpha ?
Replies: 5
Views: 14620

Re: Slack Discord and Alpha ?

I was already invited for slack but while trying to added on a new Desktop pc I can find the support flowstone?
Is it stopped?


best regards,

Rob
by rob.keij
Sun Jul 12, 2015 9:14 am
Forum: General
Topic: edit text (blinking text)
Replies: 1
Views: 6247

Re: edit text (blinking text)

After the first click the text is selected, after the second click deselected.
By me the text stays visible.

I thought this has something t e do with the Trigger input:

Forces the Edit control to
start editing without the need
for a mouse click

( Component Reference.pdf )

But I see no ...
by rob.keij
Tue Jun 16, 2015 10:37 pm
Forum: General
Topic: Is there a easyer/faster way to draw 64 point from an array
Replies: 4
Views: 9656

Re: Is there a easyer/faster way to draw 64 point from an ar

Myco,

It works :roll:

I do my best to know more about the ruby posibilities but you are very fast in answering....

When do I receive your invoice?
by rob.keij
Tue Jun 16, 2015 10:10 pm
Forum: General
Topic: Is there a easyer/faster way to draw 64 point from an array
Replies: 4
Views: 9656

Is there a easyer/faster way to draw 64 point from an array

Is there a faster or easyer way to draw a 64 point curve ?
This is working ok but I think there must be a better way.


v.drawCurve p_ch2,[
[ 10 , @c[0 ]] ,
[ 15 , @c[1 ]] ,
[ 20 , @c[2 ]] ,
[ 25 , @c[3 ]] ,
[ 30 , @c[4 ...
by rob.keij
Tue Jun 16, 2015 10:00 pm
Forum: General
Topic: Array in Ruby component
Replies: 6
Views: 12785

Re: Array in Ruby component

Thanks for the all information,

I'm 5 steps further in my program,

regards,

Rob
by rob.keij
Mon Jun 15, 2015 10:29 pm
Forum: General
Topic: Array in Ruby component
Replies: 6
Views: 12785

Re: Array in Ruby component

Thanks, for the explanation,

Very clear I implement it tommorrow
by rob.keij
Mon Jun 15, 2015 9:32 pm
Forum: General
Topic: Array in Ruby component
Replies: 6
Views: 12785

Array in Ruby component

If I make an array in a ruby component c = Array.new(64,52) # 64 elements with a value 52

and I initialisize the elements with a value of 52 and by every call of this ruby component I change 1 element.

so after 64 calls I have 64 avaraged values? No..... every time the other 63 element are ...
by rob.keij
Sun Jun 14, 2015 10:40 pm
Forum: User Examples
Topic: splitting a block of 256 bytes in 64 values
Replies: 3
Views: 11881

Re: splitting a block of 256 bytes in 64 values

@MyCo

Thanks MyCo, I'm a lot further now, The speed is good, and I'm working on the next problem to solve.

Thanks,



Rob
by rob.keij
Sun Jun 14, 2015 9:05 am
Forum: User Examples
Topic: splitting a block of 256 bytes in 64 values
Replies: 3
Views: 11881

Re: splitting a block of 256 bytes in 64 values

Thanks, this is a good starting point I work it out....
by rob.keij
Sun Jun 14, 2015 8:20 am
Forum: User Examples
Topic: splitting a block of 256 bytes in 64 values
Replies: 3
Views: 11881

splitting a block of 256 bytes in 64 values

I have 64 16 bit numbers which I convert to a HEX format.
The HEX format will consist of 4 bytes with ASCII characters.
In this way, it is good to process the data to eventually again to have a decimal number.

I ask every time 64 values so 256 bytes at a time.

1) I divide it into sections of 256 ...