Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo Zusammen,

ich habe folgenden ESP32:

https://www.amazon.de/LILYGO-T-Display-Arduino-Entwicklungsboard-CH9102F/dp/B099MPFJ9M

 

Hat einer eine Idee, wie ich den folgenden Code umändern kann, damit der ESP als Gamecontroller erkannt wird?

#define STEERING_PIN  36
#define THROTTLE_PIN  32
#define BRAKE_PIN     33
#define LED_PIN       17


void setup() {
  Serial.begin(9600);
}

void loop() {
  int steeringValue = analogRead(STEERING_PIN);
  int throttleValue = analogRead(THROTTLE_PIN);
  int brakeValue = analogRead(BRAKE_PIN);

  int steeringangle = map(steeringValue, 0, 4095, 0, 270);
  int throttlepercentage = map(throttleValue, 0, 4095, 0, 100);
  int brakepercentage = map(brakeValue, 0, 4095, 0, 100);
  analogWrite(LED_PIN, throttlepercentage);

  Serial.print("Steering angle = ");
  Serial.print(steeringangle);
  Serial.println("°");
  Serial.print("Throttle Percentage = ");
  Serial.print(throttlepercentage);
  Serial.println(" %");
  Serial.print("Brake Percentage = ");
  Serial.print(brakepercentage);
  Serial.println(" %");
  delay(100);
}

 

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.