diff --git a/ComingSoon.png b/ComingSoon.png new file mode 100644 index 0000000..f5ae248 Binary files /dev/null and b/ComingSoon.png differ diff --git a/ReadMe.txt b/ReadMe.txt new file mode 100644 index 0000000..7a29156 --- /dev/null +++ b/ReadMe.txt @@ -0,0 +1,17 @@ + _______________________ +| | | / \ | +| |_________| \____/ | +| | +| _____ _____ _____ | +||key1 | |key2 | |key3 || +||_____| |_____| |_____|| +| _____ _____ _____ | +||key4 | |key5 | |key6 || +||_____| |_____| |_____|| +| _____ _____ _____ | +||key7 | |key8 | |key9 || +||_____| |_____| |_____|| +| _____ _____ _____ | +||key11| |key13| |key12|| +||_____| |_____| |_____|| +|_______________________| \ No newline at end of file diff --git a/macro_pad_apps/example.json b/macro_pad_apps/example.json index d59613e..bf2a8eb 100644 --- a/macro_pad_apps/example.json +++ b/macro_pad_apps/example.json @@ -1,15 +1,54 @@ { - "profileName": "Example!", - "k1":["ONE"], - "k2":["TWO"], - "k3":["THREE"], - "k4":["ONE"], - "k5":["TWO"], - "k6":["THREE"], - "k7":["ONE"], - "k8":["TWO"], - "k9":["THREE"], - "k10":["ONE"], - "k11":["TWO"], - "k12":["THREE"], + "profileName" : "", + "sortOrder" : 99, + + "key1" : { + "text" : [""], + "value" : [""] + }, + "key2" : { + "text" : [""], + "value" : [""] + }, + "key3" : { + "text" : [""], + "value" : [""] + }, + "key4" : { + "text" : [""], + "value" : [""] + }, + "key5" : { + "text" : [""], + "value" : [""] + }, + "key6" : { + "text" : [""], + "value" : [""] + }, + "key7" : { + "text" : [""], + "value" : [""] + }, + "key8" : { + "text" : [""], + "value" : [""] + }, + "key9" : { + "text" : [""], + "value" : [""] + }, + "key10" : { + "text" : [""], + "value" : [""] + }, + "key11" : { + "text" : [""], + "value" : [""] + }, + "key12" : { + "text" : [""], + "value" : [""] + } } + diff --git a/macro_pad_apps/gamepad.json b/macro_pad_apps/gamepad.json new file mode 100644 index 0000000..643e585 --- /dev/null +++ b/macro_pad_apps/gamepad.json @@ -0,0 +1,55 @@ +{ + "profileName" : "Gamepad", + "sortOrder" : 1, + + "key1" : { + "text" : ["ESC"], + "value" : ["ESCAPE"] + }, + "key2" : { + "text" : ["Tab"], + "value" : ["TAB"] + }, + "key3" : { + "text" : ["R"], + "value" : ["R"] + }, + "key4" : { + "text" : ["Q"], + "value" : ["Q"] + }, + "key5" : { + "text" : ["W"], + "value" : ["W"] + }, + "key6" : { + "text" : ["E"], + "value" : ["E"] + }, + "key7" : { + "text" : ["A"], + "value" : ["A"] + }, + "key8" : { + "text" : ["S"], + "value" : ["S"] + }, + "key9" : { + "text" : ["D"], + "value" : ["D"] + }, + "key10" : { + "text" : ["Shift"], + "value" : [""] + }, + "key11" : { + "text" : ["C"], + "value" : ["C"] + }, + "key12" : { + "text" : ["Space"], + "value" : ["SPACEBAR"] + } +} + + diff --git a/macro_pad_apps/numpad.json b/macro_pad_apps/numpad.json new file mode 100644 index 0000000..bf7ed36 --- /dev/null +++ b/macro_pad_apps/numpad.json @@ -0,0 +1,53 @@ +{ + "profileName" : "NumPad", + "sortOrder" : 0, + + "key1" : { + "text" : ["7"], + "value" : ["SEVEN"] + }, + "key2" : { + "text" : ["8"], + "value" : ["EIGHT"] + }, + "key3" : { + "text" : ["9"], + "value" : ["NINE"] + }, + "key4" : { + "text" : ["4"], + "value" : ["FOUR"] + }, + "key5" : { + "text" : ["5"], + "value" : ["FIVE"] + }, + "key6" : { + "text" : ["6"], + "value" : ["SIX"] + }, + "key7" : { + "text" : ["1"], + "value" : ["ONE"] + }, + "key8" : { + "text" : ["2"], + "value" : ["TWO"] + }, + "key9" : { + "text" : ["3"], + "value" : ["THREE"] + }, + "key10" : { + "text" : ["0"], + "value" : ["ZERO"] + }, + "key11" : { + "text" : ["."], + "value" : ["PERIOD"] + }, + "key12" : { + "text" : ["ENT"], + "value" : ["RETURN"] + } +}