Last active
July 30, 2017 01:09
-
-
Save KensoDev/23ab3e831616a976aa3c8b7bac6c9dfa to your computer and use it in GitHub Desktop.
Car commands
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
const COMMANDS = { | |
"1F": [3], | |
"1B": [5], | |
"1L": [11], | |
"1R": [13], | |
"1FR": [3, 13], | |
"1FL": [3, 11], | |
"1BR": [5, 13], | |
"1BL": [5, 11], | |
"2F": [18], | |
"2B": [22], | |
"2L": [12], | |
"2R": [16], | |
"2FR": [18, 16], | |
"2FL": [18, 12], | |
"2BR": [22, 16], | |
"2BL": [22, 12] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment