mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-29 18:52:13 +01:00
Audio library to the new format
This commit is contained in:
parent
c13779daae
commit
b28104b795
10
libraries/Audio/library.properties
Normal file
10
libraries/Audio/library.properties
Normal 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)
|
@ -1,10 +1,10 @@
|
||||
name=SD
|
||||
author=SparkFun Electronics
|
||||
email=info@arduino.cc
|
||||
sentence=The libary to use the Arduino Ethernet shield or the Arduino Ethernet based on the WizNet W5100 ic.
|
||||
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.
|
||||
sentence=With this library you can use an SD card to save data and operate on files.
|
||||
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
|
||||
architectures=avr, sam
|
||||
architectures=*
|
||||
version=1.0
|
||||
dependencies= IPAddress, SPI
|
||||
dependencies= SPI
|
||||
core-dependencies=arduino (>=1.5.0)
|
||||
|
@ -17,7 +17,7 @@
|
||||
* along with the Arduino SdFat Library. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <SdFat.h>
|
||||
#include "SdFat.h"
|
||||
#ifdef __AVR__
|
||||
#include <avr/pgmspace.h>
|
||||
#endif
|
||||
|
@ -17,7 +17,7 @@
|
||||
* along with the Arduino SdFat Library. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <SdFat.h>
|
||||
#include "SdFat.h"
|
||||
//------------------------------------------------------------------------------
|
||||
// raw block cache
|
||||
// init cacheBlockNumber_to invalid SD block number
|
||||
|
@ -2,8 +2,8 @@ name=Servo
|
||||
author=cmaglie
|
||||
email=Cristian Maglie <c.maglie@bug.st>
|
||||
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 />
|
||||
url=http://github.com/cmaglie/Servo
|
||||
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://arduino.cc/en/Reference/Servo
|
||||
architectures=avr,sam
|
||||
version=1.0
|
||||
dependencies=
|
||||
|
Loading…
x
Reference in New Issue
Block a user