HID Gamepad - not more than 16 buttons?
Is there a limit as to how many digital buttons a HID gamepad supports?When I increase the USAGE_MAXIMUM beyond "Button 16" my computer doesn't accept any inputs from the device anymore - not from any...
View ArticleRe: Local (home network) ONLY!
lsunkb wrote:Won't denying any incoming or outgoing connections for Any Process block Local Connections too?No, because of rule priority. Narrowly-defined rules have precedence over broader ones, so if...
View ArticleRe: HID Gamepad - not more than 16 buttons?
At first I thought it might be an issue with the report being longer than 8 bytes for a low-speed device, but when I pared it down to just buttons (so as to get the report <= 8 bytes), no matter...
View ArticleRe: PowerSwitch on Attiny2313A
blargg wrote:Did you program all the fuses the same as on the attiny2313a? (and not rely on any defaults, i.e. not write some of the fuse bytes)The AVR-OSPII despite choosing the option of programming...
View ArticleVersion 6 Themes not working
I have been trying to fix this for months.The themes don't show up in LB.I can select them by command-space and picking a theme but if I go to the prefs and try to select them there, this is what I...
View ArticleRe: HID Gamepad - not more than 16 buttons?
Thanks for the reply! Good to know that I don't have some brainfart regarding this issue. I haven't solved the issue yet but it turns out that creating a device that registers itself as joystick (6...
View ArticleRe: HID Gamepad - not more than 16 buttons?
blargg wrote:Going back to your original report, as described in an older posting, to use a report longer than 8 bytes, one must still make multiple calls to usbSetInterrupt() (a single did not work)....
View ArticleInsert text from an action result (like a snippet)
Hi, I'd like to know if it's possible to insert text from an action result. I haven't found information for this problem.E.g., I run an action which returns me (from a JSON output):- value 1- value 2-...
View ArticleRe: HID Gamepad - not more than 16 buttons?
Thanks for elaborating and reminding me that confirmation of issues is valuable too.I wanted to figure out why there were separate classes for Game Pad and Joystick. I wasn't able to find out any more...
View ArticleRe: PowerSwitch on Attiny2313A
Fuses are always the thing I forget. It's sort of like having two apparently identical PCs, where one has some problem, and you eventually track it down to some obscure CMOS setting that differed....
View ArticleRe: Missing "show in context" shortcut in LB6.1
(If you have used Right Arrow (instead of Return) to open a “Recent” sublisting you have to first use option-Left-Arrow to follow the selected item back.)this is what I was missing, thanks!
View ArticleRe: HID Gamepad - not more than 16 buttons?
I wanted to figure out why there were separate classes for Game Pad and Joystick. Yeah I ran in to this as well. Joystick is mainly for flight application as it has ruder and throttle controls. The...
View ArticleUSB Combodevice (Keyboard & Joystick) - problems with report
Hi all,this is more or less a followup question to my previous thread http://forums.obdev.at/viewtopic.php?f=8&t=9311.How does a combo-device that registers itself as keyboard (REPORT_ID = 1) and...
View ArticleRe: USB Combodevice (Keyboard & Joystick) - problems with re
Hmmmm.... quick update. I just thought "ok I'll test this one more thing": while (1) { usbPoll(); wdt_reset(); // keep the watchdog happy readKeys(); // keyboard...
View ArticleRe: [LB 6 Action Request] Action to Search in Airmail
unfortunately this is now broken - can anyone help with a fix? thanks.
View ArticleRe: USB Combodevice (Keyboard & Joystick) - problems with re
Note the last 0x00 byte after sending the correct amount of data for all reports.IT WORKSNow... Can anyone explain to me why the hell I need to send that additional byte?Sounds to me like your count is...
View ArticleRe: LS and Xcode 6
I'm experiencing the same thing. If you make any progress with this please update the thread.
View ArticleRe: USB Combodevice (Keyboard & Joystick) - problems with re
Hmmm yeah well generally I agree it'll have to be something like that but your counting is off. The last two INPUTs are 4 bits each, so thats one byte overall. My own counting here: 0x05, 0x01,...
View Article