1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-06 01:08:25 +01:00

Audio library to the new format

This commit is contained in:
Fede85 2013-06-27 19:15:53 +02:00
parent c13779daae
commit b28104b795
11 changed files with 18 additions and 8 deletions

View File

@ -0,0 +1,10 @@
name=Audio
author=cmaglie
email=Cristian Maglie <c.maglie@bug.st>
sentence=The libary to play audio files through the DAC outputs of the Arduino Due.
paragraph=With this library you can use the Arduino Due DAC outputs to play audio files.<br />The audio files must be in the raw .wav format.
url=http://arduino.cc/en/Reference/Audio
architectures=sam
version=1.0
dependencies=
core-dependencies=arduino (>=1.5.0)

View File

@ -1,10 +1,10 @@
name=SD name=SD
author=SparkFun Electronics author=SparkFun Electronics
email=info@arduino.cc email=info@arduino.cc
sentence=The libary to use the Arduino Ethernet shield or the Arduino Ethernet based on the WizNet W5100 ic. sentence=With this library you can use an SD card to save data and operate on files.
paragraph=With this library you can use the Arduino Ethernet (shield or board) to connect to Internet. The library provides both Client and server functionalities. The library permits you to connect to a local network also with DHCP and to resolve DNS. paragraph=Once an SD memory card is connected to the SPI interfare of the Arduino board you are enabled to create files and read/write on them. You can also move through directories on the SD card.
url=http://arduino.cc/en/Reference/SD url=http://arduino.cc/en/Reference/SD
architectures=avr, sam architectures=*
version=1.0 version=1.0
dependencies= IPAddress, SPI dependencies= SPI
core-dependencies=arduino (>=1.5.0) core-dependencies=arduino (>=1.5.0)

View File

@ -17,7 +17,7 @@
* along with the Arduino SdFat Library. If not, see * along with the Arduino SdFat Library. If not, see
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#include <SdFat.h> #include "SdFat.h"
#ifdef __AVR__ #ifdef __AVR__
#include <avr/pgmspace.h> #include <avr/pgmspace.h>
#endif #endif

View File

@ -17,7 +17,7 @@
* along with the Arduino SdFat Library. If not, see * along with the Arduino SdFat Library. If not, see
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#include <SdFat.h> #include "SdFat.h"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// raw block cache // raw block cache
// init cacheBlockNumber_to invalid SD block number // init cacheBlockNumber_to invalid SD block number

View File

@ -2,8 +2,8 @@ name=Servo
author=cmaglie author=cmaglie
email=Cristian Maglie <c.maglie@bug.st> email=Cristian Maglie <c.maglie@bug.st>
sentence=Controls a lot of Servos. sentence=Controls a lot of Servos.
paragraph=This library can control a great number of servos.<br />It makes careful use of timers: the library can control 12 servos with only 1 timer!<br /> paragraph=This library can control a great number of servos.<br />It makes careful use of timers: the library can control 12 servos with only 1 timer!<br />On the Arduino Due you can control up to 60 servos.<br />
url=http://github.com/cmaglie/Servo url=http://arduino.cc/en/Reference/Servo
architectures=avr,sam architectures=avr,sam
version=1.0 version=1.0
dependencies= dependencies=