Search found 143 matches

by Embedded
Sat Aug 18, 2012 10:12 am
Forum: General
Topic: VST plugin host?
Replies: 18
Views: 58416

Re: VST plugin host?

You can't use VST plugins within a schematic only create them. Convolution is a difficult one as it is very cpu intensive and lends itself to being hard coded in C.

You can do DSP functions in the Ruby Module on real time audio but it will be slower than hard coded optimized C. So the best solution ...
by Embedded
Thu Aug 16, 2012 3:53 pm
Forum: General
Topic: Displacement of frequency by a sound card.
Replies: 2
Views: 11281

Re: Displacement of frequency by a sound card.

There are so many things that will effect your circuit.

1) Driver Latency (Direct Sound can have a delay of around 0.5 seconds)
2) No speaker can truly represent a square wave, it always gets rounded and split into several frequencies(do an FFT).
3) Your mic will have a specific frequency response ...
by Embedded
Sat Jul 28, 2012 5:25 am
Forum: General
Topic: Labjack and data collection
Replies: 12
Views: 41564

Re: Labjack and data collection

The LabJack module is configured by the setup string. Adding some DO elements should activate the digital outs providing they are free and not already allocated.
by Embedded
Tue Jul 17, 2012 11:38 pm
Forum: Home Automation
Topic: Has anyone made a simple timer system example
Replies: 3
Views: 71285

Re: Has anyone made a simple timer system example

You just need to use the time module to get a real time clock to compare to.

Here's one I made earlier:
by Embedded
Tue Jul 17, 2012 11:31 pm
Forum: General
Topic: A one instance
Replies: 20
Views: 57397

Re: A one instance

The only way is to use the fullscreen mode.

Hence why it's better to do this the Ruby way.
by Embedded
Tue Jul 17, 2012 10:01 am
Forum: General
Topic: A one instance
Replies: 20
Views: 57397

Re: A one instance

You could write a text file to disk, if it exists then close the second instance. But you will have to manage your program exit to delete the file before exiting (so disable close on ESC and make your own close button using the EXE Quit module).

Also if for some reason your app. crashes and doesn't ...
by Embedded
Mon Jul 16, 2012 12:04 pm
Forum: General
Topic: A one instance
Replies: 20
Views: 57397

Re: A one instance

One way would be to use the Ruby Module, and write some Ruby code to see if there is already an instance running.

Looking at some web posts it seems people open a file and lock it, if the file is already open then don't allow the 2nd instance (ie. close it straight away).

Here some Ruby Code I ...
by Embedded
Sat Jul 14, 2012 10:27 am
Forum: General
Topic: Learn FlowStone in five days!
Replies: 3
Views: 10687

Learn FlowStone in five days!

As an active forum member I get regular requests on the best ways to learn FlowStone, so I thought I’d make a quick post to help newbies get started.

1) Register & download the FREE version and install it on your PC.
2) Make the Tool Box Filters visible – these help beginners find the modules they ...
by Embedded
Sun Jun 24, 2012 6:00 am
Forum: DSP
Topic: FIR filter
Replies: 4
Views: 19340

Re: FIR filter

If you want to make your own filter then you can use the DSP code component.

If you look inside something like the Moog Filter you will see the DSP code component used at the bottom level.
by Embedded
Sat Jun 23, 2012 10:10 pm
Forum: General
Topic: OS version module
Replies: 33
Views: 53615

Re: OS version module

Here's some Ruby code that seems to work: