get control wheel with arduino - an alternative of joycon
hi,
i show off my project to get the control whell with arduino ( very usefull card :yum: )
in this example this is for renault clio 2
the scheme :
http://www.flickr.com/photos/6531052...57627217130720
the program on the card send a letter to serial port and with autohotkey or other do the action on the computer
the code arduino : http://pastebin.com/fk71UXy8
second, you need AACKEYS ( http://www.aacinstitute.org/Resource...s/AACKeys.html )
what do aackeys ? he read the serial port and transcribed to pressing a key
ex : ardiuno send "a" aackeys simulate a press on the key "a"
and an example of an autohotkey script:
e::
Send {Media_Next}
return
z::
Send {Volume_Up 1}
return
a::
Send {Volume_Down 1}
return
in french :
pour recupere les commandes sur une renault clio 2
voici le montage :
http://www.flickr.com/photos/6531052...57627217130720
Les A? et B? correspondent au commande au volant, je me suis branché directement dessus, les fils arrivant deriere l autoradio n etant pas les bons
pour a1 a2 b1 b2 b3 voir ici : http://www.forum-clio.com/index.php/topic,800.0.html
voila le code arduino : http://pastebin.com/fk71UXy8
ensuite j ai installer AACKEYS ( http://www.aacinstitute.org/Resource...s/AACKeys.html )
qui restranscrit ce qui recoit sur le port serial en touche du clavier, par exemple la carte arduino envoi au pc "a", on aura simulé un appui sur la touche "a"
je n ai pas reussi a faire envoyer des combinaisons de touches mais ca marche comme ca et ca me convient mais si quelqu un y arrive je suis prenneur
ensuite j utilise centrafuse qui prend en compte les raccourci clavier,
OU
avec autohotkey, un petit exemple :
e::
Send {Media_Next}
return
z::
Send {Volume_Up 1}
return
a::
Send {Volume_Down 1}
return