If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Search found 143 matches
- Sat Aug 18, 2012 10:12 am
- Forum: General
- Topic: VST plugin host?
- Replies: 18
- Views: 58417
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 ...
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 ...
- 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 ...
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 ...
- 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.
- Tue Jul 17, 2012 11:38 pm
- Forum: Home Automation
- Topic: Has anyone made a simple timer system example
- Replies: 3
- Views: 71287
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:
Here's one I made earlier:
- 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.
Hence why it's better to do this the Ruby way.
- 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 ...
Also if for some reason your app. crashes and doesn't ...
- 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 ...
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 ...
- 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 ...
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 ...
- 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.
If you look inside something like the Moog Filter you will see the DSP code component used at the bottom level.
- Sat Jun 23, 2012 10:10 pm
- Forum: General
- Topic: OS version module
- Replies: 33
- Views: 53616
Re: OS version module
Here's some Ruby code that seems to work: