The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

Time-stamped file recording joystick button presses

This is for an experiment we are running in our lab. First the script asks for a participant number and creates a file in C: . During the experiment a participant with a gamepad presses a single ...
0
votes
1answer
20 views

How to run animation with joystick position?

This is my code...how to run animation with joystick position. if joystick full strectched then animation show fast. otherwise slow [[CCSpriteFrameCache sharedSpriteFrameCache] ...
0
votes
1answer
19 views

Joystick USB definition for use with Arduino

I'm trying to write the control code for a custom joystick, and I cannot find any reference to what needs to be implemented to be recognized by a computer as a joystick. I can see what things I need ...
-2
votes
0answers
42 views

iPhone 3d joystick Image animation [closed]

I need to build a simple joystick XY but 3-d. Something like: [1]: http://www.alessandro-petrolati.it/1.png [2]: http://www.alessandro-petrolati.it/2.png [3]: http://www.alessandro-petrolati.it/3.png ...
1
vote
2answers
59 views

Java on screen virtual joystick control

I need a on-screen virtual joystick solution to control external device - a cart. My program is written on Java/Swing and it works on windows rugged tablet with resistive touch screen. There's no x-y ...
1
vote
1answer
89 views

Joystick + c# : Analog button

I am using Microsoft DirectX to get access to my gamepad. This is an usb gamepad like this one: I could get access to know when buttons are pressed and also the analog values of the axis... The ...
0
votes
1answer
59 views

Keep getting garbage value

I am working on a program that takes an axis value from a USB joystick and sends it over TCP. What I did is first get the TCP program working so I can send messages which was working as expected. Then ...
0
votes
0answers
55 views

Android joystick won't show up

I am working on a project right now in Android, and we have been using an edited joystick class that has been great! However, when optimizing the code for the project, I used Lint in Eclipse to ...
4
votes
1answer
91 views

pygame: detect Joystick disconnect, and wait for it to be reconnected

I'm using a pygame.joystick.Joystick object and want to be able to print a message asking the user to reconnect a usb joystick once it's been unplugged. right now I have (roughly): js = ...
1
vote
1answer
86 views

Box2D and SneakyInput collision detection

I am creating a game, where there is a ball, and there are some rectangles, as they were tables. Well, it's working with Box2d, so I can move the ball freely with my SneakyInput joystick, and here is ...
1
vote
1answer
58 views

Get Button Inputs in Java

so im writing an application that is supposed to use 6 game pads as input. i have found alot of documentation about a library called JINPUT. but the official download link gives me a 404 error. it ...
0
votes
3answers
87 views

What is the most efficient way to quickly understand how a complex LabView VI works?

What is the best way to understand a complex LabView VI that controls a motor? My goal is to control the motor from a joystick. The wiring diagram shown below allows a LabView user to control the ...
1
vote
1answer
85 views

pygame.key.set_repeat for Joystick

I'm building a menu using pygame and I want to make it navigable using a specific gamepad. Ideally I want to be able to press and hold *down" on the D-pad repeatedly, or get something like on a ...
0
votes
1answer
151 views

How to access a joystick/gamepad from Mono/C# in Linux?

I'm working on a robotics project using C# on a Raspberry Pi running Debian. I've gotten a PS3 DualShock controller paired with the OS, so that it appears as joystick device /dev/input/js0. Now I'd ...
1
vote
1answer
135 views

joystick control/navigation using python in ros

I'm a beginner in ros. I want to get some data from joystick. I'm a python fan - don't much know the cpp. I would like to connect my joystick in a usb port, and want to create a node(/package) that ...
0
votes
0answers
63 views

Use the iOS Camera Connection Kit to communicate with a standard Joystick

I'm new to iOS development but I'm a well seasoned .Net developer. I currently have a custom made hardware made from a standard usb joystick and an electric pusher that is soldered to one of the ...
0
votes
0answers
62 views

pygame does not detect joystick

I have a logitech dual action controller that pygame doesn't seem to detect. I tried something simple to start: pygame.init() pygame.joystick.init() x = pygame.joystick.get_count() print( x ) which ...
0
votes
1answer
103 views

How can I list available input devices with haxe?

I would like to list all the input devices available when I launch an application, but I can't find a way to do that in the API. How can I get a list of available keyboards, mice, gamepads, touch ...
0
votes
1answer
89 views

Using USB gamepad from Java app

Is there any way to use my generic usb gamepad from my java application? Thanks.
2
votes
1answer
322 views

Simple joystick hid report descriptor doesn't work

Using atmega8 chip and V-USB library I made a little bridge to connect my NES gamepad to USB. At first I used one of examples as my hid descriptor and so... I had my device correctly recognized in ...
0
votes
0answers
113 views

Using Matlab with an ardunio and an accelerometer

Using Matlab with an ardunio hooked to an accelerometer. I would like to use the accelerometer like a joystick (i.e. if I tilt the accelerometer to the left, the object will move the the left, and ...
0
votes
1answer
38 views

Transforming analog keypresses to digital

In python I want to simulate a joystick that when used, to give values between -63 and +63 let's say. When the value it's positive, I want to press the "w" key and "s" key when negative. I am not ...
2
votes
4answers
138 views

Joystick won't work using SDL

I'm building a simple game in SDL. I've been through countless tutorials and I've clearly missed something as it still ignoring my Joystick completely In my constructor ...
0
votes
1answer
880 views

Joystick API Android

Android 3.1+ suppor joystick and gamepad, but there's no any example. I tried to use onTrackballEvent and it didn't work. How can I use joystick in my Android App?
0
votes
1answer
128 views

With SDL joystick handler, I want to keep doing something while the hat is pressed in

Currently when I hold down a direction on the d-pad (hat in sdl) my code only executes once, here is my code: while (SDL_PollEvent( &event )) { switch (event.type) { case SDL_QUIT: ...
0
votes
0answers
212 views

Rotation Joystick IOS Unity3D

I have a serious bug when rotating the joystick on iOS. The camera bug when doing a completely continuous rotation firstcontroller. Is anyone already faced this problem? Thank you in advance P.S my ...
0
votes
1answer
116 views

VB.NET - Convert joyGetDevCaps function from VB6 to VB.NET

I am clueless how I should convert the following API to VB.NET Private Const MAXPNAMELEN As Long = 32& Private Type JOYCAPS wMid As Integer wPid As Integer szPname As String * MAXPNAMELEN wXmin ...
0
votes
0answers
211 views

map joystick view from android to mouse cursor

I am using the following view in my project http://www.zerokol.com/2012/03/joystickview-custom-android-view-to.html and I am trying to send the infos from the view to my PC over Bluetooth. I can send ...
0
votes
2answers
113 views

Can joystick/gamepad events be captured in the X11 event loop?

Win32 has the winmm library, which allows joystick events to be captured in the regular event loop (alongside the general window events, keyboard events, and mouse events). Is there a similar setup ...
2
votes
2answers
340 views

USB controller will not work in Pygame

I have a USB controller that I have mapped to be the arrow keys on the keyboard, outside of gaming programs (as in, you can use it as the normal arrow keys on the keyboard). I did this using the ...
1
vote
0answers
204 views

Why will only one axis of the Xbox 360 controller work when I've coded for both? (VB.Net)

First of all I'd like to point out I'm an extreme novice, and I fear I may be in over my head here. My issue lies within trying to make the left joystick of the Xbox 360 controller control separate ...
0
votes
0answers
76 views

How to detect foot pedal in flash?

I'm trying to create a game in flash (AS3) which will control a plane. For now, I have the support for the keyboard but now I want to add support for usb joystick and also usb foot pedals. How can I ...
0
votes
0answers
44 views

wxPython joystick axis move does not generate an event

My program needs to use joystick axes as an absolute input. The problem is that under linux(i'm using Fedora 16) the movement of the axes does not generate a joystick event. Also this sometimes can ...
1
vote
1answer
80 views

sneakyjoystick alternatives for non-cocos2d project?

I am working on a project that is in need of a good virtual joystick, but cannot be Cocos2d. sneakyjoystick seems to be the most popular but is pretty intertwined with Cocos2d. Are there any good ...
4
votes
3answers
774 views

Java usb input platform independent

I'm struggling to find a Java API that enables to grab the input of any device connected through USB. I've found jUsb but it seems deprecated and old. What I would like is: - a platform independent ...
0
votes
0answers
195 views

Make joystick on android cocos2d [closed]

I'm making a game in cocos2d for android. And I need to make a joystick, I am beginner in android and I have no idea how. Please if anyone can let me some tutorial or example that has taught me to ...
2
votes
1answer
111 views

Multitouch for two draggables Jquery

i have two draggables that work as a joystick. So, i have to be able to get one event in each joystick. I am using a library called touch-punch but it is not multitouch. I have created my own ...
4
votes
1answer
740 views

Gamepad & Joystick support on Mac OSX at user space

I have been searching through how to do gamepad & joystick support on Mac for some days and all resources that I found seems to suggest a pre-installed driver along with using Apple's HID API, ...
0
votes
1answer
369 views

Using pygame Joystick in pyglet

I'm trying to write a simple game with pyglet but use pygame for gamepad input. The following code successfully prints axis values to the command line, but aside from importing pyglet, doesn't ...
0
votes
1answer
302 views

Using SneakyJoystick in a layer to control a game character in a different layer

What I'm trying to achieve is the ability to use a Cocos2d SneakyInput SneakyJoystick to control the movement of my LHSprite (created using level helper) Character/Player in my box2d/cocos2d game. I ...
1
vote
0answers
269 views

Simulate A Gamepad Input With C#

I'll simplify the situation to get rid of confusion. I want to make a program that only has 1 button in the program. Upon clicking the button, the program will simulate a generic gamepad button. I'm ...
0
votes
1answer
578 views

C# Joystick Input

I've got a Logitech Attack 3 (Standard Joystick) plugged into my computer and have confirmed that it is working. Now given that, I need a way via C# (only C#) to read the axis (and buttons would be ...
1
vote
0answers
59 views

Joystick in HUD layer

I want to give the image a joystick to HUD. The HUD file I have:   myJoystick = [CCJoyStick initWithBallRadius: 25 MoveAreaRadius: 65 isFollowTouch: NO isCanVisible: YES isAutoHide: NO ...
1
vote
0answers
63 views

Create a new keyboard key

When you connects you usb joystick to your Mac, it basically creates a new keyboard key for every button. I mean, when you press the left button in your usb joystick, you don't simple press the left ...
0
votes
1answer
110 views

Levelhelper sprite + SneakyJoystick

Basically i'd like to move a box2d body of a LHSprite that I created using LevelHelper. I have tried moving the box2d body of the LHSprite, based on weather my SneakyJoystick is active (that part ...
-1
votes
1answer
856 views

Unity single joystick prefab

I would like to controll movement and rotation ans cant seem to find an answer. Im working with 3.4 Unity
0
votes
0answers
119 views

Sneaky joystick, detect tap gesture, how to?

I'd like to know, how can I detect which joystich has been touched by user? I need to implement smth like this pseudo code: if ([self userHasTouchedSneakyJoystick: rightSneakyJoystic]) { ...
0
votes
1answer
263 views

Multiple uinput devices

Is it possible to create multiple uinput devices and if so how to do it? I'd like to create multiple separate game controllers. Thanks for any help.
4
votes
1answer
265 views

Algorithm of the joystick on the touchable screen

I would like to simulate an analog joystick on the touchable screen like this picture. When the center of the stick area is set to (cx, cy), how should I calculate X-direction ratio and ...
0
votes
1answer
121 views

Get List Of Connected Joysticks using VBScript

I'm looking for a way that I can get list of connected joysticks via VBScript just like in the picture below (I mean the order of them is highly important):

1 2 3