mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
updated URLs in LiquidCrystal examples
This commit is contained in:
parent
0cdc7e59c6
commit
8e50ecbb6c
@ -14,7 +14,11 @@ byte value;
|
||||
|
||||
void setup()
|
||||
{
|
||||
// initialize serial and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for Leonardo only
|
||||
}
|
||||
}
|
||||
|
||||
void loop()
|
||||
|
@ -32,7 +32,8 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalAutoscroll
|
||||
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalBlink
|
||||
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,8 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalCursor
|
||||
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -33,7 +33,8 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalDisplay
|
||||
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -33,7 +33,8 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalScroll
|
||||
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalSerial
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalTextDirection
|
||||
|
||||
*/
|
||||
|
||||
@ -49,7 +49,6 @@ void setup() {
|
||||
lcd.begin(16, 2);
|
||||
// turn on the cursor:
|
||||
lcd.cursor();
|
||||
Serial.begin(9600);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
@ -32,7 +32,8 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/LiquidCrystal
|
||||
http://arduino.cc/en/Tutorial/LiquidCrystalSetCursor
|
||||
|
||||
*/
|
||||
|
||||
// include the library code:
|
||||
|
@ -23,7 +23,7 @@ SoftwareSerial mySerial(2, 3); // RX, TX
|
||||
void setup()
|
||||
{
|
||||
// Open serial communications and wait for port to open:
|
||||
Serial.begin57600;
|
||||
Serial.begin(57600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for Leonardo only
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user