Teensy 2.0 donwload

Hi,

I bought a pinball controller with a teensy 2.0 integrated. It simulates different keyboard keys on pressing the buttons from the Pinball controller. I already loaded the nessesary files an the teensy seems tob e recognized from the arduino software. I don’t now what kind of script the preowner was using. Is it possible to download a config-file or something else from the teensy to modyfi?

Best regards

Marco
 
As far as i know, there is no way to extract firmware from any Atmel microcontrollers but i am not sure so dont cut your hope.
 
It sends three different Keyboard-Keys when you press one of the buttons from the pinball controller. I only want to change the keys.
 
Teensy does not support reading back the programming data. There simply is no way for you to copy the HEX file data which someone else programmed onto this Teensy 2.0.

Even if you could read the HEX file from the hardware (you can't), having the HEX file is not very useful for changing the code. You really need the source code which was used in Arduino IDE to create the HEX file.
 
Ok. But make a simply new hex file which converts three pressed buttons to three Keyboard-output is not a problem? Maybe someone have a working template for this case?
 
which converts three pressed buttons to three Keyboard-output is not a problem? Maybe someone have a working template for this case?

Yes, example code exists! In Arduino IDE, first make sure Teensy is selected in Tools > Board, because Arduino's menus update based on which board you have selected.

Then click File > Examples > _Teensy > USB_Keyboard > Buttons. Or you can view this code on github.

This example does more than you need. It has 10 buttons. It types words rather than a single key. It does this for both button press and release.

Hopefully turning this into just 3 buttons and only a single character will be a pretty easy matter of just deleting the stuff you don't need and editing the words to be the character you want. You might need to edit which pin numbers are used.

If you get stuck, we can help. Just remember, we can't see your screen and we can't know how you've changed the code unless you show us. Also keep in mind we can't see this circuit board (yet), so nobody here would know the specific hardware details like which pins connect. We're pretty good at helping here when we can actually see what's gone wrong, so please don't be shy to show a screenshot and copy of the whole (non-working) program if you need help.
 
Thanks a lot for your answer. Here ist my code:

Code:
#include <Bounce.h>
Bounce button0 = Bounce(0, 10);
Bounce button1 = Bounce(1, 10);  // 10 = 10 ms debounce time
Bounce button2 = Bounce(2, 10);  // which is appropriate for
Bounce button3 = Bounce(3, 10);  // most mechanical pushbuttons
void setup() {
 
  pinMode(D4, INPUT_PULLUP);
  pinMode(B1, INPUT_PULLUP);
  pinMode(B3, INPUT_PULLUP);
  pinMode(D0, INPUT_PULLUP);
 
}
void loop() {
  button0.update();
  button1.update();
  button2.update();
  button3.update();
 
  if (button0.fallingEdge()) {
    Keyboard.println("6");
  }
  if (button1.fallingEdge()) {
    Keyboard.printIn("u");
  }
  if (button2.fallingEdge()) {
    Keyboard.println("8");
  }
  if (button3.fallingEdge()) {
    Keyboard.println("a");
  }

I dont no if the description on the board (B1, D0 etc.) are on the right place. Also I´m not sure if "Keyboard.printIn" is only a textmessage an not a keypress which I will release.
 
Change println to print if you want to send only a single character.

Use these numbers in Bounce(pin, milliseconds) and in pinMode(pin, mode).

1760750503246.png


For the code to work properly, you must give the correct pin number in both places.
 
I change the USB Type to Keyboad+mouse+joystick. Now I get no error message.

But I m not able to upload the file. It says "Teensy did not respond". Also if I press the button on the board before.
 
Confirm Tools > USB Type must be one of the options with Keyboard, because you are implementing USB Keyboard.

To program your Teensy 2.0, first click Verify in Arduino IDE. When compile is successful, look for the small Teensy Loader window. Keep your eye on that small window, then press the pushbutton on Teensy 2.0. Programming is quick, so if your eye is not looking at the screen you may miss the visual confirmation of programming.

If "nothing happens" after you press the pushbutton, in Teensy Loader click Help > Verbose Information. It will print a lot of detailed info about what is happening. If you see nothing new printed after pressing the pushbutton, odds are strong you have a power-only USB cable with no data wires. They are the most common problem with Teensy not programming. But if you have a bad cable, of course while Teensy is running the old firmware which sends keystrokes as you press the buttons, you would not see any characters "typed" to your PC while pressing those buttons.

If you do see stuff printed in Verbose Information after pressing the button, remember we can't see your screen. We can only help if you give us the ability to see this info.
 
Code:
12:36:03.194 (post_compile 1): Begin, pid=3496, version=1.59, high-res time
12:36:03.448 (loader): Teensy Loader 1.59, begin program
12:36:03.571 (loader): File "C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\PINBALLFXVR.ino.ino.hex", 4678 bytes
12:36:03.576 (loader): File "PINBALLFXVR.ino.ino.hex". 4678 bytes
12:36:03.606 (loader): Listening for remote control on port 3149
12:36:03.606 (loader): initialized, showing main window
12:36:03.692 (loader): remote connection 1400 opened
12:36:03.692 (loader): remote cmd from 1400: "comment: Teensyduino 1.59 - WINDOWS (teensy_post_compile)"
12:36:03.692 (loader): remote cmd from 1400: "status"
12:36:03.692 (loader): HID/win32:  vid:056A pid:498C ver:0001
12:36:03.693 (post_compile 1): ARDUINO_USER_AGENT = "arduino-cli/1.2.0 arduino-ide/2.3.6 grpc-node-js/1.13.0"
12:36:03.693 (post_compile 1): Sending command: comment: Teensyduino 1.59 - WINDOWS (teensy_post_compile)
12:36:03.697 (loader): HID/win32:  vid:056A pid:498C ver:0001
12:36:03.697 (loader): HID/win32:  vid:056A pid:498C ver:0001
12:36:03.697 (loader): HID/win32:  vid:056A pid:498C ver:0001
12:36:03.697 (loader): HID/win32:  vid:056A pid:498C ver:0001
12:36:03.697 (loader): HID/win32:  vid:045E pid:0000 ver:0000
12:36:03.697 (loader): HID/win32:  vid:056A pid:498C ver:0001
12:36:03.697 (loader): HID/win32:  vid:06CB pid:000F ver:0102
12:36:03.697 (loader): HID/win32:  vid:045E pid:0000 ver:0000
12:36:03.697 (loader): HID/win32:  vid:06CB pid:000F ver:0102
12:36:03.697 (loader): HID/win32:  vid:8087 pid:0A1E ver:0200
12:36:03.697 (loader): HID/win32:  vid:06CB pid:CE65 ver:0150
12:36:03.697 (loader): HID/win32:  vid:06CB pid:CE65 ver:0150
12:36:03.697 (loader): HID/win32:  vid:8087 pid:0A1E ver:0200
12:36:03.697 (loader): HID/win32:  vid:16C0 pid:0482 ver:0271  usb:0/140000/0/3/5
12:36:03.697 (loader): HID/win32:  vid:16C0 pid:0482 ver:0271  usb:0/140000/0/3/6
12:36:03.697 (loader): HID/win32:  vid:16C0 pid:0482 ver:0271  usb:0/140000/0/3/7
12:36:03.706 (loader): remote cmd from 1400: "dir:C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\"
12:36:03.706 (loader): remote cmd from 1400: "file:PINBALLFXVR.ino.ino.hex"
12:36:03.707 (post_compile 1): Status: 1, 0, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:03.707 (post_compile 1): Sending command: dir:C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\
12:36:03.708 (post_compile 1): Sending command: file:PINBALLFXVR.ino.ino.hex
12:36:03.709 (loader): File "C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\PINBALLFXVR.ino.ino.hex", 4678 bytes
12:36:03.709 (loader): File "PINBALLFXVR.ino.ino.hex". 4678 bytes
12:36:03.718 (loader): remote cmd from 1400: "status"
12:36:03.726 (loader): remote cmd from 1400: "auto:on"
12:36:03.728 (post_compile 1): Status: 1, 0, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:03.728 (post_compile 1): Sending command: auto:on
12:36:03.729 (post_compile 1): Disconnect
12:36:03.755 (loader): remote connection 1400 closed
12:36:04.381 (post_compile 2): Begin, pid=19452, version=1.59, high-res time
12:36:04.382 (loader): remote connection 1452 opened
12:36:04.383 (post_compile 2): ARDUINO_USER_AGENT = "arduino-cli/1.2.0 arduino-ide/2.3.6 grpc-node-js/1.13.0"
12:36:04.383 (post_compile 2): port = "usb:0/140000/0/3"
12:36:04.383 (post_compile 2): Sending command: comment: Teensyduino 1.59 - WINDOWS (teensy_post_compile)
12:36:04.383 (loader): remote cmd from 1452: "comment: Teensyduino 1.59 - WINDOWS (teensy_post_compile)"
12:36:04.383 (loader): remote cmd from 1452: "status"
12:36:04.389 (post_compile 2): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.389 (post_compile 2): Sending command: dir:C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\
12:36:04.389 (loader): remote cmd from 1452: "dir:C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\"
12:36:04.389 (loader): remote cmd from 1452: "file:PINBALLFXVR.ino.ino.hex"
12:36:04.389 (post_compile 2): Sending command: file:PINBALLFXVR.ino.ino.hex
12:36:04.394 (loader): File "C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\PINBALLFXVR.ino.ino.hex", 4678 bytes
12:36:04.394 (loader): File "PINBALLFXVR.ino.ino.hex". 4678 bytes
12:36:04.399 (loader): remote cmd from 1452: "status"
12:36:04.408 (post_compile 2): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.408 (post_compile 2): Disconnect
12:36:04.426 (loader): remote connection 1452 closed
12:36:04.426 (post_compile 3): Running teensy_reboot: "C:\Users\licht\AppData\Local\Arduino15\packages\teensy\tools\teensy-tools\1.59.0\teensy_reboot.exe" teensy_reboot.exe "-board=TEENSY2" "-port=usb:0/140000/0/3" "-portlabel={serial.port.label}" "-portprotocol={serial.port.protocol}"
12:36:04.426 (loader): remote connection 1452 opened
12:36:04.504 (reboot 4): Begin, pid=33508, version=1.59, high-res time
12:36:04.504 (reboot 4): location = usb:0/140000/0/3
12:36:04.504 (reboot 4): portlabel = {serial.port.label}
12:36:04.504 (reboot 4): portprotocol missing, infer "Teensy" from location
12:36:04.504 (reboot 4): portprotocol = {serial.port.protocol}
12:36:04.504 (reboot 4): Only location usb:0/140000/0/3 will be tried
12:36:04.504 (reboot 4): LoadLibrary cfgmgr32 ok
12:36:04.504 (reboot 4): LoadLibrary ntdll ok
12:36:04.505 (reboot 4): found_usb_device, id=\\?\usb#vid_16c0&pid_0482#5&32dec797&0&3#{a5dcbf10-6530-11d2-901f-00c04fb951ed}
12:36:04.505 (reboot 4): found_usb_device, loc=usb:0/140000/0/3    Port_#0003.Hub_#0002
12:36:04.505 (reboot 4): found_usb_device, hwid=USB\VID_16C0&PID_0482&REV_0271
12:36:04.505 (reboot 4): found_usb_device, devinst=00000005
12:36:04.505 (reboot 4): add: loc=usb:0/140000/0/3, class=USB, vid=16C0, pid=0482, ver=0271, serial=, dev=\\?\usb#vid_16c0&pid_0482#5&32dec797&0&3#{a5dcbf10-6530-11d2-901f-00c04fb951ed}
12:36:04.505 (reboot 4): hiddev_from_devinst_list: iface=2
12:36:04.505 (reboot 4):   0000000E: path=\\?\hid#vid_16c0&pid_0482&mi_02#7&373673f6&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030}
12:36:04.506 (loader): remote connection 1416 opened
12:36:04.506 (loader): remote cmd from 1416: "show:arduino_attempt_reboot"
12:36:04.506 (loader): got request to show arduino rebooting message
12:36:04.506 (loader): remote cmd from 1416: "comment: Teensyduino 1.59 - WINDOWS (teensy_reboot)"
12:36:04.506 (loader): remote cmd from 1416: "status"
12:36:04.506 (loader): remote cmd from 1416: "status"
12:36:04.507 (reboot 4): found_usb_device complete
12:36:04.507 (reboot 4): hid, found devinst=0000000A
12:36:04.507 (reboot 4): hid, found devinst=0000000C
12:36:04.507 (reboot 4): hid, found devinst=0000000E
12:36:04.507 (reboot 4): hid, found devinst=00000010
12:36:04.507 (reboot 4): hid, found devinst=00000012
12:36:04.507 (reboot 4): usb scan found 1 devices
12:36:04.509 (reboot 4): found Teensy Loader, version 1.59
12:36:04.509 (reboot 4): Sending command: show:arduino_attempt_reboot
12:36:04.512 (reboot 4): Sending command: comment: Teensyduino 1.59 - WINDOWS (teensy_reboot)
12:36:04.518 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.518 (reboot 4): hid_send_feature
12:36:04.526 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.526 (reboot 4): status read, retry 0
12:36:04.641 (loader): remote cmd from 1416: "status"
12:36:04.651 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.651 (reboot 4): status read, retry 1
12:36:04.754 (loader): remote cmd from 1416: "status"
12:36:04.760 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.760 (reboot 4): status read, retry 2
12:36:04.875 (loader): remote cmd from 1416: "status"
12:36:04.889 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.889 (reboot 4): status read, retry 3
12:36:04.992 (loader): remote cmd from 1416: "status"
12:36:04.999 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:04.999 (reboot 4): status read, retry 4
12:36:05.108 (loader): remote cmd from 1416: "status"
12:36:05.118 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.118 (reboot 4): status read, retry 5
12:36:05.227 (loader): remote cmd from 1416: "status"
12:36:05.240 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.240 (reboot 4): status read, retry 6
12:36:05.457 (loader): remote cmd from 1416: "status"
12:36:05.466 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.466 (reboot 4): status read, retry 7
12:36:05.607 (loader): remote cmd from 1416: "status"
12:36:05.614 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.614 (reboot 4): status read, retry 8
12:36:05.722 (loader): remote cmd from 1416: "status"
12:36:05.729 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.729 (reboot 4): status read, retry 9
12:36:05.838 (loader): remote cmd from 1416: "status"
12:36:05.845 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.845 (reboot 4): status read, retry 10
12:36:05.956 (loader): remote cmd from 1416: "status"
12:36:05.963 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:05.963 (reboot 4): status read, retry 11
12:36:06.070 (loader): remote cmd from 1416: "status"
12:36:06.077 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.077 (reboot 4): status read, retry 12
12:36:06.188 (loader): remote cmd from 1416: "status"
12:36:06.195 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.195 (reboot 4): status read, retry 13
12:36:06.305 (loader): remote cmd from 1416: "status"
12:36:06.315 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.315 (reboot 4): status read, retry 14
12:36:06.422 (loader): remote cmd from 1416: "status"
12:36:06.430 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.430 (reboot 4): status read, retry 15
12:36:06.538 (loader): remote cmd from 1416: "status"
12:36:06.545 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.545 (reboot 4): status read, retry 16
12:36:06.654 (loader): remote cmd from 1416: "status"
12:36:06.659 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.659 (reboot 4): status read, retry 17
12:36:06.769 (loader): remote cmd from 1416: "status"
12:36:06.776 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.776 (reboot 4): status read, retry 18
12:36:06.885 (loader): remote cmd from 1416: "status"
12:36:06.894 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:06.894 (reboot 4): status read, retry 19
12:36:07.003 (loader): remote cmd from 1416: "status"
12:36:07.012 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.012 (reboot 4): status read, retry 20
12:36:07.119 (loader): remote cmd from 1416: "status"
12:36:07.126 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.126 (reboot 4): status read, retry 21
12:36:07.235 (loader): remote cmd from 1416: "status"
12:36:07.242 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.242 (reboot 4): status read, retry 22
12:36:07.352 (loader): remote cmd from 1416: "status"
12:36:07.358 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.358 (reboot 4): status read, retry 23
12:36:07.468 (loader): remote cmd from 1416: "status"
12:36:07.476 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.476 (reboot 4): status read, retry 24
12:36:07.587 (loader): remote cmd from 1416: "status"
12:36:07.595 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.595 (reboot 4): status read, retry 25
12:36:07.703 (loader): remote cmd from 1416: "status"
12:36:07.711 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.711 (reboot 4): status read, retry 26
12:36:07.818 (loader): remote cmd from 1416: "status"
12:36:07.826 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.826 (reboot 4): status read, retry 27
12:36:07.936 (loader): remote cmd from 1416: "status"
12:36:07.944 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:07.944 (reboot 4): status read, retry 28
12:36:08.052 (loader): remote cmd from 1416: "status"
12:36:08.059 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.059 (reboot 4): status read, retry 29
12:36:08.167 (loader): remote cmd from 1416: "status"
12:36:08.175 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.175 (reboot 4): status read, retry 30
12:36:08.276 (loader): remote cmd from 1416: "status"
12:36:08.284 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.284 (reboot 4): status read, retry 31
12:36:08.391 (loader): remote cmd from 1416: "status"
12:36:08.399 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.399 (reboot 4): status read, retry 32
12:36:08.507 (loader): remote cmd from 1416: "status"
12:36:08.516 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.516 (reboot 4): status read, retry 33
12:36:08.619 (loader): remote cmd from 1416: "status"
12:36:08.634 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.634 (reboot 4): status read, retry 34
12:36:08.736 (loader): remote cmd from 1416: "status"
12:36:08.744 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.744 (reboot 4): status read, retry 35
12:36:08.859 (loader): remote cmd from 1416: "status"
12:36:08.870 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.870 (reboot 4): status read, retry 36
12:36:08.972 (loader): remote cmd from 1416: "status"
12:36:08.981 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:08.981 (reboot 4): status read, retry 37
12:36:09.089 (loader): remote cmd from 1416: "status"
12:36:09.099 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.099 (reboot 4): status read, retry 38
12:36:09.208 (loader): remote cmd from 1416: "status"
12:36:09.225 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.225 (reboot 4): status read, retry 39
12:36:09.325 (loader): remote cmd from 1416: "status"
12:36:09.344 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.344 (reboot 4): status read, retry 40
12:36:09.453 (loader): remote cmd from 1416: "status"
12:36:09.467 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.467 (reboot 4): status read, retry 41
12:36:09.572 (loader): remote cmd from 1416: "status"
12:36:09.588 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.588 (reboot 4): status read, retry 42
12:36:09.691 (loader): remote cmd from 1416: "status"
12:36:09.708 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.708 (reboot 4): status read, retry 43
12:36:09.810 (loader): remote cmd from 1416: "status"
12:36:09.826 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.826 (reboot 4): status read, retry 44
12:36:09.930 (loader): remote cmd from 1416: "status"
12:36:09.940 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:09.940 (reboot 4): status read, retry 45
12:36:10.053 (loader): remote cmd from 1416: "status"
12:36:10.060 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.060 (reboot 4): status read, retry 46
12:36:10.173 (loader): remote cmd from 1416: "status"
12:36:10.182 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.182 (reboot 4): status read, retry 47
12:36:10.293 (loader): remote cmd from 1416: "status"
12:36:10.309 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.309 (reboot 4): status read, retry 48
12:36:10.420 (loader): remote cmd from 1416: "status"
12:36:10.440 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.440 (reboot 4): status read, retry 49
12:36:10.554 (loader): remote cmd from 1416: "status"
12:36:10.565 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.565 (reboot 4): status read, retry 50
12:36:10.675 (loader): remote cmd from 1416: "status"
12:36:10.692 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.692 (reboot 4): status read, retry 51
12:36:10.794 (loader): remote cmd from 1416: "status"
12:36:10.809 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.809 (reboot 4): status read, retry 52
12:36:10.911 (loader): remote cmd from 1416: "status"
12:36:10.926 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:10.927 (reboot 4): status read, retry 53
12:36:11.044 (loader): remote cmd from 1416: "status"
12:36:11.069 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.069 (reboot 4): status read, retry 54
12:36:11.176 (loader): remote cmd from 1416: "status"
12:36:11.187 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.187 (reboot 4): status read, retry 55
12:36:11.288 (loader): remote cmd from 1416: "status"
12:36:11.303 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.303 (reboot 4): status read, retry 56
12:36:11.409 (loader): remote cmd from 1416: "status"
12:36:11.426 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.426 (reboot 4): status read, retry 57
12:36:11.542 (loader): remote cmd from 1416: "status"
12:36:11.559 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.559 (reboot 4): status read, retry 58
12:36:11.674 (loader): remote cmd from 1416: "status"
12:36:11.684 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.684 (reboot 4): status read, retry 59
12:36:11.796 (loader): remote cmd from 1416: "status"
12:36:11.813 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.813 (reboot 4): status read, retry 60
12:36:11.921 (loader): remote cmd from 1416: "status"
12:36:11.940 (reboot 4): Status: 1, 1, 0, 0, 0, 0, C:\Users\licht\AppData\Local\arduino\sketches\B02B481D1048D23DA15BD9459B161FE3\, PINBALLFXVR.ino.ino.hex
12:36:11.940 (reboot 4): status read, retry 61
12:36:12.041 (reboot 4): Teensy did not respond to a USB-based request to automatically reboot.
12:36:12.053 (loader): remote connection 1416 closed
12:36:12.062 (loader): remote connection 1452 closed
12:38:18.648 (loader): Verbose Info event
 
Back
Top