Update dictionaries.py

Updates to reflect recent changes with the Arduino IDE (Change in file extension from .pde to .ino, Changes with the use of PROGMEM and prog_char)
This commit is contained in:
mikecjudge 2017-01-04 22:27:32 +13:00 committed by GitHub
parent b820221f52
commit 1ff02b4f94

View file

@ -159,12 +159,12 @@ def teensy_config(choice):
""" Receives the input given by the user from set.py """
return {
'1': "powershell_down.pde",
'2': "wscript.pde",
'3': "powershell_reverse.pde",
'4': "beef.pde",
'5': "java_applet.pde",
'6': "gnome_wget.pde"
'1': "powershell_down.ino",
'2': "wscript.ino",
'3': "powershell_reverse.ino",
'4': "beef.ino",
'5': "java_applet.ino",
'6': "gnome_wget.ino"
}.get(choice, "ERROR")