Skip to content

Instantly share code, notes, and snippets.

@KensoDev
Last active July 30, 2017 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KensoDev/23ab3e831616a976aa3c8b7bac6c9dfa to your computer and use it in GitHub Desktop.
Save KensoDev/23ab3e831616a976aa3c8b7bac6c9dfa to your computer and use it in GitHub Desktop.
Car commands
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