Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into feature/neue-header…
Browse files Browse the repository at this point in the history
…-leiste-und-designanpassungen

# Conflicts:
#	webpage/index.html
#	webpage/style.css
  • Loading branch information
Wandmalfarbe committed Feb 26, 2023
2 parents 6e30d2e + 68dc31c commit d53a843
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ESPWortUhr
# ESP Wortuhr

English description further below.

Dies ist ein Projekt für eine mehrsprachige Wordclock, basierend auf einem ESP8266 Mikrocontroller und einem programmierbaren LED-Streifen (WS2812 oder SK6812). Eine Wordclock ist ein einzigartiges Projekt, das Technologie und Design kombiniert, um einen funktionalen und ästhetisch ansprechenden Zeitmesser zu schaffen. Mit der Möglichkeit, die Zeit in mehreren Sprachen anzuzeigen, ist diese Wordclock nicht nur ein Gesprächsthema, sondern auch eine praktische Lösung für alle, die nach einer modernen und innovativen Möglichkeit suchen, die Zeit im Auge zu behalten.
Dies ist ein Projekt für eine mehrsprachige Wortuhr, basierend auf einem ESP8266 Mikrocontroller und einem programmierbaren LED-Streifen (WS2812 oder SK6812). Eine Wortuhr ist ein einzigartiges Projekt, das Technologie und Design kombiniert, um einen funktionalen und ästhetisch ansprechenden Zeitmesser zu schaffen. Mit der Möglichkeit, die Zeit in mehreren Sprachen anzuzeigen, ist diese Wortuhr nicht nur ein Gesprächsthema, sondern auch eine praktische Lösung für alle, die nach einer modernen und innovativen Möglichkeit suchen, die Zeit im Auge zu behalten.
Egal, ob du ein Anfänger oder ein erfahrener Bastler bist, dieses Projekt ist eine großartige Möglichkeit, deine Fähigkeiten auf die Probe zu stellen und etwas wirklich Besonderes zu schaffen.

![](pics/wortuhr-webpage.png)
Expand All @@ -26,7 +26,7 @@ Egal, ob du ein Anfänger oder ein erfahrener Bastler bist, dieses Projekt ist e
* Gehen Sie zu 'Quick Access / Miscellaneous' und geben Sie den Befehl 'Clone Git Project' ein, und geben Sie 'https://github.com/ESPWortuhr/Wortuhr' als URL ein.
* Gehen Sie dann zu 'Projekte', fügen Sie das neue Projekt mit 'Vorhandenes hinzufügen' zur Liste hinzu und klicken Sie auf 'Öffnen'.
* In der PlatformIO-Seitenleiste erscheint nun 'Project Tasks'. Wählen Sie den Befehl 'General / Upload' (dauert ein paar Minuten, die Software wird zuerst erstellt).
* Schließen Sie den ESP-8266 über USB an. Wenn die Wordclock-Software erstellt ist, wird sie auf dem ESP installiert.
* Schließen Sie den ESP-8266 über USB an. Wenn die Wortuhr-Software erstellt ist, wird sie auf dem ESP installiert.

### MacOS

Expand Down Expand Up @@ -80,7 +80,7 @@ Die einzige Bedingung ist, dass der Copyright-Hinweis des Originalprogramms nich

## ENGLISH Textversion

This is a project for a multilingual wordclock based on an ESP8266 microcontroller and a programmable LED stripe (WS2812 or SK6812). A Wordclock is a unique project that combines technology and design to create a functional and aesthetically pleasing timepiece. With the ability to display the time in multiple languages, this wordclock is not only a conversation piece, but also a practical solution for anyone looking for a modern and innovative way to keep track of time.
This is a project for a multilingual wordclock based on an ESP8266 microcontroller and a programmable LED stripe (WS2812 or SK6812). A wordclock is a unique project that combines technology and design to create a functional and aesthetically pleasing timepiece. With the ability to display the time in multiple languages, this wordclock is not only a conversation piece, but also a practical solution for anyone looking for a modern and innovative way to keep track of time.
Whether you're a beginner or an experienced maker, this project is a great way to put your skills to the test and create something truly special.

![](pics/wortuhr-webpage.png)
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"grunt-htmllint": "^0.3.0",
"grunt-terser": "^2.0.0",
"grunt-version": "^3.0.0",
"terser": "^5.16.3"
"terser": "^5.16.5"
},
"dependencies": {
"@jaames/iro": "^5.5.2",
Expand Down
Binary file modified pics/wortuhr-webpage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion webpage/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,15 @@ function initWebsocket() {
var index;
var animSelect = document.getElementById("animation-types");
var option;

while (animSelect.options.length > 0) {
animSelect.remove(0);
}

for (index = 0; index < animTypes.length; index++) {
option = document.createElement("option");
option.value = index;
option.text = animTypes[index];
animSelect.remove(index);
animSelect.add(option);
}
setAnimation();
Expand Down

0 comments on commit d53a843

Please sign in to comment.