mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Due to website configuration changes, every url starting with http://arduino.cc has been changed to http://www.arduino.cc. Fixes #3191
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
The Audio library enables an Arduino Due board to play back .wav files from a storage device like an SD card.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/Audio
|
||||
http://www.arduino.cc/en/Reference/Audio
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
This example code is in the public domain
|
||||
|
||||
http://arduino.cc/en/Tutorial/SimpleAudioPlayer
|
||||
http://www.arduino.cc/en/Tutorial/SimpleAudioPlayer
|
||||
|
||||
*/
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=Audio
|
||||
version=1.0.2
|
||||
version=1.0.3
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows playing audio files from an SD card. For Arduino DUE only.
|
||||
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.
|
||||
category=Signal Input/Output
|
||||
url=http://arduino.cc/en/Reference/Audio
|
||||
url=http://www.arduino.cc/en/Reference/Audio
|
||||
architectures=sam
|
||||
|
@ -3,7 +3,7 @@
|
||||
The Bridge library simplifies communication between the ATmega32U4 and the AR9331.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/YunBridgeLibrary
|
||||
http://www.arduino.cc/en/Reference/YunBridgeLibrary
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
This example code is part of the public domain
|
||||
|
||||
http://arduino.cc/en/Tutorial/Bridge
|
||||
http://www.arduino.cc/en/Tutorial/Bridge
|
||||
|
||||
*/
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ConsoleAsciiTable
|
||||
http://www.arduino.cc/en/Tutorial/ConsoleAsciiTable
|
||||
|
||||
*/
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ConsolePixel
|
||||
http://www.arduino.cc/en/Tutorial/ConsolePixel
|
||||
|
||||
*/
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ConsoleRead
|
||||
http://www.arduino.cc/en/Tutorial/ConsoleRead
|
||||
|
||||
*/
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/YunDatalogger
|
||||
http://www.arduino.cc/en/Tutorial/YunDatalogger
|
||||
|
||||
*/
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/FileWriteScript
|
||||
http://www.arduino.cc/en/Tutorial/FileWriteScript
|
||||
|
||||
*/
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/HttpClient
|
||||
http://www.arduino.cc/en/Tutorial/HttpClient
|
||||
|
||||
*/
|
||||
|
||||
@ -37,7 +37,7 @@ void loop() {
|
||||
HttpClient client;
|
||||
|
||||
// Make a HTTP request:
|
||||
client.get("http://arduino.cc/asciilogo.txt");
|
||||
client.get("http://www.arduino.cc/asciilogo.txt");
|
||||
|
||||
// if there are incoming bytes available
|
||||
// from the server, read them and print them:
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/MailboxReadMessage
|
||||
http://www.arduino.cc/en/Tutorial/MailboxReadMessage
|
||||
|
||||
*/
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/Process
|
||||
http://www.arduino.cc/en/Tutorial/Process
|
||||
|
||||
*/
|
||||
|
||||
@ -39,7 +39,7 @@ void runCurl() {
|
||||
// curl is command line program for transferring data using different internet protocols
|
||||
Process p; // Create a process and call it "p"
|
||||
p.begin("curl"); // Process that launch the "curl" command
|
||||
p.addParameter("http://arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
|
||||
p.addParameter("http://www.arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
|
||||
p.run(); // Run the process and wait for its termination
|
||||
|
||||
// Print arduino logo over the Serial
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ShellCommands
|
||||
http://www.arduino.cc/en/Tutorial/ShellCommands
|
||||
|
||||
*/
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/TemperatureWebPanel
|
||||
http://www.arduino.cc/en/Tutorial/TemperatureWebPanel
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/TimeCheck
|
||||
http://www.arduino.cc/en/Tutorial/TimeCheck
|
||||
|
||||
*/
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/YunWiFiStatus
|
||||
http://www.arduino.cc/en/Tutorial/YunWiFiStatus
|
||||
|
||||
*/
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/YunSerialTerminal
|
||||
http://www.arduino.cc/en/Tutorial/YunSerialTerminal
|
||||
|
||||
*/
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=Bridge
|
||||
version=1.0.4
|
||||
version=1.0.5
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables the communication between the Linux processor and the AVR. For Arduino Yún and TRE only.
|
||||
paragraph=The Bridge library feature: access to the shared storage, run and manage linux processes, open a remote console, access to the linux file system, including the SD card, enstablish http clients or servers.
|
||||
category=Communication
|
||||
url=http://arduino.cc/en/Reference/YunBridgeLibrary
|
||||
url=http://www.arduino.cc/en/Reference/YunBridgeLibrary
|
||||
architectures=*
|
||||
|
@ -3,7 +3,7 @@
|
||||
The library offers easy access to the data from the onboard Esplora's sensors, and provides the ability to change the state of the outputs.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/EsploraLibrary
|
||||
http://www.arduino.cc/en/Reference/EsploraLibrary
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
Updated 8 March 2014
|
||||
by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Reference/EsploraReadJoystickSwitch
|
||||
http://www.arduino.cc/en/Reference/EsploraReadJoystickSwitch
|
||||
|
||||
This example is in the public domain.
|
||||
*/
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=Esplora
|
||||
version=1.0.3
|
||||
version=1.0.4
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Grants easy access to the various sensors and actuators of the Esplora. For Arduino Esplora only.
|
||||
paragraph=The sensors available on the board are:2-Axis analog joystick with center push-button,4 push-buttons,microphone, light sensor, temperature sensor, 3-axis accelerometer, 2 TinkerKit input connectors.</br>The actuators available on the board are: bright RGB LED, piezo buzzer, 2 TinkerKit output connectors.
|
||||
category=Device Control
|
||||
url=http://arduino.cc/en/Reference/EsploraLibrary
|
||||
url=http://www.arduino.cc/en/Reference/EsploraLibrary
|
||||
architectures=avr
|
||||
|
@ -3,7 +3,7 @@
|
||||
With the Arduino Ethernet Shield, this library allows an Arduino board to connect to the internet.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/Ethernet
|
||||
http://www.arduino.cc/en/Reference/Ethernet
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
modified 21 Jan 2014
|
||||
by Federico Vanzati
|
||||
|
||||
http://arduino.cc/en/Tutorial/WebClientRepeating
|
||||
http://www.arduino.cc/en/Tutorial/WebClientRepeating
|
||||
This code is in the public domain.
|
||||
|
||||
*/
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=Ethernet
|
||||
version=1.0.2
|
||||
version=1.0.3
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables network connection (local and Internet) using the Arduino Ethernet board or shield. For all Arduino boards.
|
||||
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.
|
||||
category=Communication
|
||||
url=http://arduino.cc/en/Reference/Ethernet
|
||||
url=http://www.arduino.cc/en/Reference/Ethernet
|
||||
architectures=*
|
||||
|
@ -3,7 +3,7 @@
|
||||
The Firmata library implements the Firmata protocol for communicating with software on the host computer. This allows you to write custom firmware without having to create your own protocol and objects for the programming environment that you are using.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/Firmata
|
||||
http://www.arduino.cc/en/Reference/Firmata
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
With the Arduino GSM Shield, this library enables an Arduino board to do most of the operations you can do with a GSM phone: place and receive voice calls, send and receive SMS, and connect to the internet over a GPRS network.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/GSM
|
||||
http://www.arduino.cc/en/Reference/GSM
|
||||
|
||||
== License ==
|
||||
Copyright (c) 2012 Telefónica Digital - PDI - Physical Internet Lab
|
||||
|
@ -2,7 +2,7 @@
|
||||
Web client
|
||||
|
||||
This sketch connects to a website through a GSM shield. Specifically,
|
||||
this example downloads the URL "http://arduino.cc/asciilogo.txt" and
|
||||
this example downloads the URL "http://www.arduino.cc/asciilogo.txt" and
|
||||
prints it to the Serial monitor.
|
||||
|
||||
Circuit:
|
||||
@ -12,7 +12,7 @@
|
||||
created 8 Mar 2012
|
||||
by Tom Igoe
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMExamplesWebClient
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesWebClient
|
||||
|
||||
*/
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
This example is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMExamplesReceiveSMS
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesReceiveSMS
|
||||
|
||||
*/
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
Circuit:
|
||||
* GSM shield
|
||||
* Voice circuit. Refer to to the GSM shield getting started guide
|
||||
at http://arduino.cc/en/Guide/ArduinoGSMShield#toc11
|
||||
at http://www.arduino.cc/en/Guide/ArduinoGSMShield#toc11
|
||||
* SIM card that can accept voice calls
|
||||
|
||||
With no voice circuit the call will connect, but will not send or receive sound
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
This example is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMExamplesReceiveVoiceCall
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesReceiveVoiceCall
|
||||
|
||||
*/
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
This example is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMExamplesSendSMS
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesSendSMS
|
||||
|
||||
*/
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
Modified 4 Feb 2013
|
||||
by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMToolsGsmScanNetworks
|
||||
http://www.arduino.cc/en/Tutorial/GSMToolsGsmScanNetworks
|
||||
|
||||
This example code is part of the public domain
|
||||
*/
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
This example code is part of the public domain
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMToolsPinManagement
|
||||
http://www.arduino.cc/en/Tutorial/GSMToolsPinManagement
|
||||
|
||||
*/
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
This example code is part of the public domain
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMToolsTestGPRS
|
||||
http://www.arduino.cc/en/Tutorial/GSMToolsTestGPRS
|
||||
|
||||
*/
|
||||
|
||||
@ -34,7 +34,7 @@ String errortext = "ERROR";
|
||||
|
||||
// URL and path (for example: arduino.cc)
|
||||
char url[] = "arduino.cc";
|
||||
char urlproxy[] = "http://arduino.cc";
|
||||
char urlproxy[] = "http://www.arduino.cc";
|
||||
char path[] = "/";
|
||||
|
||||
// variable for save response obtained
|
||||
|
@ -12,7 +12,7 @@
|
||||
modified 21 Nov 2012
|
||||
by Tom Igoe
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMToolsTestModem
|
||||
http://www.arduino.cc/en/Tutorial/GSMToolsTestModem
|
||||
|
||||
This sample code is part of the public domain
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
modified 21 Nov 2012
|
||||
by Tom Igoe
|
||||
|
||||
http://arduino.cc/en/Tutorial/GSMToolsTestWebServer
|
||||
http://www.arduino.cc/en/Tutorial/GSMToolsTestWebServer
|
||||
|
||||
This example code is part of the public domain
|
||||
*/
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=GSM
|
||||
version=1.0.3
|
||||
version=1.0.4
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables GSM/GRPS network connection using the Arduino GSM Shield. For all Arduino boards BUT Arduino DUE.
|
||||
paragraph=Use this library to make/receive voice calls, to send and receive SMS with the Quectel M10 GSM module.</br>This library also allows you to connect to internet through the GPRS networks. You can either use web Clients and Servers.</br>
|
||||
category=Communication
|
||||
url=http://arduino.cc/en/Reference/GSM
|
||||
url=http://www.arduino.cc/en/Reference/GSM
|
||||
architectures=avr
|
||||
|
@ -3,7 +3,7 @@
|
||||
This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/LiquidCrystal
|
||||
http://www.arduino.cc/en/Reference/LiquidCrystal
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalAutoscroll
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalAutoscroll
|
||||
|
||||
*/
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalBlink
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalBlink
|
||||
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalCursor
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalCursor
|
||||
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalDisplay
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalDisplay
|
||||
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalScroll
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalScroll
|
||||
|
||||
*/
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalSerial
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalSerial
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -32,7 +32,7 @@ by Tom Igoe
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalTextDirection
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalTextDirection
|
||||
|
||||
*/
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalSetCursor
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystalSetCursor
|
||||
|
||||
*/
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=LiquidCrystal
|
||||
version=1.0.1
|
||||
version=1.0.2
|
||||
author=Arduino, Adafruit
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows communication with alphanumerical liquid crystal displays (LCDs). For all Arduino boards.
|
||||
paragraph=This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. The library works with in either 4 or 8 bit mode (i.e. using 4 or 8 data lines in addition to the rs, enable, and, optionally, the rw control lines).
|
||||
category=Display
|
||||
url=http://arduino.cc/en/Reference/LiquidCrystal
|
||||
url=http://www.arduino.cc/en/Reference/LiquidCrystal
|
||||
architectures=*
|
||||
|
@ -3,7 +3,7 @@
|
||||
The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/RobotLibrary
|
||||
http://www.arduino.cc/en/Reference/RobotLibrary
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/RobotLibrary
|
||||
http://www.arduino.cc/en/Reference/RobotLibrary
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -5,5 +5,5 @@ maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables easy access to the controls of the Arduino Robot Control board. For Arduino Robot only.
|
||||
paragraph=The Arduino robot is made by two independent boards. The Control Board is the top board of the Arduino Robot, with this library you can easily write sketches to control the robot.
|
||||
category=Device Control
|
||||
url=http://arduino.cc/en/Reference/RobotLibrary
|
||||
url=http://www.arduino.cc/en/Reference/RobotLibrary
|
||||
architectures=avr
|
||||
|
@ -3,7 +3,7 @@
|
||||
The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/RobotLibrary
|
||||
http://www.arduino.cc/en/Reference/RobotLibrary
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -5,5 +5,5 @@ maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables easy access to the motors of the Arduino Robot Motor board. For Arduino Robot only.
|
||||
paragraph=
|
||||
category=Device Control
|
||||
url=http://arduino.cc/en/Reference/RobotLibrary
|
||||
url=http://www.arduino.cc/en/Reference/RobotLibrary
|
||||
architectures=avr
|
||||
|
@ -3,7 +3,7 @@
|
||||
The SD library allows for reading from and writing to SD cards.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/SD
|
||||
http://www.arduino.cc/en/Reference/SD
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -5,5 +5,5 @@ maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables reading and writing on SD cards. For all Arduino boards.
|
||||
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.
|
||||
category=Data Storage
|
||||
url=http://arduino.cc/en/Reference/SD
|
||||
url=http://www.arduino.cc/en/Reference/SD
|
||||
architectures=*
|
||||
|
@ -3,7 +3,7 @@
|
||||
The Scheduler library enables the Arduino Due to run multiple functions at the same time. This allows tasks to happen without interrupting each other.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/Scheduler
|
||||
http://www.arduino.cc/en/Reference/Scheduler
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
This example code is in the public domain
|
||||
|
||||
http://arduino.cc/en/Tutorial/MultipleBlinks
|
||||
http://www.arduino.cc/en/Tutorial/MultipleBlinks
|
||||
*/
|
||||
|
||||
// Include Scheduler since we want to manage multiple tasks.
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=Scheduler
|
||||
version=0.4.2
|
||||
version=0.4.3
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows multiple tasks to run at the same time, without interrupting each other. For Arduino DUE only.
|
||||
paragraph=The Scheduler library enables the Arduino Due to run multiple functions at the same time. This allows tasks to happen without interrupting each other.</br>This is a cooperative scheduler in that the CPU switches from one task to another. The library includes methods for passing control between tasks.
|
||||
category=Other
|
||||
url=http://arduino.cc/en/Reference/Scheduler
|
||||
url=http://www.arduino.cc/en/Reference/Scheduler
|
||||
architectures=sam
|
||||
|
@ -3,7 +3,7 @@
|
||||
This library allows an Arduino board to control RC (hobby) servo motors.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/Servo
|
||||
http://www.arduino.cc/en/Reference/Servo
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
modified on 8 Nov 2013
|
||||
by Scott Fitzgerald
|
||||
http://arduino.cc/en/Tutorial/Knob
|
||||
http://www.arduino.cc/en/Tutorial/Knob
|
||||
*/
|
||||
|
||||
#include <Servo.h>
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
modified 8 Nov 2013
|
||||
by Scott Fitzgerald
|
||||
http://arduino.cc/en/Tutorial/Sweep
|
||||
http://www.arduino.cc/en/Tutorial/Sweep
|
||||
*/
|
||||
|
||||
#include <Servo.h>
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=Servo
|
||||
version=1.0.2
|
||||
version=1.0.3
|
||||
author=Michael Margolis, Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows Arduino boards to control a variety of servo motors. For all Arduino boards.
|
||||
paragraph=This library can control a great number of servos.<br />It makes careful use of timers: the library can control 12 servos using only 1 timer.<br />On the Arduino Due you can control up to 60 servos.<br />
|
||||
category=Device Control
|
||||
url=http://arduino.cc/en/Reference/Servo
|
||||
url=http://www.arduino.cc/en/Reference/Servo
|
||||
architectures=avr,sam
|
||||
|
@ -3,7 +3,7 @@
|
||||
This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/Stepper
|
||||
http://www.arduino.cc/en/Reference/Stepper
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -5,5 +5,5 @@ maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows Arduino boards to control a variety of stepper motors. For all Arduino boards.
|
||||
paragraph=This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it.
|
||||
category=Device Control
|
||||
url=http://arduino.cc/en/Reference/Stepper
|
||||
url=http://www.arduino.cc/en/Reference/Stepper
|
||||
architectures=*
|
||||
|
@ -3,7 +3,7 @@
|
||||
This library enables an Arduino board to communicate with the Arduino TFT LCD screen. It simplifies the process for drawing shapes, lines, images, and text to the screen.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/TFTLibrary
|
||||
http://www.arduino.cc/en/Reference/TFTLibrary
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
Created 19 April 2013 by Enrico Gueli
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTBitmapLogo
|
||||
http://www.arduino.cc/en/Tutorial/TFTBitmapLogo
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTColorPicker
|
||||
http://www.arduino.cc/en/Tutorial/TFTColorPicker
|
||||
|
||||
*/
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTDisplayText
|
||||
http://www.arduino.cc/en/Tutorial/TFTDisplayText
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTEtchASketch
|
||||
http://www.arduino.cc/en/Tutorial/TFTEtchASketch
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTGraph
|
||||
http://www.arduino.cc/en/Tutorial/TFTGraph
|
||||
|
||||
*/
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
Created by Tom Igoe December 2012
|
||||
Modified 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTPong
|
||||
http://www.arduino.cc/en/Tutorial/TFTPong
|
||||
|
||||
*/
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
Created 19 April 2013 by Enrico Gueli
|
||||
|
||||
http://arduino.cc/en/Tutorial/EsploraTFTBitmapLogo
|
||||
http://www.arduino.cc/en/Tutorial/EsploraTFTBitmapLogo
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/TFTColorPicker
|
||||
http://www.arduino.cc/en/Tutorial/TFTColorPicker
|
||||
|
||||
*/
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/EsploraTFTEtchASketch
|
||||
http://www.arduino.cc/en/Tutorial/EsploraTFTEtchASketch
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/EsploraTFTGraph
|
||||
http://www.arduino.cc/en/Tutorial/EsploraTFTGraph
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/EsploraTFTHorizon
|
||||
http://www.arduino.cc/en/Tutorial/EsploraTFTHorizon
|
||||
|
||||
*/
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
Created by Tom Igoe December 2012
|
||||
Modified 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/EsploraTFTPong
|
||||
http://www.arduino.cc/en/Tutorial/EsploraTFTPong
|
||||
|
||||
*/
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
Created 15 April 2013 by Scott Fitzgerald
|
||||
|
||||
http://arduino.cc/en/Tutorial/EsploraTFTTemp
|
||||
http://www.arduino.cc/en/Tutorial/EsploraTFTTemp
|
||||
|
||||
*/
|
||||
|
||||
|
@ -12,7 +12,7 @@ The TFT library relies on the SPI library for communication with the screen and
|
||||
|
||||
https://github.com/adafruit/Adafruit-GFX-Library
|
||||
https://github.com/adafruit/Adafruit-ST7735-Library
|
||||
http://arduino.cc/en/Reference/SD
|
||||
http://arduino.cc/en/Reference/SPI
|
||||
http://www.arduino.cc/en/Reference/SD
|
||||
http://www.arduino.cc/en/Reference/SPI
|
||||
|
||||
http://arduino.cc/en/Reference/TFTLibrary
|
||||
http://www.arduino.cc/en/Reference/TFTLibrary
|
@ -1,9 +1,9 @@
|
||||
name=TFT
|
||||
version=1.0.2
|
||||
version=1.0.3
|
||||
author=Arduino, Adafruit
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows drawing text, images, and shapes on the Arduino TFT graphical display. For all Arduino boards.
|
||||
paragraph=This library is compatible with most of the TFT display based on the ST7735 chipset
|
||||
category=Display
|
||||
url=http://arduino.cc/en/Reference/TFTLibrary
|
||||
url=http://www.arduino.cc/en/Reference/TFTLibrary
|
||||
architectures=*
|
||||
|
@ -3,7 +3,7 @@
|
||||
The USBHost library allows an Arduino Due board to appear as a USB host, enabling it to communicate with peripherals like USB mice and keyboards.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/USBHost
|
||||
http://www.arduino.cc/en/Reference/USBHost
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
created 8 Oct 2012
|
||||
by Cristian Maglie
|
||||
|
||||
http://arduino.cc/en/Tutorial/KeyboardController
|
||||
http://www.arduino.cc/en/Tutorial/KeyboardController
|
||||
|
||||
This sample code is part of the public domain.
|
||||
*/
|
||||
|
@ -7,7 +7,7 @@
|
||||
created 8 Oct 2012
|
||||
by Cristian Maglie
|
||||
|
||||
http://arduino.cc/en/Tutorial/MouseController
|
||||
http://www.arduino.cc/en/Tutorial/MouseController
|
||||
|
||||
This sample code is part of the public domain.
|
||||
*/
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=USBHost
|
||||
version=1.0.2
|
||||
version=1.0.3
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows the communication with USB peripherals like mice, keyboards, and thumbdrives. For Arduino DUE only.
|
||||
paragraph=The USBHost library allows an Arduino Due board to appear as a USB host, enabling it to communicate with peripherals like USB mice and keyboards. USBHost does not support devices that are connected through USB hubs. This includes some keyboards that have an internal hub.
|
||||
category=Device Control
|
||||
url=http://arduino.cc/en/Reference/USBHost
|
||||
url=http://www.arduino.cc/en/Reference/USBHost
|
||||
architectures=sam
|
||||
|
@ -3,7 +3,7 @@
|
||||
With the Arduino WiFi Shield, this library allows an Arduino board to connect to the internet.
|
||||
|
||||
For more information about this library please visit us at
|
||||
http://arduino.cc/en/Reference/WiFi
|
||||
http://www.arduino.cc/en/Reference/WiFi
|
||||
|
||||
== License ==
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
modified 13 Jan 2014
|
||||
by Federico Vanzati
|
||||
|
||||
http://arduino.cc/en/Tutorial/WifiWebClientRepeating
|
||||
http://www.arduino.cc/en/Tutorial/WifiWebClientRepeating
|
||||
This code is in the public domain.
|
||||
*/
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
name=WiFi
|
||||
version=1.2.3
|
||||
version=1.2.4
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables network connection (local and Internet) using the Arduino WiFi shield. For all Arduino boards.
|
||||
paragraph=With this library you can instantiate Servers, Clients and send/receive UDP packets through WiFi. The shield can connect either to open or encrypted networks (WEP, WPA). The IP address can be assigned statically or through a DHCP. The library can also manage DNS.
|
||||
category=Communication
|
||||
url=http://arduino.cc/en/Reference/WiFi
|
||||
url=http://www.arduino.cc/en/Reference/WiFi
|
||||
architectures=*
|
||||
|
Reference in New Issue
Block a user