3
Answers

Sound port

barak BN

barak BN

14y
2.3k
1
Hello,
I am coming with electronic backround, so I need some help with C# code.
I need to take a square wave from the sound port(microphone plugin) and converts it to DEC value.
for exmaple the wave 0001 will be number 1, or 0011 will be the number 3 (__|-|-| , LOW LOW HIGH HIGH)
Thank you.
Answers (3)
0
marqs

marqs

NA 4 0 15y

Thanks for your help!
0
Mahesh Chand

Mahesh Chand

2 286.9k 123.7m 15y
How many files are you converting to thumbnails too? Are there too many files? You may want to put this process in a worker thread and have your UI display a status message after every file is converted. To test it, try one or two files to see if program is working fine.

Also, you may want to put a try..catch..finally block around your code and put Dispose method in finally to make sure bitmaps are being disposed. If there is an error in your code before Dispose, bitmaps may not being disposed.

Debug .. debug .. I always suggest debug line by line to see how long your code is taking and what it is doing.