- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Re: G930 headset auto shut off
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-16-2011 12:40 PM - edited 04-17-2011 12:40 PM
Is it really so difficult to answer such an easy question?
Cmon guys ![]()
Re: G930 headset auto shut off
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-16-2011 10:16 PM - edited 04-16-2011 10:17 PM
Huh? this is a user forum, if you want an official answer ask support.
Yes, the auto shut off is a feature of the software.
My current plugins (v1.9) for the legacy G930 drivers:
http://forums.logitech.com/t5/Headphones-Headsets-Microphones/G930-Keyboard-and-Mouse-Emulation-Plugins/td-p/503848
Re: G930 headset auto shut off
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-18-2011 07:51 AM - edited 04-18-2011 07:51 AM
Re: G930 headset auto shut off
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-30-2011 07:51 AM
For those having disconnections problems (not the auto shut off stuff) I might have found a solution. Follow the link to the related forum post and check if it helps. Tks! http://forums.logitech.com/t5/Headphones-Headsets-
Re: G930 headset auto shut off
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-01-2011 09:40 PM - edited 05-01-2011 09:41 PM
- I fixed the problem. The reason why the problem came back was because the trainer that was created by a previous person went out of date because of the driver updates. I have updated it
Re: G930 headset auto shut off
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-11-2011 04:32 PM
Many thanks to Asmodian and the others in this forum. I just got setup with my G930 and wanted to share some tips relevant to this forum as a way of saying, "Thank you!"
I HIGHLY recommend running AutoHotkey... your productivity will sky-rocket and the capabilities are awesome. Anyway, here are some awesome solutions for G930 that I whipped up today:
1. for the auto-off fix, I just have the following snippet at the top of my .ahk file - it's the last code that gets run before any hotkey definitions. The code simply plays a wav file every 9.67 minutes. The loop will run forever but hotkeys below this code will still get loaded no problem. I'm using Asmodian's silence.wav (thank you!)
while TRUE
{
Sleep, 580000
SoundPlay, C:\Media\silence.wav ; just enough to simulate activity
}
2. You can also easily program the G buttons to do anything. In the G930 program, set the G keys to the following:
G1 - PowerDVD-Fullscreen
G2 - PowerDVD-Play/Pause
G3 - PowerDVD-Next Chapter
These commands simply issue keyboard scan codes (at least for me). Using AutoHotKey, I simply capture those scan codes and run whatever I want (of course, I don't use PowerDVD or these particular scan codes for anything else... if you do, try to find some other commands that issue keyboard scan codes and then use them instead. I found these scan codes by using the AutoHotKey key history utility) Here is the code in your .ahk file. Having the buttons answer and hangup skype is AWESOME:
;------------------------------ G930 KEYS ------------------------------
SC12C:: ; G1 BUTTON
SendInput {Media_Play_Pause}
return
SC139:: ; G2 BUTTON
SendInput ^!+{PgUp} ; My Skype answer hotkey
return
SC131:: ; G3 BUTTON
SendInput ^!+{PgDn} ; My Skype hang up hotkey
return
All of this works great for my Windows XP x64 setup, and all the buttons have an instant response. I hope this helps someone... good luck!
J. David
Re: G930 headset auto shut off
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-12-2011 01:22 AM
Thanks! A great option for disabling the auto-off feature.
My current plugins (v1.9) for the legacy G930 drivers:
http://forums.logitech.com/t5/Headphones-Headsets-Microphones/G930-Keyboard-and-Mouse-Emulation-Plugins/td-p/503848
Re: G930 headset auto shut off
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-17-2011 11:20 PM
Hi, I am considering buying this headset. However the "auto shut-off" issue sounds like a bit of a killer for my likely use scenario.
Has this actually been fixed or is it still an issue? It seems there is a working hack for this but I would be happier if the official software worked properly instead.
Re: G930 headset auto shut off
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-18-2011 04:14 AM
No, and I don't believe there will be anything official in the future. Logitech don't care about customer feedback. You should read other topics about g930 problems, because auto shut-off is not the only problem with this headset.
Re: G930 headset auto shut off
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-19-2011 02:12 AM
Thanks. It seems like I will not buy one based on the information I am finding here. It seems very disappointing that logitech have not sorted out such an obvious problem.
