Skip to content

Commit e30a5d5

Browse files
committed
fix broken links for project website
1 parent 9192348 commit e30a5d5

11 files changed

Lines changed: 17 additions & 17 deletions

File tree

docs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ structure. Typically, this is done in the `setup()`-function and this pointer
124124
is stored in a global variable to be used as a device descriptor.
125125
126126
127-
So far the [Stepper library](api/Stepper.html) is the only example:
127+
So far the [Stepper library](api/Stepper.md) is the only example:
128128
129129
```c
130130
#include <Stepper.h>

docs/api/LiquidCrystal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This library is a singleton library, it is not possible to use more than one
1111
instance per sketch.
1212

1313
The API syntax is very similar to the original C++ syntax, thanks to some
14-
[c preprocessor macro magic](macro.html).
14+
[c preprocessor macro magic](../macro.md).
1515

1616
Apart from the usual name mangeling for polymorph functions (mostly the
1717
different variants of the Print::print method) moving the opening bracket at

docs/api/Mini_SSD1306.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,6 @@ Other libraries:
122122

123123
### Faster I2C transfer
124124

125-
Faster I2C transfer is supported by the [I2C.html](I2C library), but to use
125+
Faster I2C transfer is supported by the [I2C library](I2C.md), but to use
126126
it you have to modify the source code for the Mini_SSD1306 library. Make
127127
this configurable in the instantiation function.

docs/api/PCD8544.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ from Adafruit (no sduino/STM8 port yet, though).
2727
## API
2828

2929

30-
Thanks to some [c preprocessor macro magic](macro.html) the API syntax is
30+
Thanks to some [c preprocessor macro magic](../macro.md) the API syntax is
3131
very similar to the original C++ syntax. Apart from the usual name mangeling
3232
for polymorph functions replacing the dots in the method names for
3333
underscores and a small modification of the initializer code should be

docs/api/Stepper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This library is a multi-instance library, it supports an arbitrary number of
1010
stepper motors per sketch.
1111

1212
The API syntax is very similar to the original C++ syntax, thanks to some
13-
[c preprocessor macro magic](macro.html).
13+
[c preprocessor macro magic](../macro.md).
1414

1515
The declaration supports polymorphism, so all that is needed to adopt an
1616
existing sketch for use with sduino is moving the opening bracket at

docs/hardware.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
No text yet. Check out these pages:
44

5-
* [stm8blue: simple breakout board, STM8S103](hardware/stm8blue.html)
6-
* [ESP14: Wifi board, STM8S003](hardware/esp14.html)
7-
* [STM8S105Discovery: Evaluation board made my ST](hardware/stm8disco.html)
5+
* [stm8blue: simple breakout board, STM8S103](hardware/stm8blue.md)
6+
* [ESP14: Wifi board, STM8S003](hardware/esp14.md)
7+
* [STM8S105Discovery: Evaluation board made my ST](hardware/stm8sdiscovery.md)

docs/hardware/esp14.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
An ESP-8266 Wifi-Controller together with a STM8S003 CPU for about $2 -
44
incredible. Since the STM8S003 is almost identical to the STM8S103 used on
5-
the [STM8S103 breakout boards](stm8blue.html) all software runs here as well.
5+
the [STM8S103 breakout boards](stm8blue.md) all software runs here as well.
66

77

88
Using the same pin numbering scheme as with the stm8blue boards it looks
File renamed without changes.

docs/hardware/stm8blue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ are my original development platform.
66

77
![Image of the STM8S103 board](stm8board-pinout.jpg)
88

9-
They are very similar to the [ESP14 Wifi-boards](hardware/esp14.html) and
9+
They are very similar to the [ESP14 Wifi-boards](esp14.md) and
1010
most programs will work fine on those chinese gems as well.
1111

1212
The STM8S103 breakout boards are build around a CPU STM8S103F3P6 with 16MHz
@@ -55,7 +55,7 @@ hard-coded assumptions about the number of pins with special functions.
5555
Ideally, all these numbers would be the same and all programs could be
5656
compiled without changes.
5757

58-
[Here](pin_mapping.html) I discuss some possible pin mapping and check
58+
[Here](pin_mapping.md) I discuss some possible pin mapping and check
5959
how close we could get the the ideal mapping. Unfortunatly, it turns out
6060
that a perfect mapping is not possible.
6161

docs/macro.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ As a result, there are several different cases to consider:
4141
The behaviour of this construction is very similar to a real C++ class.
4242

4343
**Examples:**
44-
[SPI](api/SPI.html), [I2C](api/I2C.html),
45-
[HardwareSerial](api/HardwareSerial.html)
44+
[SPI](api/SPI.md), [I2C](api/I2C.md),
45+
[HardwareSerial](api/HardwareSerial.md)
4646

4747
```c
4848
#include <I2C.h>
@@ -77,7 +77,7 @@ setup() {
7777
Polymorph instantiation declarations are possible.
7878
Non-constant values for the initialization are supported.
7979

80-
**Examples:** [LiquidCrystal](api/LiquidCrystal.html)
80+
**Examples:** [LiquidCrystal](api/LiquidCrystal.md)
8181

8282
```c
8383
int rs_pin = 2;
@@ -116,7 +116,7 @@ setup() {
116116
117117
Polymorph instantiation declarations are possible.
118118
119-
Examples: [Servo](api/Servo.html)
119+
Examples: [Servo](api/Servo.md)
120120
121121
```c
122122
#include <Servo.h>
@@ -178,7 +178,7 @@ loop() {
178178

179179
Polymorph instantiation declarations are possible.
180180

181-
Examples: [Stepper](api/Stepper.html)
181+
Examples: [Stepper](api/Stepper.md)
182182

183183
By requiring the user to add a call to the added constructor as the
184184
mandatory first call to the instance it could be treated as any other

0 commit comments

Comments
 (0)