| ||
|
Shopping Cart
|
| Home | MP3 Player | 8051 Tools | All Projects | PJRC Store | Site Map |
|
You are here:
Teensy
| Search PJRC |
|
Teensyduino
The Download Page has versions of Teensyduino for recent Arduino software on Linux, Macintosh and Windows. Running Sketches on the TeensyMany type of sketches are able to run on the Teensy! The digitial I/O pins work with digitialWrite(pin,value), digitalRead(pin), and pinMode(pin,mode). The PWM pins can be used with analogWrite(pin,value). Eight (8) pins can be used as interrupts with attachInterrupt(). The Teensy++ has 8 analog inputs that can be used with analogRead().Communication can be done using Serial.print() and other communication functions normally used for communication on the Arduino board. Unlike the Arduino, which converts 38.4 kbps serial to USB, the Teensy has direct 12 MBit/sec USB access, so communications are sent and received at full USB speed. Direct USB access is possible, so the Teensy is not limited to being only a serial-type USB device. It can act as HID, Mass Storage, or nearly any type of USB device. Future Teensyduino releases will provide alternate board configurations that act as non-serial devices.
The Teensy also has a serial port. It is not connected the USB port and
can be used separately.
How Does Teensy Compare With The Arduino Board?
Teensyduino attempts to make Teensy as compatible with sketches as possible. If you discover a bug or compatability problem, please report it to paul@pjrc.com. The Teensy lacks analog inputs. Sketches that require analog input can not work on the Teensy. The Teensy also has less RAM and fewer PWM capable pins than an Arduino. Teensy is designed for easy use on breadboards in the smallest possible size, which is incompatible with the form-factor used by Arduino shields.
While many types of sketches can run, Teensy is NOT an "Arduino clone" due to
the substantial technical differences. The Teensy hardware and Teensyduino
software add-on are NOT endorsed or supported by the Arduino developer team.
|