Skip to content

Commit b28104b

Browse files
committed
Audio library to the new format
1 parent c13779d commit b28104b

File tree

11 files changed

+18
-8
lines changed

11 files changed

+18
-8
lines changed

libraries/Audio/library.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name=Audio
2+
author=cmaglie
3+
email=Cristian Maglie <c.maglie@bug.st>
4+
sentence=The libary to play audio files through the DAC outputs of the Arduino Due.
5+
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.
6+
url=http://arduino.cc/en/Reference/Audio
7+
architectures=sam
8+
version=1.0
9+
dependencies=
10+
core-dependencies=arduino (>=1.5.0)

libraries/SD/library.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name=SD
22
author=SparkFun Electronics
33
email=info@arduino.cc
4-
sentence=The libary to use the Arduino Ethernet shield or the Arduino Ethernet based on the WizNet W5100 ic.
5-
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.
4+
sentence=With this library you can use an SD card to save data and operate on files.
5+
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.
66
url=http://arduino.cc/en/Reference/SD
7-
architectures=avr, sam
7+
architectures=*
88
version=1.0
9-
dependencies= IPAddress, SPI
9+
dependencies= SPI
1010
core-dependencies=arduino (>=1.5.0)

libraries/SD/src/utility/SdFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* along with the Arduino SdFat Library. If not, see
1818
* <http://www.gnu.org/licenses/>.
1919
*/
20-
#include <SdFat.h>
20+
#include "SdFat.h"
2121
#ifdef __AVR__
2222
#include <avr/pgmspace.h>
2323
#endif

libraries/SD/src/utility/SdVolume.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* along with the Arduino SdFat Library. If not, see
1818
* <http://www.gnu.org/licenses/>.
1919
*/
20-
#include <SdFat.h>
20+
#include "SdFat.h"
2121
//------------------------------------------------------------------------------
2222
// raw block cache
2323
// init cacheBlockNumber_to invalid SD block number

libraries/Servo/library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name=Servo
22
author=cmaglie
33
email=Cristian Maglie <c.maglie@bug.st>
44
sentence=Controls a lot of Servos.
5-
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 />
6-
url=http://github.com/cmaglie/Servo
5+
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 />
6+
url=http://arduino.cc/en/Reference/Servo
77
architectures=avr,sam
88
version=1.0
99
dependencies=

0 commit comments

Comments
 (0)