Skip to content

Commit 6df2d8d

Browse files
committed
update some broken URLs
1 parent e3a76cd commit 6df2d8d

File tree

11 files changed

+17
-18
lines changed

11 files changed

+17
-18
lines changed

Diff for: Ports.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ byte BlinkPlug::buttonCheck () {
354354
}
355355

356356
void MemoryPlug::load (word page, byte offset, void* buf, int count) {
357-
// also don't load right after a save, see http://forum.jeelabs.net/node/469
357+
// also don't load right after a save, see https://jeelabs.org/forum/node/469.html
358358
while (millis() < nextSave)
359359
;
360360

Diff for: Ports.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@
1717

1818
// tweak this to switch ATtiny84 etc to new Arduino 1.0+ conventions
1919
// see http://arduino.cc/forum/index.php/topic,51984.msg371307.html#msg371307
20-
// and http://forum.jeelabs.net/node/1567
20+
// and https://jeelabs.org/forum/node/1567.html
2121
#if ARDUINO >= 100
2222
#define WRITE_RESULT size_t
2323
#else
2424
#define WRITE_RESULT void
2525
#endif
2626

2727
/// Interface for JeeNode Ports - see the wiki docs for
28-
/// [JeeNodes](http://jeelabs.net/projects/hardware/wiki/JeeNode) and
29-
/// [pinouts](http://jeelabs.net/projects/hardware/wiki/Pinouts).
28+
/// [JeeNodes](https://jeelabs.org/202x/jnc/).
3029
/// The Ports class is a thin wrapper around the Arduino's digitalRead(),
3130
/// digitalWrite(), analogRead(), etc. functions. It was designed to simplify
3231
/// the use of the four standard port headers on JeeNodes.

Diff for: PortsBMP085.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/// @file
44
/// Port library interface to BMP085 sensors connected via I2C.
5-
/// See http://jeelabs.net/projects/hardware/wiki/pp1
5+
/// See http://jeelabs.org/pp1
66

77
/// Interface for the Pressure Plug - see http://jeelabs.org/pp
88
class BMP085 : public DeviceI2C {

Diff for: PortsSHT11.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Port library interface to SHT11 sensors connected via "something like I2C".
55

66
/// Interface to the SHT11 temperature + humidity sensor.
7-
/// See: http://jeelabs.net/projects/hardware/wiki/rb
7+
/// See: http://jeelabs.org/rb1
88
class SHT11 : public Port {
99
void clock(uint8_t x) const;
1010
void release() const;

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
and for compatible devices, with drivers for its wireless radio module,
33
its "JeePort" interfaces, and a range of add-on "JeePlug" interfaces.
44

5-
The home page for this library is at <https://jeelabs.net/projects/jeelib/wiki>.
5+
The home page for this library is at <https://jeelabs.org/202x/sw/jeelib/>.
66

7-
[1]: https://jeelabs.net/projects/hardware/wiki
7+
[1]: https://jeelabs.org/202x/jnc/
88
[2]: https://jeelabs.org/

Diff for: examples/Ports/lux_demo/lux_demo.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void loop () {
2626
Serial.println(highGain);
2727

2828
// need to wait after changing the gain
29-
// see http://talk.jeelabs.net/topic/608
29+
// see https://jeelabs.org/talk/topic/608
3030
highGain = ! highGain;
3131
sensor.setGain(highGain);
3232
delay(1000);

Diff for: examples/RF12/RF12demo/RF12demo.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static void displayVersion () {
142142
}
143143

144144
/// @details
145-
/// For the EEPROM layout, see http://jeelabs.net/projects/jeelib/wiki/RF12demo
145+
/// For the EEPROM layout, see https://web.archive.org/web/20170518172835/http://jeelabs.net/projects/jeelib/wiki/RF12demo
146146
/// Useful url: http://blog.strobotics.com.au/2009/07/27/rfm12-tutorial-part-3a/
147147

148148
// RF12 configuration area

Diff for: examples/RF12/RF12demoBlock/RF12demoBlock.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static void displayVersion () {
142142
}
143143

144144
/// @details
145-
/// For the EEPROM layout, see http://jeelabs.net/projects/jeelib/wiki/RF12demo
145+
/// For the EEPROM layout, see https://web.archive.org/web/20170518172835/http://jeelabs.net/projects/jeelib/wiki/RF12demo
146146
/// Useful url: http://blog.strobotics.com.au/2009/07/27/rfm12-tutorial-part-3a/
147147

148148
// RF12 configuration area

Diff for: examples/RF12/RFM12B_OOK/RFM12B_OOK.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// Receive / decode OOK signals using a RFM12B as 868 MHz OOK receiver.
33
//
44
// Adapted from the experiments and code by JGJ Veken, as posted on the wiki at:
5-
// http://jeelabs.net/projects/cafe/wiki/Receiving_OOKASK_with_a_modified_RFM12B
5+
// https://web.archive.org/web/20170523040812/http://jeelabs.net/projects/cafe/wiki/Receiving_OOKASK_with_a_modified_RFM12B
66
//
77
// The basic idea is to measure pulse widths between 0/1 and 1/0 transitions,
88
// and to keep track of pulse width sequences in a state machine.
@@ -27,7 +27,7 @@ byte ookbuf[10];
2727
#define RXDATA 14
2828

2929
// Following decoding logic was lifted from an earlier sketch, see
30-
// http://jeelabs.net/projects/cafe/wiki/Recv868ookpde_sketch
30+
// http://jeelabs.org/projects/cafe/wiki/Recv868ookpde_sketch
3131

3232
// track bit-by-bit reception using multiple independent state machines
3333
struct { char bits; byte state; uint32_t prev; uint64_t data; } FS20;

Diff for: examples/RF12/roomNode/roomNode.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ struct {
8585

8686
// this code is called from the pin-change interrupt handler
8787
void poll() {
88-
// see http://talk.jeelabs.net/topic/811#post-4734 for PIR_INVERTED
88+
// see https://jeelabs.org/talk/topic/811#post-4734 for PIR_INVERTED
8989
byte pin = digiRead() ^ PIR_INVERTED;
9090
// if the pin just went on, then set the changed flag to report it
9191
if (pin) {
@@ -141,7 +141,7 @@ static byte waitForAck() {
141141
MilliTimer ackTimer;
142142
while (!ackTimer.poll(ACK_TIME)) {
143143
if (rf12_recvDone() && rf12_crc == 0 &&
144-
// see http://talk.jeelabs.net/topic/811#post-4712
144+
// see https://jeelabs.org/talk/topic/811#post-4712
145145
rf12_hdr == (RF12_HDR_DST | RF12_HDR_CTL | myNodeID))
146146
return 1;
147147
set_sleep_mode(SLEEP_MODE_IDLE);

Diff for: intro.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ which are used to designate different things in different contexts. Such as:
6969
connect directly to one of the ports, via their standard 6-pin headers.
7070

7171

72-
[JN]: http://jeelabs.net/projects/hardware/wiki/JeeNode
72+
[JN]: https://jeelabs.org/jn6
7373
[JL]: http://jeelabs.com/
7474
[WL]: http://jeelabs.org/
7575
[AI]: http://www.arduino.cc
76-
[LP]: http://jeelabs.net/projects/hardware/wiki/LCD_Plug
77-
[PP]: http://jeelabs.net/projects/hardware/wiki/Pressure_Plug
76+
[LP]: http://jeelabs.org/lp1
77+
[PP]: http://jeelabs.org/pp1

0 commit comments

Comments
 (0)