-40%

2PCS Dual-axis Joystick Module PS2 Joystick Control Lever Sensor For ArduinEX

€ 1.34

Availability: 200 in stock
  • Manufacturer Part Number: Does not apply
  • Rücksendekosten trägt: Käufer trägt die unmittelbaren Kosten der Rücksendung der Waren
  • Rücknahme akzeptiert: Verbraucher haben das Recht, den Artikel unter den angegebenen Bedingungen zurückzugeben.
  • MPN: Does Not Apply
  • Marke: Nicht geMarke
  • Herstellernummer: nicht zutreffend
  • UPC: Does not apply
  • Rücknahme - Weitere Angaben: Widerrufsrecht Sie haben das Recht, binnen 60 Tagen ohne Angabe von Gründen diesen Vertrag zu widerrufen. Die Widerrufsfrist beträgt 60 Tage ab dem Tag, an dem Sie oder ein von Ihnen benannter Dritter, der nicht der Beförderer ist, die Waren in Besitz genommen haben bzw. hat. Um Ihr Widerrufsrecht auszuüben, müssen Sie uns ([Zhao Juan], [3. Stock, North Logistics Nr. 3, Fengxia Road, Lujia Town, Kunshan City, Suzhou, China (Nordtoreingang)], [021-66263060], [[email protected]]) mittels einer eindeutigen Erklärung (z. B. ein mit der Post versandter Brief, Telefax oder E-Mail) über Ihren Entschluss, diesen Vertrag zu widerrufen, informieren. Sie können dafür das beigefügte Muster-Widerrufsformular verwenden, das jedoch nicht vorgeschrieben ist. Zur Wahrung der Widerrufsfrist reicht es aus, dass Sie die Mitteilung über die Ausübung des Widerrufsrechts vor Ablauf der Widerrufsfrist absenden. Folgen des Widerrufs Wenn Sie diesen Vertrag widerrufen, haben wir Ihnen alle Zahlungen, die wir von Ihnen erhalten haben, einschließlich der Lieferkosten (mit Ausnahme der zusätzlichen Kosten, die sich daraus ergeben, dass Sie eine andere Art der Lieferung als die von uns angebotene, günstigste Standardlieferung gewählt haben), unverzüglich und spätestens binnen vierzehn Tagen ab dem Tag zurückzuzahlen, an dem die Mitteilung über Ihren Widerruf dieses Vertrags bei uns eingegangen ist. Für diese Rückzahlung verwenden wir dasselbe Zahlungsmittel, das Sie bei der ursprünglichen Transaktion eingesetzt haben, es sei denn, mit Ihnen wurde ausdrücklich etwas anderes vereinbart; in keinem Fall werden Ihnen wegen dieser Rückzahlung Entgelte berechnet. Wir können die Rückzahlung verweigern, bis wir die Waren wieder zurückerhalten haben oder bis Sie den Nachweis erbracht haben, dass Sie die Waren zurückgesandt haben, je nachdem, welches der frühere Zeitpunkt ist. Sie haben die Waren unverzüglich und in jedem Fall spätestens binnen vierzehn Tagen ab dem Tag, an dem Sie uns über den Widerruf dieses Vertrags unterrichten, an uns zurückzusenden oder zu übergeben. Die Frist ist gewahrt, wenn Sie die Waren vor Ablauf der Frist von vierzehn Tagen absenden.  Option B: Sie tragen die unmittelbaren Kosten der Rücksendung der Waren. Sie müssen für einen etwaigen Wertverlust der Waren nur aufkommen, wenn dieser Wertverlust auf einen zur Prüfung der Beschaffenheit, Eigenschaften und Funktionsweise der Waren nicht notwendigen Umgang mit ihnen zurückzuführen ist. Muster-Widerrufsformular (Wenn Sie den Vertrag widerrufen wollen, dann füllen Sie bitte dieses Formular aus und senden Sie es zurück.) – An [Zhou Juan], [3. Stock, North Logistics Nr. 3, Fengxia Road, Lujia Town, Kunshan City, Suzhou, China (Nordtoreingang)]: – Hiermit widerrufe(n) ich/wir (*) den von mir/uns (*) abgeschlossenen Vertrag über den Kauf der folgenden Waren (*)/die Erbringung der folgenden Dienstleistung (*) – Bestellt am (*)/erhalten am (*) – Name des/der Verbraucher(s) – Anschrift des/der Verbraucher(s) – Unterschrift des/der Verbraucher(s) (nur bei Mitteilung auf Papier) – Datum (*) Unzutreffendes streichen.
  • Brand: Unbranded
  • Hersteller: Nicht geMarke
  • Nach Erhalt des Artikels sollte Ihr Käufer innerhalb der folgenden Frist den Kauf widerrufen oder den Rückgabeprozess einleiten: 60 Tage
  • Condition: Neu

    Description

    Description:
    Two-axis key joystick sensor module by the use of PS2 rocker potentiometer, with (X, Y) 2-axis analog output, (Z) 1 button digital output. With the Arduino sensor expansion board can produce remote control and other interactive works. In addition, this product in order to allow customers to more easily with the arduino expansion board and other standard interfaces, in the design of the X, Y, Z axis of the circuit are separate leads, the user can use 3-pin ARDUINO special line really plug into the expansion board .
    Product performance:
    1. Input voltage range: DC 3.3V to 5V
    2. Output signal: the module special two-way analog output and a digital output interface, the output value corresponding to (X, Y) biaxial offset, the type of analog; keys that the user press the Z axis, Its type is digital switch.
    3. Arduino controller can be programmed, the sensor expansion board plug, complete with creative remote interactive works.
    4. Cross joystick is a bi-directional 10K resistor, with the rocker in different directions, the tap resistance with the change. This module uses 5V power supply, the original state of X, Y read voltage of 2.5V or so, when pressed with the arrow direction, the read voltage value increases with the maximum to 5V; arrows in the opposite direction to press, read the voltage decreases , The minimum is 0V.
    Tutorial:
    In the introduction of how to use, we first look at how it works, which we use it very helpful, there is a function of the following diagram:
    aeProduct.getSubject()
    In fact, this module is a potentiometer, x, y-dimensional data output port is read out the analog voltage. This figure does not draw the above z-dimensional data output, z-dimensional output only 0 and 1, can be achieved by a button. All in all, it is a combination of potentiometer and button. In the Arduino use it, x, y dimension we received two analog ports to read their values, while the z-dimensional we are connected to the digital port, connected to the power and ground.
    test program:
    Int JoyStick_X = 0; // x
    Int JoyStick_Y = 1; // y
    Int JoyStick_Z = 3; // key
    Void setup () {pinMode (JoyStick_X, INPUT);
    PinMode (JoyStick_Y, INPUT);
    PinMode (JoyStick_Z, INPUT);
    Serial.begin (9600); // 9600 bps}
    Y = analogRead (JoyStick_Y); z = digitalRead (JoyStick_Z); void loop () {int x, y, z;
    Serial.print (x, DEC); Serial.print ( ",");
    Serial.print (y, DEC); Serial.print ( ",");
    Serial.println (z, DEC);
    Package Contents:
    ● 2 x Joystick
    Description:
    Two-axis key joystick sensor module by the use of PS2 rocker potentiometer, with (X, Y) 2-axis analog output, (Z) 1 button digital output. With the Arduino sensor expansion board can produce remote control and other interactive works. In addition, this product in order to allow customers to more easily with the arduino expansion board and other standard interfaces, in the design of the X, Y, Z axis of the circuit are separate leads, the user can use 3-pin ARDUINO special line really plug into the expansion board .
    Product performance:
    1. Input voltage range: DC 3.3V to 5V
    2. Output signal: the module special two-way analog output and a digital output interface, the output value corresponding to (X, Y) biaxial offset, the type of analog; keys that the user press the Z axis, Its type is digital switch.
    3. Arduino controller can be programmed, the sensor expansion board plug, complete with creative remote interactive works.
    4. Cross joystick is a bi-directional 10K resistor, with the rocker in different directions, the tap resistance with the change. This module uses 5V power supply, the original state of X, Y read voltage of 2.5V or so, when pressed with the arrow direction, the read voltage value increases with the maximum to 5V; arrows in the opposite direction to press, read the voltage decreases , The minimum is 0V.
    Tutorial:
    In the introduction of how to use, we first look at how it works, which we use it very helpful, there is a function of the following diagram:
    aeProduct.getSubject()
    In fact, this module is a potentiometer, x, y-dimensional data output port is read out the analog voltage. This figure does not draw the above z-dimensional data output, z-dimensional output only 0 and 1, can be achieved by a button. All in all, it is a combination of potentiometer and button. In the Arduino use it, x, y dimension we received two analog ports to read their values, while the z-dimensional we are connected to the digital port, connected to the power and ground.
    test program:
    Int JoyStick_X = 0; // x
    Int JoyStick_Y = 1; // y
    Int JoyStick_Z = 3; // key
    Void setup () {pinMode (JoyStick_X, INPUT);
    PinMode (JoyStick_Y, INPUT);
    PinMode (JoyStick_Z, INPUT);
    Serial.begin (9600); // 9600 bps}
    Y = analogRead (JoyStick_Y); z = digitalRead (JoyStick_Z); void loop () {int x, y, z;
    Serial.print (x, DEC); Serial.print ( ",");
    Serial.print (y, DEC); Serial.print ( ",");
    Serial.println (z, DEC);
    Package Contents:
    ● 2 x Joystick
    Am 10.07.21 hat der Verkäufer die folgenden Angaben hinzugefügt: