Skip to content

Commit 9d5d486

Browse files
committed
removed full url links to wiki... why even use full url?!?
1 parent c8e6fca commit 9d5d486

File tree

79 files changed

+173
-295
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+173
-295
lines changed

Arduino-IDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## :red_circle: Since Tasmota 6.6.0.15 Arduino IDE is not recommended to use for compiling. You will get errors and probably won't be able to compile.
22

3-
_**Use [Gitpod](https://github.com/arendst/Tasmota/wiki/Gitpod) or [VSC with PlatformIO](https://github.com/arendst/Tasmota/wiki/Visual-Studio-Code) to compile the firmware. Setup is much easier for these IDEs. The Tasmota project is already configured for them.**_
3+
_**Use [Gitpod](Gitpod) or [VSC with PlatformIO](Visual-Studio-Code) to compile the firmware. Setup is much easier for these IDEs. The Tasmota project is already configured for them.**_
44

55
## Arduino IDE setup and configuration for Tasmota compilation and upload
66

Commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Command|Parameters
229229
Latitude<a id="latitude"></a>|`<value>` = set latitude
230230
Longitude<a id="longitude"></a>|`<value>` = set longitude
231231
Timers<a id="timers"></a>|Timers control<br>`0` = disable all timers<BR>`1` = enable all timers<BR>`2` = toggle all timers<BR>
232-
Timer<x\><a id="timer"></a>|Parameters for Timer<x\> where x = `1..16`<BR>`0` = clear parameters for Timer<x\><BR>`1..16` = copy Timer\<y\> parameters to Timer<x\><BR>`{ "name":value ; .. }` = set all or individual parameters using JSON payload with names and values of data pairs from the [table](https://github.com/arendst/Tasmota/wiki/Timers#json-payload-anatomy)
232+
Timer<x\><a id="timer"></a>|Parameters for Timer<x\> where x = `1..16`<BR>`0` = clear parameters for Timer<x\><BR>`1..16` = copy Timer\<y\> parameters to Timer<x\><BR>`{ "name":value ; .. }` = set all or individual parameters using JSON payload with names and values of data pairs from the [table](Timers#json-payload-anatomy)
233233

234234
> [!Note]
235235
> Information on sensors documented below is transmitted in the Tasmota telemetry message

Compile-your-build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Flash and memory space on an ESP82XX chip is limited and very valuable. Because
22

33
To include a feature you need (or build completely customized Tamota) you will have to configure and compile your own version.
44

5-
First you will need a [development environment](https://github.com/arendst/Tasmota/wiki/Flashing#flashing-and-compiling-from-source) and Tasmota's source code (either [development](https://github.com/arendst/Tasmota/archive/development.zip) or [master](https://github.com/arendst/Tasmota/archive/master.zip) branch).
5+
First you will need a [development environment](installation/Flashing#flashing-and-compiling-from-source) and Tasmota's source code (either [development](https://github.com/arendst/Tasmota/archive/development.zip) or [master](https://github.com/arendst/Tasmota/archive/master.zip) branch).
66

77
**Simplest way to compile is with [GitPod](Gitpod), requires only a web browser.**
88

Configuration-Procedure-for-New-Devices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If your device is similar to the existing built-in module (e.g., a particular MC
3434

3535
_c._ Once you have found which GPIO are connected to each input, change the GPIO setting in the configuration to a `Button<x>` or `Switch<x>` according to your input component or use case. Proper operation may dictate the use regular or inverted (i.e., `Switch<x>i`/`Button<x>i`) settings. For buttons, you may need to determine whether the internal pull-up is used or not. If so, select `Button<x>`_**n**_, where _**n**_ indicates no pull-up.
3636

37-
- See [Using a physical pushbutton with single press, double press, and hold](https://github.com/arendst/Tasmota/wiki/Rule-cookbook#16-using-an-external-button-with-single-press---double-press-and-hold) to control multiple devices with one button.
37+
- See [Using a physical pushbutton with single press, double press, and hold](Rule-cookbook#16-using-an-external-button-with-single-press---double-press-and-hold) to control multiple devices with one button.
3838

3939
4. Once you have determined which GPIO your device uses, set any remaining GPIO to `None (0)`.
4040
- Save the configuration.

Control-other-devices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ setoption11 1
2424
Taken from the discussion:
2525
[https://github.com/arendst/Tasmota/issues/200#issuecomment-343756826](https://github.com/arendst/Tasmota/issues/200#issuecomment-343756826)
2626

27-
[Example using Rules](https://github.com/arendst/Tasmota/wiki/Rule-cookbook#16-using-an-external-button-with-single-press---double-press-and-hold)
27+
[Example using Rules](Rule-cookbook#16-using-an-external-button-with-single-press---double-press-and-hold)

Create-your-own-Firmware-Build-without-IDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ After changing to the working copy, we are ready to go:
138138

139139
## Configure the sources
140140

141-
Now you may want to configure the sources for your needs, as described at [Upload](https://github.com/arendst/Tasmota/wiki/Upload)
141+
Now you may want to configure the sources for your needs, as described at [Upload](Upload)
142142

143143
Actually, the sources do build fine right out-of-the box, only it'll be a full build, including all the language localisation and all the build flavours as well, while you are usually interested only in one language and one build flavour only.
144144

Esptool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
How to setup and configure Esptool for Tasmota upload.
22

3-
The information below is for the Python version of esptool - If you want to use the Windows/Linux/OSX(MAC) executable version of esptool (as would be included in Arduino ESP8266 cores) then please go to the [esptool executable (non-python)](https://github.com/arendst/Tasmota/wiki/Esptool#esptool-executable-windows--linux) section at the bottom.
3+
The information below is for the Python version of esptool - If you want to use the Windows/Linux/OSX(MAC) executable version of esptool (as would be included in Arduino ESP8266 cores) then please go to the [esptool executable (non-python)](Esptool#esptool-executable-windows--linux) section at the bottom.
44

55
## Download Esptool
66
If you do not have an installed copy of Python 2.x or 3.x download and install it from https://www.python.org/.

Expanding-Sonoffs.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

Fast-power-cycle-device-recovery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Fast power cycle device recovery is implemented for situations where a device ca
88
1. Cut power from the device completely for 30 seconds
99
2. Power the device on and off three times with intervals lower than 10 seconds and leave it on after fourth time
1010
3. Fast power cycle device recovery should activate and the device should be reset to firmware defaults
11-
> If you flashed a precompiled binary you can [reconfigure](https://github.com/arendst/Tasmota/wiki/Initial-Configuration#configure-wi-fi) the device using the web UI.
11+
> If you flashed a precompiled binary you can [reconfigure](Initial-Configuration#configure-wi-fi) the device using the web UI.

Flash-Sonoff-using-Raspberry-Pi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,5 @@ This is how it looks in real-life 😆
147147
# That’s it :smiley:
148148

149149
Sources:
150-
[Flashing commands](https://github.com/arendst/Tasmota/wiki/Esptool)
150+
[Flashing commands](Esptool)
151151
https://spellfoundry.com/2016/05/29/configuring-gpio-serial-port-raspbian-jessie-including-pi-3/

0 commit comments

Comments
 (0)