This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name ELO Values | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Convert dominion online leaderboard to Elo scale. | |
| // @author muenstercheese | |
| // @match https://dominion.games/ | |
| // @icon https://www.google.com/s2/favicons?domain=dominion.games | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <LiquidCrystal.h> | |
| LiquidCrystal lcd(12, 11, 5, 4, 3, 2); | |
| const int vrxPin = A0; | |
| const int vryPin = A1; | |
| const int btnPin = 8; | |
| /* | |
| * When the wires of the joystick are facing to the left, | |
| * The X and Y values increase towards the top-left corner. |