Skip to content

Commit 189198e

Browse files
committed
fix several outdated URLs
1 parent 80e968d commit 189198e

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

PortsLCD.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/// @file
77
/// LiquidCrystal library, extended for use over I2C with the LCD Plug.
8-
/// See http://news.jeelabs.org/2009/09/26/generalized-liquidcrystal-library/
8+
/// See http://jeelabs.org/2009/09/26/generalized-liquidcrystal-library/
99

1010
#include <inttypes.h>
1111
#include <Print.h>

examples/Ports/bmp085demo/bmp085demo.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// 2010-06-17: add power saving logic, should reduce consumption by over 90%
99
// 2010-06-24: improved power savings, several "hot spots" optimized
1010

11-
// see http://news.jeelabs.org/2010/06/20/battery-savings-for-the-pressure-plug/
12-
// see http://news.jeelabs.org/2010/06/30/going-for-gold-with-the-bmp085/
11+
// see http://jeelabs.org/2010/06/20/battery-savings-for-the-pressure-plug/
12+
// see http://jeelabs.org/2010/06/30/going-for-gold-with-the-bmp085/
1313

1414
#include <JeeLib.h>
1515
#include <PortsBMP085.h>

examples/Ports/isp_capture/isp_capture.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// Variant of isp_flash which supports the Flash Board with on-board EEPROM.
33

44
// Originally derived from http://arduino.cc/en/Tutorial/ArduinoISP
5-
// see http://news.jeelabs.org/2010/04/24/isp-plug/
5+
// see http://jeelabs.org/2010/04/24/isp-plug/
66

77
// This is an STK500-/AVRISP-compatible programmer with a twist: when used with
88
// the Flash Board which has EEPROM memory on board, a copy of all programming

examples/Ports/isp_flash/isp_flash.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// Derived from http://arduino.cc/en/Tutorial/ArduinoISP
33
// - 2010-04-17, jcw
44
//
5-
// see http://news.jeelabs.org/2010/04/24/isp-plug/
5+
// see http://jeelabs.org/2010/04/24/isp-plug/
66
// and http://jeelabs.org/2011/05/29/summary-of-isp-options/
77

88
// pin definitions

examples/Ports/isp_prepare/isp_prepare.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// Upload a built-in range of data bytes to a target board attached via ISP.
33
// 2010-04-18 <[email protected]> http://opensource.org/licenses/mit-license.php
44
//
5-
// see http://news.jeelabs.org/2010/04/25/preparing-atmegas-with-isp/
5+
// see http://jeelabs.org/2010/04/25/preparing-atmegas-with-isp/
66

77
// see http://jeelabs.org/tag/isp/ for related weblog posts
88
// and http://jeelabs.org/2011/05/29/summary-of-isp-options/

examples/Ports/isp_repair/isp_repair.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// Upload a boot loader and the blink demo sketch to a second board.
33
// 2020-05-29 <[email protected]> http://opensource.org/licenses/mit-license.php
44

5-
// see http://news.jeelabs.org/2010/04/25/preparing-atmegas-with-isp/
5+
// see http://jeelabs.org/2010/04/25/preparing-atmegas-with-isp/
66
// http://jeelabs.org/2011/05/17/switching-to-optiboot/
77
// http://jeelabs.org/2011/05/26/fixing-the-isp_repair-sketch/
88
// http://jeelabs.org/2011/05/29/summary-of-isp-options/

examples/RF12/RF12demo/README

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ HOW TO SET UP A SMALL WIRELESS TEST
1212
===================================
1313

1414
1. First of all, get two units hooked up as described here:
15-
http://news.jeelabs.org/2009/02/10/rfm12b-library-for-arduino/
15+
http://jeelabs.org/2009/02/10/rfm12b-library-for-arduino/
1616
I use "JeeNodes" for this, but that's just me:
17-
http://news.jeelabs.org/2009/03/05/jeenode-v2-pcb/
17+
http://jeelabs.org/2009/03/05/jeenode-v2-pcb/
1818

1919
2. Compile and upload this RF12demo sketch to both boards. The serial baud
2020
rate is set at 57600, you can change it in the source code if needed.
@@ -70,6 +70,6 @@ HOW TO SET UP A SMALL WIRELESS TEST
7070

7171
14. The code is fully open source - feel free to browse and make changes as you
7272
see fit. The latest version of this software is always available here:
73-
http://jeelabs.org/view/libraries/RF12/
73+
https://github.com/jcw/jeelib
7474

7575
That's it - have fun!

examples/RF12/ookScope2/ookScope2.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// Examine the pulse patterns coming from an OOK receiver (see also peekrf).
33
// 2010-04-10 <[email protected]> http://opensource.org/licenses/mit-license.php
44
//
5-
// see http://news.jeelabs.org/2010/04/13/an-ook-scope/
5+
// see http://jeelabs.org/2010/04/13/an-ook-scope/
66
// changed to use pin-change interrupts i.s.o. the analog comparator
77

88
#define OOK_PIN 2 // this is the input pin with the signal to be analyzed

examples/RF12/pingPong/pingPong.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// 2010-05-17 <[email protected]> http://opensource.org/licenses/mit-license.php
44

55
// with thanks to Peter G for creating a test sketch and pointing out the issue
6-
// see http://news.jeelabs.org/2010/05/20/a-subtle-rf12-detail/
6+
// see http://jeelabs.org/2010/05/20/a-subtle-rf12-detail/
77

88
#include <JeeLib.h>
99

0 commit comments

Comments
 (0)