Pro Micro 5V 16M Mini Leonardo not connecting to game controller setup

Hey, Guys/Girls
I need a bit of help connecting my Pro Micro 5V 16M Mini Leonardo Microcontroller Development Board to the game controller setup on windows 10. I followed setup by setup this youtube vid but nothing happens (HOW TO MAKE ANALOG HANDBRAKE FROM LOGITECH PEDAL - YouTube) It connects to my pc and recognize it but just the setup doesn't.

Plz help

What code did you load on the Micro? As which device(s) does your PC recognize the board?

Have you gotten the Pro-Micro to work OUTSIDE of this project?

As in ... have you set it up and just got the basics of keyboard inputs working?

drivers installed......etc? (ie: ensured you had a working board before attempting said project?)

xl97:
Have you gotten the Pro-Micro to work OUTSIDE of this project?

As in ... have you set it up and just got the basics of keyboard inputs working?

drivers installed......etc? (ie: ensured you had a working board before attempting said project?)

no i havent this was my first project. What drivers do i need?

no i havent this was my first project. What drivers do i need?

Did you load any software to the Micro? If yes, post the code here (and use code tags, that's the </> button in the editor).

pylon:
What code did you load on the Micro? As which device(s) does your PC recognize the board?

Like it recognises it when i plug it it and says like "Arduino something something is ready to setup" but like wont be in the game setup tab

pylon:
Did you load any software to the Micro? If yes, post the code here (and use code tags, that's the </> button in the editor).

<#include <Joystick.h>

void setup()

{pinMode(A0, INPUT);
Joystick.begin();}

const int pinToButtonMap = A0;

void loop()

{int pot = analogRead(A0);
int mapped = map(pot,0,1023,0,255);
{Joystick.setThrottle(mapped);}}>

And that code was compiled for the Micro in the IDE and uploaded to the Micro? Did you install that "joystick.h" library? Post a link to the library you installed!