QUOTE(soloinruds @ Jun 10 2012, 08:21 PM)
still figuring that one lol. will go and get the led and stuff when got time lol. Was thinking of using pcb, coz pcb will be more tidy. but then the procedure is quite troublesome, so i think i'll just use some simply wire connections. So i guess the component will be hanging inside the laptop, unless i glue the led to the case or something

And now i'm searching the correct method to route power from USB port. Coz the circuit i learnt is using 12V battery. Don think we have that much space inside the laptop lol. Might steal some idea from psp mod also, make it LED music box, blink together with the tempo
Added on June 10, 2012, 9:00 pmQUOTE(skyline100 @ Jun 10 2012, 04:45 PM)
Interesting, please share it here.
Though my previous experience with speech recognition was terrible.

sure no problem. First thing first, u need to activate ur windows speech recognition first(control panel). U can go thru some training so that ur computer can recognize ur laptop better. Then go to microsoft website and get the windows speech recognition macros.
http://www.microsoft.com/en-us/download/de...s.aspx?id=13045Ok. Then this is where the fun begin
Go to the tray icon there, u will see one new icon, right click and select new speech macro.
Then u will see some options. Personally i prefer the last option, the Advance(XML) one, coz its easier.
Then u will see this
<speechMacros>
<command>
<listenFor></listenFor>
</command>
</speechMacros>
I'll just briefly explain about above these stuff.
<speechMacros> this one is sort of like command starter tag. It tells the computer execute this XML file with speech macros
<command> this is what command u wan the computer to execute.
<listenFor></listenFor> this is where u put what u wan the computer to listen to. U put things u wan the computer to listen to inside
</command> this is the closing tag for the command. Well u start something surely u wan to end it also
</speechMacros> then u should know what this do now.
I give an example. With this example it should be pretty easy now.
<speechMacros>
<command>
<listenFor>Jarvis</listenFor>
<speak>Yes, sir.</speak>
</command>
</speechMacros>
hehe, sorry, iron man fanboy here. So basically what i just put is. When i said "Jarvis", my computer will respond by speaking back 'Yes, sir." Well the <speak> is to let the computer speak back. Well don really know how to make an AI, so use this instead to make it looks like and AI and impress ur fren xD.
Another example :
<speechMacros>
<command>
<listenFor>reboot computer</listenFor>
<speak>Restarting Windows</speak>
<run command="C:\Windows\System32\shutdown.exe" params="-r -t 00"/>
</command>
</speechMacros>
This one is, when i say 'reboot computer', the computer will respond by saying 'Restarting windows' then auto restart. If for shutdown, the parameters at the end of it change to -s -t 00.
Well hope these 2 examples will give u some idea what to do xD. Its quite fun actually. Will post some more examples later like empty recycle bin, increase volume and such later

Enjoy
This post has been edited by htpkevin: Jun 10 2012, 09:06 PM