Search results

  1. D

    Arduino CLI And IDE now Released - Teensy Supported!

    Is there a page somewhere that lists the current status/usability of arduino cli with teensy? From the sound of this forum thread it doesn't seem like it's quite ready yet. Will you still have to install teensyduino to use arduino-cli?
  2. D

    Teensy Loader CLI and multiple teensies

    Scenario, I have (for whatever reason) 2x Teensy 3.2 plugged into my PC. Is there any way to specify on the command line which teensy to upload to? I know I can use the -w flag and ask the user to press the reset button, but what if the button is inaccessible? (Plus you have this excellent -s...
  3. D

    I'm not entirely sure the "headless" options for Teensy are truely headless (CI Woes)

    I'm not entirely sure the "headless" options for Teensy are truely headless (CI Woes) I'm messing around with https://github.com/nektos/act trying to set up some sort of continuous integration for my project with github actions. The problem is, I seem to be running into problems caused by...
  4. D

    Teensy Serial port handshake? (USB)

    That while loop doesn't change anything for me, it's just a different semantic approach. I've essentially worked around the problem for now, but I'd like to know what the problem is My "hello world" code can essentially be boiled down to: void loop() { if(Serial) {...
  5. D

    Teensy Serial port handshake? (USB)

    I've been using serial (over the standard usb port) to communicate between the host PC and my teensy 3.2. It's been fine so far, but I recently ran into a bug that stumped me for a bit. I wanted to do something when the connection was established, so I used if(Serial) and then added the...
  6. D

    How does the Teensy Hid library allow for RawHid + KB/gamepad?

    I've got a Teensy 4.0 I'm messing around with, as well as a Sparkfun pro micro. The project is a control panel for a game. The pro micro version is just some buttons and LEDs, the teensy version also has an LCD screen to display information from the game. I use Keyboard and gamepad HID to send...
  7. D

    Maybe a UX change to "USB type" is needed?

    Why does the product id need to change? Is it due to a standard, or a convention amongst Arduino makers? Is it not enough for the product id to be (for instance) "Teensy 4.0"? (by which I mean, a value bound to the board, not the purpose of the board). Or could it be something customised by...
  8. D

    Maybe a UX change to "USB type" is needed?

    So I'm looking to make something with my shiny new Teensy 4.0 that can emulate a joystick or a keyboard, but also receive input from the PC using RawHID. Now unfortunately, there is no Keyboard + RawHID option in the "USB Type" menu, but I have found this old thread that instructs me on how to...
  9. D

    Teensy 3.2 / Noob power question

    Thankyou GremlinWrangler, that clears up some of the worries I had Seems I was getting confused between the 3.1 and 3.2 (possibly the LC, as I've looking at that one for other projects ;)), so my limit according to the Info card is actually 250mA, which might actually mean my worries were...
  10. D

    Teensy 3.2 / Noob power question

    So I bought a whole bunch of buttons and switches (16 to be precise) with built in LEDs to make a simple control panel using a teensy 3.2. This was to be my very amature/beginner project into learning the physical side of stuff. However, I've come to realise that I may only be able to power...
Back
Top