Search found 5757 matches

by Matlo
Thu Oct 18, 2012 7:08 am
Forum: French corner
Topic: code Teensy board
Replies: 2
Views: 4974

Re: code Teensy board

Le code du firmware pour PS3 est dispo sous licence GPL ici : http://code.google.com/p/diyps3controll ... ick-serial
by Matlo
Thu Oct 18, 2012 7:05 am
Forum: Introduce Yourself
Topic: Salutations Française...^^
Replies: 2
Views: 3919

Re: Salutations Française...^^

Bienvenue :)
by Matlo
Wed Oct 17, 2012 6:42 am
Forum: GIMX Discussion
Topic: Gimx Macros on Ubuntu
Replies: 3
Views: 5716

Re: Gimx Macros on Ubuntu

by Matlo
Mon Oct 15, 2012 8:57 pm
Forum: General Discussion
Topic: usb to bluetooth keyboard
Replies: 1
Views: 3535

Re: usb to bluetooth keyboard

Moved to General discussion section.

The question was already asked in the following topic: http://gimx.fr/forum/viewtopic.php?f=3&t=633
by Matlo
Wed Oct 10, 2012 9:14 pm
Forum: Feedback
Topic: Multiple Macro Sheets
Replies: 3
Views: 6792

Re: Multiple Macro Sheets

Hi, I think it's a good idea. I was thinking of adding a new specific text file "triggers.txt" in the macro directory, with the following syntax: #<COMMENT> <CONFIG FILE> <DEVICE EVENT> <ID> <MACRO FILE> <COMMENT>: a comment, not interpreted <CONFIG FILE>: the config file the macro applies...
by Matlo
Mon Oct 08, 2012 12:09 pm
Forum: Support
Topic: Joystick Problem axis
Replies: 3
Views: 4314

Re: Joystick Problem axis

Moved again. You are asking for help. The support section is actually where people get help... Before asking for help, please: read the official wiki read the FAQ check the list of known issues If the above suggestions do not help, create a thread with a clear subject, and describe your issue. Don't...
by Matlo
Sat Oct 06, 2012 3:45 pm
Forum: Support
Topic: Joystick Problem axis
Replies: 3
Views: 4314

Re: Joystick Problem axis

Moved to the support section.

Please read this: http://forum.gimx.fr/viewtopic.php?f=5&t=691 and give more details.
by Matlo
Fri Oct 05, 2012 5:55 pm
Forum: GIMX Discussion
Topic: AutoHotKey With GIMX
Replies: 17
Views: 16780

Re: AutoHotKey With GIMX

Without delay the press duration will be 0 (unless you change it using SetKeyDelay), which will result in missed events.

http://www.autohotkey.com/docs/commands/SetKeyDelay.htm
by Matlo
Fri Oct 05, 2012 9:36 am
Forum: Support
Topic: DIY USB adapter not working
Replies: 12
Views: 15789

Re: DIY USB adapter not working

Another suggestion:
  • try GIMX with a Ubuntu Live CD/USB
The result will tell us if the problem comes from the adapter or from your Windows setup.
by Matlo
Thu Oct 04, 2012 4:21 pm
Forum: GIMX Discussion
Topic: AutoHotKey With GIMX
Replies: 17
Views: 16780

Re: AutoHotKey With GIMX

You have to add a delay (at least 1000/frequency ms) between the up and down events:

Code: Select all

Send {w down}
Sleep, 50 ; ms
Send {w up}
http://www.autohotkey.com/docs/commands/Send.htm