Recent content by fluffymadness

  1. F

    Homebrew RELEASE DIY Switch Fightstick

    It should work in every game. I tried Megaman, Super Smash Bros Ultimate, Mario Odyssey. e.g This is written on progmems git from where my code Is based upon : .... Unlike the Wii U, which handles these controllers on a 'per-game' basis, the Switch treats the Pokken controller as if it was a...
  2. F

    Homebrew RELEASE Incognito_RCM - wipe personal information to reduce risk of ban

    just out of curiosity, can I assume if I use this payload, that the logs that were collected before (probably containing my prodinfo and other stuff) are not transmitted to nintendo when going online since nintendos server blocks connections without correct prodinfo, or will telemetry be always...
  3. F

    Hardware Fake Pro controller

    @Liriel Can you post the link to the seller where you got the 1.3 board revision with the fixed, good working dpad ? Thanks
  4. F

    Hardware Making a custom pro controller with a teensy board?

    That's the thing with usb libraries. They are very microcontroller specific :/ The teensy 3.0 for example also has its own usb stack. I played around with some xinput stuff before i moved to the pro micro. There's also a lightweight usb stack for stm microcontrollers. You kinda have to port some...
  5. F

    Hardware Making a custom pro controller with a teensy board?

    Looks pretty similar to what I bought. I think the clones are pretty much the same. I have the model with 5v/16mhz. edit: Yeah...I guess there's some incompatibility there with the teensy
  6. F

    Hardware Making a custom pro controller with a teensy board?

    On a second look. Teensy 2.0 not the plus version also has an atmega32u4, I think one of these works too.
  7. F

    Hardware Making a custom pro controller with a teensy board?

    @Alpha_GX. gbatemp.net/threads/diy-switch-fightstick.534779/ Its for a pro micro not teensy. Haven't added any true analog support, just fake analog since its considered for fightsticks. Its completely finished. You'd just need to connect buttons.
  8. F

    Homebrew RELEASE DIY Switch Fightstick

    For the people that are interested in custom DIY-Arcadestick building, here's my code that I use for my Nintendo Switch Fightstick. The whole project is flashable via Arduino IDE. It has a digital mode, fake analog, and fake analog mode for Super Smash Ultimate Mode with modifier key. You can...