Sold out.
Teensy 3.2 is a direct, 100% compatible replacement for Teensy 3.1. It is fully compatible with all shields and add-on boards made for Teensy 3.1, including the Audio Board and OctoWS2811 Adaptor. More Memory For Awesome Projects
The circuit boards are manufactured in the USA, and all assembly and testing is performed in the USA.
All digital pins are 5 volt tolerant on Teensy 3.2. However, the analog-only pins (A10-A14), AREF, Program and Reset are 3.3V only.
// Simple DAC sine wave teston Teensy 3.1/3.2 float phase = 0.0; float twopi = 3.14159 * 2; elapsedMicros usec = 0; void setup() { analogWriteResolution(12); } void loop() { float val = sin(phase) * 2000.0 + 2050.0; analogWrite(A14, (int)val); phase = phase + 0.02; if (phase >= twopi) phase = 0; while (usec < 500) ; // wait usec = usec - 500; }
Simply use analogWrite() on the A14 pin for true analog output.
PJRC is developing an advanced analog read function for Arduino, to make using these new analog input capabilities very easy.
Feature | Teensy 3.0 | Teensy 3.2 | Units |
---|---|---|---|
Price | 19.00 | 19.80 | US Dollars |
Processor Core Rated Speed Overclockable |
MK20DX128VLH5 Cortex-M4 48 96 |
MK20DX256VLH7 Cortex-M4 72 96 |
MHz MHz |
Flash Memory Bandwidth Cache |
128 96 32 |
256 192 256 |
kbytes Mbytes/sec Bytes |
RAM | 16 | 64 | kbytes |
EEPROM | 2 | 2 | kbytes |
Direct Memory Access | 4 | 16 | Channels |
Digital I/O Voltage Output Voltage Input |
34 3.3V 3.3V Only |
34 3.3V 5V Tolerant |
Pins Volts Volts |
Analog Input Converters Resolution Usable Prog Gain Amp Touch Sensing Comparators |
14 1 16 13 0 12 2 |
21 2 16 13 1 12 3 |
Pins Bits Bits Pins |
Analog Output DAC Resolution |
0 - |
1 12 |
Pins Bits |
Timers FTM Type PWM Outputs PDB Type CMT (infrared) Type LPTMR Type PIT (interval) Type Systick RTC (date/time) ** |
11 Total 2 10 1 1 1 4 1 1 |
12 Total 3 12 1 1 1 4 1 1 |
Pins |
Communication USB Serial With FIFOs High Res Baud Fast Clock SPI With FIFOs I2C CAN Bus I2S Audio FIFO Size |
1 3 1 3 2 1 1 1 0 1 4 |
1 3 2 3 2 1 1 2 1 1 8 |
|
** RTC requires a 32.768 kHz crystal & 3V battery. See the Time Library for details. |
Teensy 3.2 is meant to be a drop-in replacement for Teensy 3.0. Only 1 pin has different functionality. The reset pin was replaced by A14/DAC, which you can use for true analog output, or as another analog input.
Pins 3 and 4 gained CAN bus functions.
Pins 6, 9, 15, and 20-21 can still have SPI chip select capability, but the labels were removed to simplify the pinout card. Currently no libraries use the native chip selects. However, a new SPIFIFO library is in development.
On the back side, 2 pins gained new PWM functionality and 6 pins have new analog input capability. A second I2C port is also added.
The Reset signal can be found on a new test point on the bottom side of Teensy 3.2.