Notifications
Clear all
Topic starter
02/06/2021 5:48 pm
Hola
estaría bien que se agregaran si es posible botones analogicos con potenciometros de 10k para hacer embragues, el código sería algo así:
#include <Joystick.h>
#include <Joystick.h>
Joystick_ Joystick;
// Analog eBrake-Handbrake
// PIN A3 to 10k pot output - Throttle Axis
// Use with Arduino ProMicro
void setup()
{pinMode(A0, INPUT);
Joystick.begin();}
const int pinToButtonMap = A3;
void loop()
{int pot = analogRead(A3);
int mapped = map(pot,0,1023,0,255);
{Joystick.setThrottle(mapped);}
}
xlordxcheater reacted