teensy40

There are 57 repositories under teensy40 topic.

  • miketeachman/micropython-rotary

    MicroPython module to read a rotary encoder.

    Language:Python276182455
  • miketeachman/micropython-i2s-examples

    Examples for I2S support on microcontrollers that run MicroPython

    Language:Python218122935
  • pronenewbits/Arduino_AHRS_System

    A compact realtime embedded Attitude and Heading Reference System (AHRS) using Recursive Least Squares (RLS) for magnetometer calibration and EKF/UKF for sensor fusion on Arduino platform

    Language:C++1588751
  • pronenewbits/Arduino_Constrained_MPC_Library

    A compact Constrained Model Predictive Control (MPC) library with Active Set based Quadratic Programming (QP) solver for Teensy4/Arduino system (or any real time embedded system in general)

    Language:C++1003127
  • ssilverman/TeensyDMX

    A full-featured DMX library for Teensy 3, Teensy LC, and Teensy 4. "Programmable DMX and arbitrary USB serial device emulation."

    Language:C++9714226
  • brainsmoke/hexboard

    quite a big hexdump display

    Language:C861001
  • TeensyUser/doc

    Teensy PJRC WIKI

  • jgressmann/supercan

    This is project SuperCAN. An open source USB to CAN-FD protocol.

    Language:C++719611
  • opengalvo/OPAL

    Minimalistic FW for Processing GCode to Galvanometer signals

    Language:G-code697825
  • pronenewbits/Arduino_Unconstrained_MPC_Library

    A compact Unconstrained (linear) Model Predictive Control (MPC) library for Teensy4/Arduino system (or any real time embedded system in general)

    Language:C++594217
  • StefanPetrick/animartrix

    High fidelity & high-res LED animations for microcontrollers with hardware FPU (Teensy 4.x, 3.5, 3.6 & ESP32 S3)

    Language:C++5312188
  • grblHAL/iMXRT1062

    grblHAL driver for NXP iMXRT1062 (Teensy 4.x)

    Language:C50105237
  • lpaolini/Striptease

    Sexy, audio-responsive effects on LED strips.

    Language:C++42424
  • ioridev/Precision-Fighting-Board

    Fighting board running at 8000hz

    Language:C224141
  • elehobica/Teensy40_MP3_Player

    Teensy 4.0 MP3/WAV/AAC/FLAC Player

    Language:C++21303
  • DusterTheFirst/rocketry

    🚀 Thrust Vector Controlled Model Rockets

    Language:Rust15402
  • seanboe/QuadrupedProject

    Repository for the cad/code for my quadruped project

    Language:C++14313
  • khoih-prog/ESP_AT_WiFiManager

    Library to configure WiFi/Credentials at runtime for Teensy, SAM DUE, STM32F/L/H/G/WB/MP1, SAMD21/SAMD51, RP2040-based boards, etc. using WizFi360 /ESP8266 /ESP32-AT-command shields. You can also specify static AP and STA IP.

    Language:C++13303
  • TeensyBoardZ80

    mecparts/TeensyBoardZ80

    A Teensy 4.0 emulated Z80 ZCPR3.3/ZSDOS computer.

    Language:C12301
  • khoih-prog/Teensy_TimerInterrupt

    This library enables you to use Interrupt from Hardware Timers on an Teensy-based board such as Teensy 4.x, 3.x, LC, 2.0, etc. These Teensy Hardware Timers, using Interrupt, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software timers using millis() or micros(). That's mandatory if you need to measure some data requiring better accuracy. It now supports 16 ISR-based Timers, while consuming only 1 Hardware Timer. Timers' interval is very long (ulong millisecs). The most important feature is they're ISR-based Timers. Therefore, their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks.

    Language:C++11234
  • ufechner7/teensy4_shell

    Tutorial on how to use the shell of Zephyr with Teensy 4.0

    Language:C11403
  • cryham/kc4

    Keyboard Controller, using Teensy 4.0 and ILI9341 display. Editing key mappings, layers and sequences in real time. With also few display demos and a game. (Continuation of my KC repo for Teensy 3.2)

    Language:C++10214
  • drmcnelson/Linear-CCD-with-LTSpice-KiCAD-Firmware-and-Python-Library

    Electrical design, firmware and Python library for a low noise high resolution wide bandwidth Linear CCD and Teensy 4 (MCU) implementation with trigger, gate, and sync.

    Language:Python8101
  • pigatron-industries/xen_octasource

    Low frequency oscillator with 8 outputs

    Language:Jupyter Notebook8321
  • khoih-prog/FTP_Server_Teensy41

    FTP Server for Teensy 4.x using SD, LittleFS, etc. with QNEthernet, NativeEthernet, W5x00 with Ethernet_Generic Library or Adafruit Airlift Featherwing using WiFiNINA_Generic Library

    Language:C++6432
  • leswright1977/MLX90640_Serial_Processing_Python

    Python Processing script for serial data from an MLX90640 running on a Teensy 4.0

    Language:C++6202
  • ThunderFocus

    marcocipriani01/ThunderFocus

    Advanced telescope focuser, with Java control panel and INDI/ASCOM integration.

    Language:Java6290
  • khoih-prog/React_Generic

    Asynchronous programming library for the generic microcontrollers compatible with the Arduino framework. Currently supporting ESP32, ESP8266, SAMD21/SAMD51, RP2040, STM32, nRF52, Teensy 4.x

    Language:C++5203
  • mingyeeee/Teensy4.0-TF-lite-micro

    Repo with Tensorflow lite for MCUs example code modified to work with Teensy 4.0

    Language:C++5200
  • SuuBro/Synkoda

    A teensy powered MIDI controller designed around 5 high precision optical encoders with RGB LED rings

    Language:C++5300
  • jomarkow/Audio-to-MIDI

    Real time Audio to MIDI converter. Convert your sound into an editable music document.

    Language:C++4200
  • mecparts/RunCPM

    RunCPM is a multi-platform, portable, Z80 CP/M 2.2 emulator.

    Language:C420
  • khoih-prog/Teensy_Slow_PWM

    This library enables you to use ISR-based PWM channels on Teensy boards, such as Teensy 2.x, Teensy LC, Teensy 3.x, Teensy 4.x, Teensy MicroMod, etc., to create and output PWM any GPIO pin. It now supports 16 ISR-based PWM channels, while consuming only 1 Hardware Timer. PWM channel interval can be very long (ulong microsecs / millisecs). The most important feature is they're ISR-based PWM channels, supporting lower PWM frequencies with suitable accuracy. Their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks. These ISR-based PWMs, still work even if other software functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software-based PWM using millis() or micros(). That's necessary if you need to control devices requiring high precision

    Language:C++331
  • dingodoppelt/ewiUSB-synth

    A small patch for the teensy 4.0 dev-board for playing your AKAI EWI-USB on the go

    Language:C++2001
  • Fora888/Universal-Teensy-4.0-Eurorack-Shield

    Teensy 4.0 shield with ADC, DAC and breakouts for perfboard

  • madskjeldgaard/platformio-arduino-template

    The ⚡ULTIMATE⚡ Arduino starter template for Platformio 🐩 (Pico, ESP32, ESP8266, Teensy, etc)

    Language:Shell210