Search results

  1. L

    Teensy 2.0 donwload

    If I not use the "release-command", it will run endless, also if I release the key. I simply need a fuction where the "enter-key" is pressed as long as I press the button.
  2. L

    Teensy 2.0 donwload

    I tried this code: if (button2.fallingEdge()) { Keyboard.press(KEY_ENTER); delay(300); Keyboard.release(KEY_ENTER); But it seam to work only if I relase the Button and not when I m press the button?
  3. L

    Teensy 2.0 donwload

    Another question to the Keyboard function. How to send Keys like "Enter" or "CTRL-Left"?
  4. L

    Teensy 2.0 donwload

    Okay. And what can I do now?
  5. L

    Teensy 2.0 donwload

    If I wire GND and RST it the same result as I am press the button: windows gives a signal and Teensy lost the connection to the pc. When I release the conncetion/button teensy is back again.
  6. L

    Teensy 2.0 donwload

    Same problem with an other cable.
  7. L

    Teensy 2.0 donwload

    The "old" Keystrokes works with the USB-cable. But I try to find a other one.
  8. L

    Teensy 2.0 donwload

    When I press the button on the board, windows will lose connection, but on the small window nothing happen.
  9. L

    Teensy 2.0 donwload

    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...
  10. L

    Teensy 2.0 donwload

    This also dont work.
  11. L

    Teensy 2.0 donwload

    I think I should not change the USB-Type? But than the code will not run.
  12. L

    Teensy 2.0 donwload

    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.
  13. L

    Teensy 2.0 donwload

    If I check the code now, it says "Keyboard not found". Also if I include the line #include <Keyboard.h>
  14. L

    Teensy 2.0 donwload

    Thanks a lot for your answer. Here ist my 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...
  15. L

    Teensy 2.0 donwload

    Can anyone help?
  16. L

    Teensy 2.0 donwload

    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?
  17. L

    Teensy 2.0 donwload

    It sends three different Keyboard-Keys when you press one of the buttons from the pinball controller. I only want to change the keys.
  18. L

    Teensy 2.0 donwload

    I mean there must be a hex-file on it. How can I load an modify that file?
  19. L

    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...
Back
Top