En iyi direksiyon seti markaları nedir?

Bir şey sormak istiyorum. Bir yerde Thrustmaster T150 Rs Pro'nun 1080 derece olduğunu okudum. Bu gerçek midir sizce?
Yanlış hatırlamıyorsam doğrudur.

[CODE lang="cpp" title="H Vites"]// 8 button gamepad, switches on digital pins 2-10

#include <Joystick.h>

Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD,
9, 0, // Button Count, Hat Switch Count
false, false, false, // No X, Y, Z Axis
false, false, false, // No Rx, Ry, or Rz
false, false, // No rudder or throttle
false, false, false); // No accelerator, brake, or steering

void setup() {
// Initialize Button Pins
pinMode(2, INPUT_PULLUP);
pinMode(3, INPUT_PULLUP);
pinMode(4, INPUT_PULLUP);
pinMode(5, INPUT_PULLUP);
pinMode(6, INPUT_PULLUP);
pinMode(7, INPUT_PULLUP);
pinMode(8, INPUT_PULLUP);
pinMode(9, INPUT_PULLUP);
pinMode(10, INPUT_PULLUP);

// Initialize Joystick Library
Joystick.begin();

}

// Last state of the buttons
int lastButtonState[9] = {0,0,0,0,0,0,0,0,0};

void loop() {

// Read pin values
for (int index = 0; index < 9; index++)
{
int currentButtonState = !digitalRead(index + 2);
if (currentButtonState != lastButtonState[index])
{
Joystick.setButton(index, currentButtonState);
lastButtonState[index] = currentButtonState;
}
}

delay(10);
}
`[/CODE]
Elimde yazıcı olduğundan bundan yaptım. Kodları da buradan kullandım.
 
[CODE lang="cpp" title="H Vites"]// 8 button gamepad, switches on digital pins 2-10

#include <Joystick.h>

Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD,
9, 0, // Button Count, Hat Switch Count
false, false, false, // No X, Y, Z Axis
false, false, false, // No Rx, Ry, or Rz
false, false, // No rudder or throttle
false, false, false); // No accelerator, brake, or steering

void setup() {
// Initialize Button Pins
pinMode(2, INPUT_PULLUP);
pinMode(3, INPUT_PULLUP);
pinMode(4, INPUT_PULLUP);
pinMode(5, INPUT_PULLUP);
pinMode(6, INPUT_PULLUP);
pinMode(7, INPUT_PULLUP);
pinMode(8, INPUT_PULLUP);
pinMode(9, INPUT_PULLUP);
pinMode(10, INPUT_PULLUP);

// Initialize Joystick Library
Joystick.begin();

}

// Last state of the buttons
int lastButtonState[9] = {0,0,0,0,0,0,0,0,0};

void loop() {

// Read pin values
for (int index = 0; index < 9; index++)
{
int currentButtonState = !digitalRead(index + 2);
if (currentButtonState != lastButtonState[index])
{
Joystick.setButton(index, currentButtonState);
lastButtonState[index] = currentButtonState;
}
}

delay(10);
}
`[/CODE]
Teşekkürler.
Elimde yazıcı olduğundan bundan yaptım. Kodları da buradan kullandım.
3D yazıcı mı?
Yanlış hatırlamıyorsam doğrudur.
Dün 3700 TL'ydi. Stoklar bitmiş hemen. (2 tane vardı galiba.)
 
Son düzenleyen: Moderatör:
Uyarı! Bu konu 5 yıl önce açıldı.
Muhtemelen daha fazla tartışma gerekli değildir ki bu durumda yeni bir konu başlatmayı öneririz. Eğer yine de cevabınızın gerekli olduğunu düşünüyorsanız buna rağmen cevap verebilirsiniz.

Bu konuyu görüntüleyen kullanıcılar

Technopat Haberler

Yeni konular

Geri
Yukarı