Logitech Wingman
|
|
Bookmark Logitech Wingman |
Logitech WingMan Precision Gamepad Game pad - 4 button - Metallic gray - PCw/ Trigger, 8-way cross keypad
Get the look and feel of a high-end game controller, without the high price! Designed with your comfort in mind, the WingMan Precision is a solid choice for beginning players. This easy-to-configure powerhouse will satisfy both gaming experts and novices alike with its digital controls, turbo mode support, plus newly designed triggers and D-pad. [ Report abuse or wrong photo | Share your Logitech Wingman photo ]
Manual
Preview of first few manual pages (at low quality). Check before download. Click to enlarge.
Download
(English)Logitech Wingman, size: 760 KB |
Related manuals Logitech Wingman Formula Force GP Quick Start Guide |
Logitech Wingman
Video review
Logitech WingMan Formula Force GP
User reviews and opinions
| pwalleck |
11:16pm on Friday, October 15th, 2010 ![]() |
| It has the perfect amount of buttons to run most games. I have NBA, Madden, NFSUG2, etc. This is the best controller ive ever used (consol or rpg) except for the placement of the analog sticks. Bought these because of reccomendations in PC Gaming magazines. | |
| chofa22@yahoo.com |
2:45am on Friday, September 17th, 2010 ![]() |
| Not good at all and now superseded.... I looked at the various wireless controllers for the PS2 and settled on this one. But was v.disappointed. wingman cordless rumblepad this is a great pad, with all the features you need, firstly the wireless range is great. | |
| Hugo Eyng |
11:56am on Monday, September 6th, 2010 ![]() |
| I bought this gamepad to replace the Logitech rumblepad that I had, and then I bought a Saitek gamepad, horrible choice, so I bought this one! | |
| maxpublic |
2:56am on Friday, July 9th, 2010 ![]() |
| Quailty Equipment Overall this a good peice of hardware. So worth while this is a great piece of additional equipment to your PC, it makes organisation so easy and so quick. | |
Comments posted on www.ps2netdrivers.net are solely the views and opinions of the people posting them and do not necessarily reflect the views or opinions of us.
Documents

Logitech Wingman 3D Class Driver for QNX - Reference Manual
Vilas Kumar Chitrakaran
Mon Aug 28 15:21:10 2006
Contents
1 Logitech Wingman 3D Class Driver for QNX Hierarchical Index 1
1.1 Logitech Wingman 3D Class Driver for QNX Class Hierarchy.
2 Logitech Wingman 3D Class Driver for QNX Class Index
2.1 Logitech Wingman 3D Class Driver for QNX Class List.
3 Logitech Wingman 3D Class Driver for QNX File Index
3.1 Logitech Wingman 3D Class Driver for QNX File List.
4 Logitech Wingman 3D Class Driver for QNX Class Documentation
4.1 Wingman3D Class Reference. 4.2 wingman_data Struct Reference. 4.3 wingman_device Struct Reference. 4.4 wingman_report Struct Reference.
5 Logitech Wingman 3D Class Driver for QNX File Documentation
5.1 Wingman3D.hpp File Reference.
Chapter 1
Logitech Wingman 3D Class Driver for QNX Hierarchical Index
1.1 Logitech Wingman 3D Class Driver for QNX Class Hierarchy
This inheritance list is sorted roughly, but not completely, alphabetically: Wingman3D. wingman_data. wingman_device wingman_report.. 14 15
Generated on Mon Aug 28 15:21:for Logitech Wingman 3D Class Driver for QNX by Doxygen
Chapter 2
Logitech Wingman 3D Class Driver for QNX Class Index
2.1 Logitech Wingman 3D Class Driver for QNX Class List
Here are the classes, structs, unions and interfaces with brief descriptions: Wingman3D (The class Wingman3D provides an interface to the following Logitech (Vendor ID: 0x046D) USB HID compliant joysticks: ). wingman_data (A structure for holding wingman joystick data ). wingman_device (A structure for wingman devices (for driver internal use) ). wingman_report (A structure for device reports (for driver internal use) ). 14 15
Chapter 3
Logitech Wingman 3D Class Driver for QNX File Index
3.1 Logitech Wingman 3D Class Driver for QNX File List
Here is a list of all les with brief descriptions: Wingman3D.hpp. 17
Chapter 4
Logitech Wingman 3D Class Driver for QNX Class Documentation
4.1 Wingman3D Class Reference
The class Wingman3D provides an interface to the following Logitech (Vendor ID: 0x046D) USB HID compliant joysticks:.
#include <Wingman3D.hpp>
Public Member Functions
Wingman3D (int devNum=0) Wingman3D () int getX () const int getMaxX () const int getY () const int getMaxY () const int getTwist () const int getMaxTwist () const int getNumButtons () const bool isButtonPressed (int button) const int getSliderValue () const int getMaxSliderValue () const int getHatSwitchStatus () const bool isStatusOk () const char getStatusMessage () const void printDeviceInfo (int verbosity=1) const
Protected Member Functions
wingman_data_t getWingmanData () const wingman_data_t getWingmanMaxData () const
4.1.1 Detailed Description
Wingman Extreme 3D Digital (Product ID: 0xC212) Force3D (Product ID: 0xC283) (no force feedback support) Extreme 3D Pro (Product ID: 0xc215)
To use the joystick please ensure that the USB manager (devu-uhci or devu-ohci) and manager for HID devices (io-hid) are running. Your application will also need to be linked with the HID library libhiddi.so and the library created by this class. You will need to be root to use this class. Here are the commands to start the device managers (as root) :
/sbin/devu-uhci & (or /sbin/devu-ohci &) /sbin/io-hid & mount -Tio-hid devh-usb.so &
Example Program:
//======================================================================== // Wingman3D.t.cpp : Example program for Logitech Wingman HID Joystick // // Author : Vilas Kumar Chitrakaran <cvilas@ces.clemson.edu> // Date : March 2, 2004 // Compiler : GNU GCC 2.95.3qnx-nto // Operating System : QNX Momentics 6.2.1 //======================================================================== #include #include #include #include "Wingman3D.hpp" <stdio.h> <stdlib.h> <unistd.h>
int main() { Wingman3D joystick(0); if( !joystick.isStatusOk() ) { fprintf(stderr, "%s\n", joystick.getStatusMessage()); return EXIT_FAILURE; } sleep(1); joystick.printDeviceInfo(3); while(1) { fprintf(stdout, "\nx: %03d y: %03d z: %03d slide: %03d hat: %03d buttons: ", joystick.getX(), joystick.getY(), joystick.getTwist(), joystick.getSliderValue(), joystick.getHatSwitchStatus()); for(int i = 1; i < joystick.getNumButtons(); i++) if( joystick.isButtonPressed(i) ) fprintf(stdout, "%01d ", i); if( !joystick.isStatusOk() ) return -1; } return EXIT_SUCCESS; }
4.1.2 Constructor & Destructor Documentation
4.1.2.1 Wingman3D::Wingman3D (int
devNum = 0)
The default constructor. Establishes connection with the HID driver.
Parameters:
devNum The address of the joystick device to connect to (default = 0).
Wingman3D::Wingman3D ()
4.1.2.2
The default destructor disconnects from the HID driver and cleans up.
4.1.3 Member Function Documentation
4.1.3.1 Returns: int Wingman3D::getX () const
The X position
4.1.3.2 Returns:
int Wingman3D::getMaxX () const
The maximum output from X axis.
4.1.3.3 Returns:
int Wingman3D::getY () const
The Y position
4.1.3.4 Returns:
int Wingman3D::getMaxY () const
The maximum output from Y axis.
4.1.3.5 Returns:
int Wingman3D::getTwist () const
The twist handle position.
4.1.3.6 Returns:
int Wingman3D::getMaxTwist () const
The maximum output from twist axis.
10 4.1.3.7 Returns:
Logitech Wingman 3D Class Driver for QNX Class Documentation int Wingman3D::getNumButtons () const
The number of programmable buttons available
bool Wingman3D::isButtonPressed (int
4.1.3.8 Returns:
button) const
true if button button is pressed, else false
int Wingman3D::getSliderValue () const
4.1.3.9 Returns:
The slider/throttle position. Range [0 - 255].
int Wingman3D::getMaxSliderValue () const
4.1.3.10 Returns:
The maximum output from slider.
int Wingman3D::getHatSwitchStatus () const
4.1.3.11 Returns:
A value indicating position of the hat switch. Range [1 - 8].
bool Wingman3D::isStatusOk () const
4.1.3.12 Returns:
true if no error, else false.
char Wingman3D::getStatusMessage () const
4.1.3.13 Returns:
A string carrying current status of the device. This string also carries error messages when isStatusOk() returns false.
void Wingman3D::printDeviceInfo (int
4.1.3.14
verbosity = 1) const
verbosity
Print information about the device to stdout. Higher values of information.
4.1.3.15 Returns:
mean more detailed
wingman_data_t Wingman3D::getWingmanData () const [protected]
The whole data structure for device with current joystick data
4.1 Wingman3D Class Reference 4.1.3.16 wingman_data_t Wingman3D::getWingmanMaxData () const
[protected]
Returns:
The whole data structure for device with max limits for joystick data
The documentation for this class was generated from the following le:
Wingman3D.hpp
wingman_data Struct Reference
A structure for holding wingman joystick data.
Public Attributes
bool statusOk
'true' if device status is OK.
char statusMessage [80]
Char buer to hold device status message.
int x
X axis data.
int y
Y axis data.
int twist
Z axis data.
int buttons
Button status data.
int slider
Slider axis data.
int hatSwitch
Hat switch position data.
4.2.1 Detailed Description
4.2.2 Member Data Documentation
4.2.2.1 bool wingman_data::statusOk
4.2.2.2 char wingman_data::statusMessage[80]
4.2 wingman_data Struct Reference 4.2.2.3 int wingman_data::x
4.2.2.4 int wingman_data::y
4.2.2.5 int wingman_data::twist
4.2.2.6 int wingman_data::buttons
4.2.2.7 int wingman_data::slider
4.2.2.8 int wingman_data::hatSwitch
Hat switch position data. The documentation for this struct was generated from the following le:
wingman_device Struct Reference
A structure for wingman devices (for driver internal use).
wingman_data_t data
device current data.
wingman_data_t max_data
max limits on data elds.
wingman_report_t report hidd_device_instance_t device_instance
4.3.1 Detailed Description
4.3.2 Member Data Documentation
4.3.2.1 wingman_data_t wingman_device::data
4.3.2.2 wingman_data_t wingman_device::max_data
4.3.2.3 4.3.2.4 wingman_report_t wingman_device::report hidd_device_instance_t wingman_device::device_instance
The documentation for this struct was generated from the following le:
4.4 wingman_report Struct Reference
wingman_report Struct Reference
A structure for device reports (for driver internal use).
hidd_report_instance creport_instance hidd_report creport _uint16 cbtnbuf _uint32 dev_no
4.4.1 Detailed Description
4.4.2 Member Data Documentation
4.4.2.1 4.4.2.2 4.4.2.3 4.4.2.4 struct hidd_report_instance wingman_report::creport_instance struct hidd_report wingman_report::creport _uint16 wingman_report::cbtnbuf _uint32 wingman_report::dev_no
Chapter 5
Logitech Wingman 3D Class Driver for QNX File Documentation
5.1 Wingman3D.hpp File Reference
#include <sys/hiddi.h>
Classes
struct wingman_data
struct wingman_report
struct wingman_device
class Wingman3D
Typedefs
typedef wingman_data wingman_data_t typedef wingman_report wingman_report_t typedef wingman_device wingman_device_t
5.1.1 Typedef Documentation
5.1.1.1 5.1.1.2 5.1.1.3 typedef struct wingman_data wingman_data_t typedef struct wingman_report wingman_report_t typedef struct wingman_device wingman_device_t
Wingman3D
Wingman3D, 9
hatSwitch wingman_data, 13 isButtonPressed Wingman3D, 10 isStatusOk Wingman3D, 10 max_data wingman_device, 14 printDeviceInfo Wingman3D, 10 report wingman_device, 14 slider wingman_data, 13 statusMessage wingman_data, 12 statusOk wingman_data, 12 twist wingman_data, 13 Wingman3D, 7 Wingman3D, 9 getHatSwitchStatus, 10 getMaxSliderValue, 10 getMaxTwist, 9 getMaxX, 9 getMaxY, 9 getNumButtons, 9 getSliderValue, 10 getStatusMessage, 10 getTwist, 9 getWingmanData, 10 getWingmanMaxData, 10 getX, 9 getY, 9 isButtonPressed, 10 isStatusOk, 10 printDeviceInfo, 10 Wingman3D, 9
buttons wingman_data, 13 cbtnbuf wingman_report, 15 creport wingman_report, 15 creport_instance wingman_report, 15 data wingman_device, 14 dev_no wingman_report, 15 device_instance wingman_device, 14 getHatSwitchStatus Wingman3D, 10 getMaxSliderValue Wingman3D, 10 getMaxTwist Wingman3D, 9 getMaxX Wingman3D, 9 getMaxY Wingman3D, 9 getNumButtons Wingman3D, 9 getSliderValue Wingman3D, 10 getStatusMessage Wingman3D, 10 getTwist Wingman3D, 9 getWingmanData Wingman3D, 10 getWingmanMaxData Wingman3D, 10 getX Wingman3D, 9 getY Wingman3D, 9
Wingman3D.hpp, 17 wingman_data_t, 18 wingman_device_t, 18 wingman_report_t, 18 wingman_data, 12 buttons, 13 hatSwitch, 13 slider, 13 statusMessage, 12 statusOk, 12 twist, 13 x, 12 y, 13 wingman_data_t Wingman3D.hpp, 18 wingman_device, 14 data, 14 device_instance, 14 max_data, 14 report, 14 wingman_device_t Wingman3D.hpp, 18 wingman_report, 15 cbtnbuf, 15 creport, 15 creport_instance, 15 dev_no, 15 wingman_report_t Wingman3D.hpp, 18 x y wingman_data, 12 wingman_data, 13
Technical specifications
| General | |
| Device Type | Game pad |
| Color | Metallic gray |
| Input Device | |
| Connectivity Technology | Wired |
| Buttons Qty | 4 |
| Pointing Device / Manipulator | 8-way cross keypad |
| Features | Trigger |
| Expansion / Connectivity | |
| Interfaces | 1 x gameport / MIDI - generic - 15 pin D-Sub (DB-15) |
| Miscellaneous | |
| Cables Included | 1 x data cable - integrated |
| Compliant Standards | Plug and Play |
| Software / System Requirements | |
| Software Included | Drivers & Utilities |
| OS Required | Microsoft DOS, Microsoft Windows 3.1 or later, Linux |
| Min Processor Type | Intel 386 or higher |
| Universal Product Identifiers | |
| Brand | Logitech |
| Part Number | 963232-0403 |
| GTIN | 00097855008190 |
Tags
DVR-RT500 735UA LA37A450 -E-p-gr- Professional FMJ P35 LC-30HV2E ER-A160 A180 Cf 120 CDX-P11 Comfort CF Rumblepad GS-140 SC-D366 Pokemon Abit BE7 F100I GTO1201 1 Program ID9370B TX-480 MH-2381NBR Formula Force VCL-DH1757 EXT 2003 Office 308 RX-DT530 Leche Isis FBD203 RA-611 Xpress Dx2 MCD716 12 Subwoofer 740NW Cordless RM-VZ220 Sport Adat-XT PRO 7700 Force Carys 3411 EX-A10 42PG1HD PSC 221 R-930AW KX-TG1061 RX-V392 Software CZ02RT11P DSC-S950 P Speedster Pure VP-D453 KX-TG5561M KRC-877R Casio 4765 ZE-MC294 Speakers 630 R Elite 200 EXC T59840 FWT3101 SUB 300 RAR601 MX6453 Mercedes GX29 Impact Key-menu 26PFL3403 TX-SR500 SGH-R210S Station Gen5 EK5361X-premier- VN-3100PC Formula Gp CD601 Battery FO-730 130 2 KDC-414U TL-WN350GD Kcfh43B S90 ES WP-720NP Extreme Force 3d UE40C6000RW Valencia CD52 Roland D-5 Machine SS-S3 DB179MP Samsung H220 FAX 2306 101MM Dbrh198 C5900 Summoner XS-L1230 DM-10 KR22A Nimitz 2 5810T NN-A554wbbpq R850R Honeywell T87F Beach CD52 Gpsmap 230
manuel d'instructions, Guide de l'utilisateur | Manual de instrucciones, Instrucciones de uso | Bedienungsanleitung, Bedienungsanleitung | Manual de Instruções, guia do usuário | инструкция | návod na použitie, Užívateľská príručka, návod k použití | bruksanvisningen | instrukcja, podręcznik użytkownika | kullanım kılavuzu, Kullanım | kézikönyv, használati útmutató | manuale di istruzioni, istruzioni d'uso | handleiding, gebruikershandleiding
Sitemap
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101








1. Logitech WingMan Extreme Digital 3D Joystick w/Throttle
2. Logitech WingMan Rumble Pad (963233 0403)
3. Logitech WingMan GamePad
4. Logitech WingMan Cordless Rumblepad 2.4 GHz (USB)
5. Logitech Wingman Force 3D
6. Logitech WingMan Formula Force GP Wheel with Pedals


