Search results

  1. C

    Teensy LC Joystick in Linux

    Hello everybody, Does anyone know if the Teensy LC, with the firmware loaded for Serial/Keyboard/Mouse/Joystick, is compatible and plug-and-play with Linux? https://www.pjrc.com/teensy/td_joystick.html Thanks
  2. C

    Teensy LC units available

    Hello everybody. I've already sold almost all the units. I'm going to save the ones I have left for other projects. Best regards
  3. C

    Teensy LC units available

    Hello again, my mail is carlos@simracingcoach.com
  4. C

    Teensy LC units available

    Thanks Paul! My name is Carlos Casas from Spain. And my company is Simracingcoach.
  5. C

    Teensy LC units available

    Hello everyone, I'm from Spain, and since I won't be using most of the Teensy LCs (totally new, without pins and with the A6 datasheet) I have for my projects, I'd like to sell them in case there's an individual or business who needs them. It's an obsolete model, but it has unique features...
  6. C

    Arduino compatibility of WS2812Serial Library

    Thanks for the clarification and for responding so quickly, dear Paul. Regards
  7. C

    Arduino compatibility of WS2812Serial Library

    Hello, i am using leds WS2812B with teensy LC and WS2812Serial Library and it works perfectly, but i would like to know if i change the board to an Arduino Nano, if this library "WS2812Serial" will work or if is not compatible. Thanks in advance.
  8. C

    How to delete X and Y Axis in Keyboard/Mouse/Joystick

    Hello everybody I have a little question. When i upload a code in my Teensy LC with the USB TYPE "Keyboard/Mouse/Joystick", i see these this configuration: I would need to delete the X and Y Axis in order not to be detected, but i don't know if is possible to do it. I am not sure if...
  9. C

    Joystick Teensy with problems in last update of Widows 10

    Hi everybody. There is an issue with the standard sketch of Serial/keyboard/Mouse/Joystick in Windows 10. Appareantly, last update (KB4041676) makes that power saveR of windows manages the mouse usb (of this joystick), so in a few minutes, the buttons of joysticks don't work. One friend told...
  10. C

    Change Joystick USB Name

    Ok, I will try it in other PC. Thanks
  11. C

    Change Joystick USB Name

    Thanks a lot Paul. But i have same problem making the names.c I see in devices the name that i have selected, but when i click in configure game device, i see the teensy/josytick...
  12. C

    Change Joystick USB Name

    Hi again I have 2 questions. 1) I would like to change the USB Device name of teensy LC when i compile this example sketch. /* Basic USB Joystick Example Teensy becomes a USB joystick You must select Joystick from the "Tools > USB Type" menu Pushbuttons should be connected to...
  13. C

    Bluetooth and Joystick with teensy

    Thanks for your quick reply. Yes, you are right, one option is with 2 teensys (1 connected by usb as a joystick, another one sending data), but i think with keyboard emulation bluetooth could be possible (but without joystick game device). Something like that https://www.adafruit.com/product/1535
  14. C

    Bluetooth and Joystick with teensy

    Hi again I'd like to ask one question. Is possible to program the teensy 3.2 / LC with a bluetooth module in order to work with it as a joystick usb (serial/joystick/keyboard) for using buttons without usb cable? And PC can detect the joystick by bluetooth? Or only is possible with emulation...
  15. C

    Teensy 3.2 joystick with rotary encoders

    Hi again Finally, i bought this rotary http://www.leobodnar.com/shop/index.php?main_page=product_info&cPath=98_75&products_id=242 and works perfectly with some changes in code!!!! But with other rotaries cheaper, fails. So it depends of the rotary. Regards Regards
  16. C

    Teensy 3.2 joystick with rotary encoders

    Hi tni Yes, you are right. In my code i have these changes Encoder myEnc(5, 6); And Joystick.button() Sorry, but i had to write it in that post. The fail is that sometimes, when i move clockwise the encoder, the position (number) is the same. Maybe in 10 movements, 2 mistakes. And similar...
  17. C

    Teensy 3.2 joystick with rotary encoders

    Thanks!!! I will test it.
  18. C

    Teensy 3.2 joystick with rotary encoders

    Thanks I have tried without delay(4 ms) and still fails sometimes. #include <Encoder.h> void setup() { Serial.begin(9600); } long oldPosition = -999; void loop() { long newPosition = myEnc.read(); if (newPosition != oldPosition) { if( newPosition % 4 == 0) { //for...
  19. C

    Teensy 3.2 joystick with rotary encoders

    Hello everybody I am using a rotary encoder ( http://www.ebay.es/itm/172178149195 ) And i have some questions for my sketch (I use Joystick button usb - USB TYPE Serial/Keyb/Mouse/Joystick). I would like that each clockwise turn, activate the button 5, and each counterclockwise, button 6...
  20. C

    Many axis joystick

    Hello again Paul Do you think that code of "joystick" (this link) in teensy 3.1 is compatible with teensy LC? I want to buy one. https://forum.pjrc.com/threads/23681-Many-axis-joystick?p=41730&viewfull=1#post41730
  21. C

    Serial Number of Teensy 3.1

    Thanks a lot Cheers
  22. C

    Library SPIflash with teensy for LCD display

    Hi everybody I would like to know if this library SPIflash of arduino to manage LCD is compatible with teensy 3.1 and teensyduino LIBRARY http://www.rinkydinkelectronics.com/library.php?id=66 LCD 5" LW500AC9001...
  23. C

    Connecting 2 teensy 3.1 by bluetooth

    I am going to develop a new project and i am thinking about connecting 2 teensy by bluetooth. I would be possible, wouldn't? I think is like connecting to USB-bluetooth of pc. Which bluetooth do you recommend me? Which battery do you recommend me for second teensy? Thanks in advance. Carlos
  24. C

    New Teensy-LC

    Thank you very much for all the information. Cheers
  25. C

    New Teensy-LC

    Hi again I have a little question about the new Teensy - LC http://www.pjrc.com/teensy/teensyLC.html Is compatible with teensy 3.1 sketchs in teensyduino? Is compatible with this example of many axis joystick of teensy 3.1...
  26. C

    Windows 7 blue screen on shutdown

    Hi again guys FINALLY SOLVED the BSOD blue screen -I have updated the BIOS (with last one) http://es.gigabyte.com/products/page/mb/ga-p55-us3lrev_21/download/ -I have installed the new drivers of the mainboard from website (not from Original CD)...
  27. C

    Best way to Send pulses to pin

    Thanks again Paul.
  28. C

    Best way to Send pulses to pin

    And if i use thousand of commands DelayMicroseconds in loops during hours of running cycle, the teensy works well?
  29. C

    Best way to Send pulses to pin

    Thank you very much again Paul for your advices. I will check it as soon as possible (i haven't received yet the driver motor)
  30. C

    Best way to Send pulses to pin

    Hi again , this is the manual of driver motor DCS810V1m https://dl.dropboxusercontent.com/u/11698314/DCS810V1m.pdf
  31. C

    Best way to Send pulses to pin

    Thanks again Paul I will give you the model of driver motor a.s.a.p. The speed of these servos is 10 cm in 0,25 seg aprox.
  32. C

    Best way to Send pulses to pin

    Sorry, my english is not very good and i didn't know how explain it. Yes, duty cycle 50%. My application needs to send pulses to a driver motor in order to move industrial servos. I'd like to do it with more frequency (375000 hz for example), but in my last example i wrote 490 hz. And the...
  33. C

    Best way to Send pulses to pin

    More information? What kind of situations? Thanks in advance
  34. C

    Best way to Send pulses to pin

    Hi everybody, i have 2 questions about sending pulses Question 1 In my project, i want to send some pulses to one pin, and i'd like to know the best way to do it Example 2º question. If i use many times the command Delaymicroseconds to send pulses, maybe the board can have a problem in the...
  35. C

    Windows 7 blue screen on shutdown

    I was one week by holidays. This week i'm going to update the BIOS, install Windows 7 64b, and step by step, check when the error appears.
  36. C

    Windows 7 blue screen on shutdown

    Nothing, with the microsoft fix the problem continues. I 'm going to update the BIOS.
  37. C

    Windows 7 blue screen on shutdown

    Run as administrator - don't solve it Installed FTDI Drivers http://www.ftdichip.com/Drivers/VCP.htm - don't solve it Reinstall driver usb com teensy - don't solve it -- I will restore Windows in order to know what kind of installation or driver or software has a conflict with teensy driver.
  38. C

    Windows 7 blue screen on shutdown

    Thanks. I will do these steps, one by one, because i'm going to restore the windows with a clean installation (without drivers and software), in order to know when the operation system crashes. About the driver USB/COM, i use the official teensy "WINDOWS DRIVER INSTALLER" before connecting the...
  39. C

    Windows 7 blue screen on shutdown

    Hi again Bad News. The same error has shown when i shutdown the computer (if i close de user session, no problem. Only happens when i shutdown the PC) In my laptop windows vista always has worked perfectly, without fails. Windows 7 64 bits service pack1. clean installation. mainboard (...
  40. C

    Windows 7 blue screen on shutdown

    Hi again After reinstall Win 7, the teensy works well and the error has gone. Maybe one temporal conflict between drivers, because now i have installed all mainboard cd drivers and everything is ok. Thanks
  41. C

    Windows 7 blue screen on shutdown

    Is a realtek audio driver from my mainboard CD ( Gygabyte GA-P55-US3L) But let me that i do some tests, because i have reinstalled win 7 and i am going to connect the teensy again. (Because i am not sure if the problem is with another device or driver)
  42. C

    Windows 7 blue screen on shutdown

    Hi again Problem Solved Some conflite between USB teensy and Realtek Audio drivers/games updates that i installed yesterday, because i have restored the windows 7 with a previous backup (2 weeks ago) and now the error has dissappeared when i shutdown the PC. Thanks a lot.
  43. C

    Windows 7 blue screen on shutdown

    Thanks a lot for the tips. I am going to check them. It's very strange, because with my another computer (windows vista), this error never has happened. I'll keep you posted
  44. C

    Windows 7 blue screen on shutdown

    Hi everybody. With my win7 64 bits and my teensy 3.1, today it has showed the same error when i have shutdown the PC. --- Can i reinstall the Teensy Driver? Or maybe it has happened because i have plugged the teensy in another usb port? Thanks in advance
  45. C

    Connecting all inputs/outputs teensy 3.1

    Thank you very much!!!
  46. C

    Many axis joystick

    Thanks Paul.
  47. C

    Many axis joystick

    One question, this update for big joystick is compatible with teensy 2.0 (atmega32U4)? I think not, but can you confirm it? Regards
  48. C

    Connecting all inputs/outputs teensy 3.1

    Hi again Thank you very much for all information :D Cheers ps=I wanted to say Soldering...but google translator is ...... Sorry for my english :p
  49. C

    Connecting all inputs/outputs teensy 3.1

    Hi agan guys I am a newbie in electronics and controller boards. I have a teensy 3.1 and i am testing it. I have one little question. The teensy 3.1 has the starndard pins (inputs/outputs) but in the backside, there are more extra pins but with a golden plates. Which is the best way to...
Back
Top