Skip to content

Commit 2af9fc3

Browse files
committed
Add mm.kno.wled.ge
Change https://kno.wled.ge to https://mm.kno.wled.ge Change help to ? button in usermods Change WeatherUserMod to Weather
1 parent f48895f commit 2af9fc3

File tree

19 files changed

+1475
-1475
lines changed

19 files changed

+1475
-1475
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ contact_links:
77
url: https://wled.discourse.group/
88
about: For issues and ideas that might need longer discussion.
99
- name: kno.wled.ge base
10-
url: https://kno.wled.ge/basics/faq/
10+
url: https://mm.kno.wled.ge/basics/faq/
1111
about: Take a look at the frequently asked questions and documentation, perhaps your question is already answered!

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ lib_deps = ${esp32s2.lib_deps}
580580

581581
# ------------------------------------------------------------------------------
582582
# MoonModules configs
583-
# see https://moonmodules.github.io/WLED-Docs/moonmodules/platformio-entries/
583+
# see https://mm.kno.wled.ge/moonmodules/platformio-entries/
584584
# ------------------------------------------------------------------------------
585585

586586
; shared build flags and lib deps for minimum and maximum config

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,21 @@ A fast and feature-rich implementation of an ESP8266/ESP32 webserver to control
4949

5050
## 📲 Quick start guide and documentation
5151

52-
See the [documentation on our official site](https://kno.wled.ge)!
52+
See the [documentation on our official site](https://mm.kno.wled.ge)!
5353

54-
[On this page](https://kno.wled.ge/basics/tutorials/) you can find excellent tutorials and tools to help you get your new project up and running!
54+
[On this page](https://mm.kno.wled.ge/basics/tutorials/) you can find excellent tutorials and tools to help you get your new project up and running!
5555

5656
## 🖼️ User interface
5757
<img src="/images/macbook-pro-space-gray-on-the-wooden-table.jpg" width="50%"><img src="/images/walking-with-iphone-x.jpg" width="50%">
5858

5959
## 💾 Compatible hardware
6060

61-
See [here](https://kno.wled.ge/basics/compatible-hardware)!
61+
See [here](https://mm.kno.wled.ge/basics/compatible-hardware)!
6262

6363
## ✌️ Other
6464

6565
Licensed under the MIT license
66-
Credits [here](https://kno.wled.ge/about/contributors/)!
66+
Credits [here](https://mm.kno.wled.ge/about/contributors/)!
6767

6868
Join the Discord server to discuss everything about WLED!
6969

tools/cdata.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ function writeHtmlGzipped(sourceFile, resultFile, page) {
134134
* Binary array for the Web UI.
135135
* gzip is used for smaller size and improved speeds.
136136
*
137-
* Please see https://kno.wled.ge/advanced/custom-features/#changing-web-ui
137+
* Please see https://mm.kno.wled.ge/advanced/custom-features/#changing-web-ui
138138
* to find out how to easily modify the web UI source!
139139
*/
140140
@@ -199,7 +199,7 @@ function writeChunks(srcDir, specs, resultFile) {
199199
let src = `/*
200200
* More web UI HTML source arrays.
201201
* This file is auto generated, please don't make any changes manually.
202-
* Instead, see https://kno.wled.ge/advanced/custom-features/#changing-web-ui
202+
* Instead, see https://mm.kno.wled.ge/advanced/custom-features/#changing-web-ui
203203
* to find out how to easily modify the web UI source!
204204
*/
205205
`;

usermods/audioreactive/audio_reactive.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1923,6 +1923,7 @@ class AudioReactive : public Usermod {
19231923

19241924
void appendConfigData()
19251925
{
1926+
oappend(SET_F("addInfo('AudioReactive:help',0,'<button onclick=\"location.href=&quot;https://mm.kno.wled.ge/soundreactive/Sound-Settings&quot;\" type=\"button\">?</button>');")); // 0 is field type, 1 is actual field
19261927
//WLEDMM: add defaults
19271928
#ifdef AUDIOPIN
19281929
oappend(SET_F("addInfo('AudioReactive:analogmic:pin',1,'<i>&#9100; ")); oappendi(AUDIOPIN); oappend("</i>');"); // 0 is field type, 1 is actual field
@@ -2052,7 +2053,6 @@ class AudioReactive : public Usermod {
20522053
oappend(SET_F("addOption(dd,'Off',0);"));
20532054
oappend(SET_F("addOption(dd,'Send',1);"));
20542055
oappend(SET_F("addOption(dd,'Receive',2);"));
2055-
oappend(SET_F("addInfo('AudioReactive:help',0,'<a href=\"https://moonmodules.github.io/WLED-Docs/soundreactive/Sound-Settings\">Help</a>');")); // 0 is field type, 1 is actual field
20562056
oappend(SET_F("addInfo('AudioReactive:digitalmic:type',1,'<i>requires reboot!</i>');")); // 0 is field type, 1 is actual field
20572057
#ifdef I2S_SDPIN
20582058
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',0,'<i>sd/data/dout, &#9100; ")); oappendi(I2S_SDPIN); oappend("</i>','I2S SD');");

usermods/customeffects/customeffects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function populateCEEditor(name, segID)
103103
<button class="btn infobtn" onclick="downloadCEFile('wledv033.json')">Download wled json</button>
104104
<button class="btn infobtn" onclick="downloadCEFile('presets.json')">Download presets.json</button><br>
105105
<a href="https://github.com/MoonModules/WLED-Effects/tree/master/CustomEffects/wled" target="_blank">Custom Effects Library</a><br>
106-
<a href="https://moonmodules.github.io/WLED-Docs/moonmodules/custom-effects" target="_blank">Custom Effects Help</a><br>
106+
<a href="https://mm.kno.wled.ge/moonmodules/custom-effects" target="_blank">Custom Effects Help</a><br>
107107
<br><i>Compile and Run Log</i><br>
108108
<textarea class="ceTextarea" id="ceLogArea"></textarea><br>
109109
<i>Run log > 3 seconds is send to Serial Ouput.</i>`;

usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ class FourLineDisplayUsermod : public Usermod {
10361036
//}
10371037

10381038
void appendConfigData() {
1039-
oappend(SET_F("addInfo('4LineDisplay:help',0,'<a href=\"https://moonmodules.github.io/WLED-Docs/usermods/four-line-display\">Help</a>');")); // 0 is field type, 1 is actual field
1039+
oappend(SET_F("addInfo('4LineDisplay:help',0,'<button onclick=\"location.href=&quot;https://mm.kno.wled.ge/usermods/four-line-display&quot;\" type=\"button\">?</button>');")); // 0 is field type, 1 is actual field
10401040
oappend(SET_F("dd=addDropdown('4LineDisplay','type');"));
10411041
oappend(SET_F("addOption(dd,'None',0);"));
10421042
oappend(SET_F("addOption(dd,'SSD1306',1);"));

usermods/usermod_v2_weather/usermod_v2_weather.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,14 @@ class WeatherUsermod : public Usermod {
317317

318318
void appendConfigData()
319319
{
320-
oappend(SET_F("addInfo('WeatherUserMod:help',0,'<a href=\"https://moonmodules.github.io/WLED-Docs/moonmodules/weather-usermod\">Help</a>');")); // 0 is field type, 1 is actual field
321-
oappend(SET_F("dd=addDropdown('WeatherUserMod','units');"));
320+
oappend(SET_F("addInfo('Weather:help',0,'<button onclick=\"location.href=&quot;https://mm.kno.wled.ge/moonmodules/weather-usermod&quot;\" type=\"button\">?</button>');")); // 0 is field type, 1 is actual field
321+
oappend(SET_F("dd=addDropdown('Weather','units');"));
322322
oappend(SET_F("addOption(dd,'Kelvin',0);"));
323323
oappend(SET_F("addOption(dd,'Celcius',1);"));
324324
oappend(SET_F("addOption(dd,'Fahrenheit',2);"));
325-
oappend(SET_F("addInfo('WeatherUserMod:units',1,'<i>Set time and location in time settings</i>');"));
326-
oappend(SET_F("addInfo('WeatherUserMod:apiKey',1,'<i>Create acount on openweathermap.org and copy the key</i>');"));
327-
oappend(SET_F("addInfo('WeatherUserMod:minTemp',1,'<i>Changing values: Reboot to (re)load forecast</i>');"));
325+
oappend(SET_F("addInfo('Weather:units',1,'<i>Set time and location in time settings</i>');"));
326+
oappend(SET_F("addInfo('Weather:apiKey',1,'<i>Create acount on openweathermap.org and copy the key</i>');"));
327+
oappend(SET_F("addInfo('Weather:minTemp',1,'<i>Changing values: Reboot to (re)load forecast</i>');"));
328328
}
329329

330330
/*
@@ -349,7 +349,7 @@ class WeatherUsermod : public Usermod {
349349
};
350350

351351
// strings to reduce flash memory usage (used more than twice)
352-
const char WeatherUsermod::_name[] PROGMEM = "WeatherUserMod";
352+
const char WeatherUsermod::_name[] PROGMEM = "Weather";
353353

354354
// example openweathermap data
355355
// {"cod":"200","message":0,"cnt":40,"list":[

wled00/data/settings_2D.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script>
99
var d=document;
1010
var loc = false, locip;
11-
function H(){window.open("https://kno.wled.ge/features/2D");}
11+
function H(){window.open("https://mm.kno.wled.ge/features/2D");}
1212
function B(){window.open("/settings","_self");}
1313
function gId(n){return d.getElementById(n);}
1414
// https://www.educative.io/edpresso/how-to-dynamically-load-a-js-file-in-javascript

wled00/data/settings_leds.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
var d=document,laprev=55,maxB=1,maxM=4000,maxPB=4096,maxL=1333,maxLbquot=0; //maximum bytes for LED allocation: 4kB for 8266, 32kB for 32
1010
var customStarts=false,startsDirty=[],maxCOOverrides=5;
1111
var loc = false, locip;
12-
function H(){window.open("https://kno.wled.ge/features/settings/#led-settings");}
12+
function H(){window.open("https://mm.kno.wled.ge/features/settings/#led-settings");}
1313
function B(){window.open("/settings","_self");}
1414
function gId(n){return d.getElementById(n);}
1515
function hideNoIR(){gId("irOnOff2").style.display="none";}
@@ -637,7 +637,7 @@ <h3>Hardware setup</h3>
637637
</select><span style="cursor: pointer;" onclick="off('IR')">&nbsp;&#x2715;</span><br>
638638
Apply IR change to main segment only: <input type="checkbox" name="MSO"><br>
639639
<div id="json" style="display:none;">JSON file: <input type="file" name="data" accept=".json"><button type="button" class="sml" onclick="uploadFile('/ir.json')">Upload</button><br></div>
640-
<a href="https://kno.wled.ge/interfaces/infrared/" target="_blank">IR info</a><br>
640+
<a href="https://mm.kno.wled.ge/interfaces/infrared/" target="_blank">IR info</a><br>
641641
Relay GPIO: <input type="number" min="-1" max="48" name="RL" onchange="UI()" class="xs"> Invert <input type="checkbox" name="RM"><span style="cursor: pointer;" onclick="off('RL')">&nbsp;&#x2715;</span><br>
642642
<hr class="sml">
643643
<h3>Defaults</h3>

0 commit comments

Comments
 (0)