From b23c2a24ea703ebd6b698775240e0684a82fd63a Mon Sep 17 00:00:00 2001 From: aronmal Date: Fri, 20 Oct 2023 15:23:05 +0200 Subject: [PATCH] Prettier: formatted documents --- README.md | 2 +- prettier.config.cjs | 1 - public/favicon/manifest.json | 80 +-- src/components/FontAwesomeIcon.tsx | 56 ++- src/components/Reference.tsx | 21 +- src/entry-server.tsx | 2 +- src/root.tsx | 104 +++- src/routes/de/KSS22.tsx | 37 +- src/routes/de/index.tsx | 21 +- src/routes/de/manufacturers.tsx | 132 ++++- src/routes/de/overview.tsx | 765 +++++++++++++++++++++++++---- src/routes/en/KSS22.tsx | 36 +- src/routes/en/index.tsx | 16 +- src/routes/en/manufacturers.tsx | 124 ++++- src/routes/en/overview.tsx | 734 +++++++++++++++++++++++---- 15 files changed, 1803 insertions(+), 328 deletions(-) diff --git a/README.md b/README.md index a8335c0..b7946f5 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# jg-eucs \ No newline at end of file +# jg-eucs diff --git a/prettier.config.cjs b/prettier.config.cjs index 6c376e5..1fe03c6 100644 --- a/prettier.config.cjs +++ b/prettier.config.cjs @@ -1,4 +1,3 @@ module.exports = { - printWidth: 1000, plugins: ["prettier-plugin-organize-imports"], }; diff --git a/public/favicon/manifest.json b/public/favicon/manifest.json index 013d4a6..3b557aa 100644 --- a/public/favicon/manifest.json +++ b/public/favicon/manifest.json @@ -1,41 +1,41 @@ { - "name": "App", - "icons": [ - { - "src": "\/android-icon-36x36.png", - "sizes": "36x36", - "type": "image\/png", - "density": "0.75" - }, - { - "src": "\/android-icon-48x48.png", - "sizes": "48x48", - "type": "image\/png", - "density": "1.0" - }, - { - "src": "\/android-icon-72x72.png", - "sizes": "72x72", - "type": "image\/png", - "density": "1.5" - }, - { - "src": "\/android-icon-96x96.png", - "sizes": "96x96", - "type": "image\/png", - "density": "2.0" - }, - { - "src": "\/android-icon-144x144.png", - "sizes": "144x144", - "type": "image\/png", - "density": "3.0" - }, - { - "src": "\/android-icon-192x192.png", - "sizes": "192x192", - "type": "image\/png", - "density": "4.0" - } - ] -} \ No newline at end of file + "name": "App", + "icons": [ + { + "src": "/android-icon-36x36.png", + "sizes": "36x36", + "type": "image/png", + "density": "0.75" + }, + { + "src": "/android-icon-48x48.png", + "sizes": "48x48", + "type": "image/png", + "density": "1.0" + }, + { + "src": "/android-icon-72x72.png", + "sizes": "72x72", + "type": "image/png", + "density": "1.5" + }, + { + "src": "/android-icon-96x96.png", + "sizes": "96x96", + "type": "image/png", + "density": "2.0" + }, + { + "src": "/android-icon-144x144.png", + "sizes": "144x144", + "type": "image/png", + "density": "3.0" + }, + { + "src": "/android-icon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "density": "4.0" + } + ] +} diff --git a/src/components/FontAwesomeIcon.tsx b/src/components/FontAwesomeIcon.tsx index e3df58e..0b7d58c 100644 --- a/src/components/FontAwesomeIcon.tsx +++ b/src/components/FontAwesomeIcon.tsx @@ -1,7 +1,20 @@ -import { FaSymbol, FlipProp, IconDefinition, IconProp, PullProp, RotateProp, SizeProp, Transform } from "@fortawesome/fontawesome-svg-core"; +import { + FaSymbol, + FlipProp, + IconDefinition, + IconProp, + PullProp, + RotateProp, + SizeProp, + Transform, +} from "@fortawesome/fontawesome-svg-core"; import { Show, type JSX } from "solid-js"; -export interface FontAwesomeIconProps extends Omit, "children" | "mask" | "transform"> { +export interface FontAwesomeIconProps + extends Omit< + JSX.SvgSVGAttributes, + "children" | "mask" | "transform" + > { icon: IconDefinition; mask?: IconProp; maskId?: string; @@ -61,13 +74,17 @@ function Path(props: { d: string | string[] }) { } export function FontAwesomeIcon(props: FontAwesomeIconProps) { - const titleId = () => (props.title ? "svg-inline--fa-title-".concat(props.titleId || nextUniqueId()) : undefined); + const titleId = () => + props.title + ? "svg-inline--fa-title-".concat(props.titleId || nextUniqueId()) + : undefined; // Get CSS class list from the props object function attributes() { const defaultClasses = { "svg-inline--fa": true, [`fa-${props.icon.iconName}`]: true, - [props.class ?? ""]: typeof props.class !== "undefined" && props.class !== null, + [props.class ?? ""]: + typeof props.class !== "undefined" && props.class !== null, ...props.classList, }; @@ -88,15 +105,36 @@ export function FontAwesomeIcon(props: FontAwesomeIconProps) { "fa-border": props.border, "fa-li": props.listItem, "fa-flip": typeof props.flip !== "undefined" && props.flip !== null, - "fa-flip-horizontal": props.flip === "horizontal" || props.flip === "both", + "fa-flip-horizontal": + props.flip === "horizontal" || props.flip === "both", "fa-flip-vertical": props.flip === "vertical" || props.flip === "both", - [`fa-${props.size}`]: typeof props.size !== "undefined" && props.size !== null, - [`fa-rotate-${props.rotation}`]: typeof props.rotation !== "undefined" && props.size !== null, - [`fa-pull-${props.pull}`]: typeof props.pull !== "undefined" && props.pull !== null, + [`fa-${props.size}`]: + typeof props.size !== "undefined" && props.size !== null, + [`fa-rotate-${props.rotation}`]: + typeof props.rotation !== "undefined" && props.size !== null, + [`fa-pull-${props.pull}`]: + typeof props.pull !== "undefined" && props.pull !== null, "fa-swap-opacity": props.swapOpacity, }; - const attributes = { focusable: !!props.title, "aria-hidden": !props.title, role: "img", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId(), "data-prefix": props.icon.prefix, "data-icon": props.icon.iconName, "data-fa-transform": props.transform, "data-fa-mask": props.mask, "data-fa-mask-id": props.maskId, "data-fa-symbol": props.symbol, tabIndex: props.tabIndex, classList: { ...defaultClasses, ...faClasses }, color: props.color, style: props.style, viewBox: `0 0 ${props.icon.icon[0]} ${props.icon.icon[1]}` } as const; + const attributes = { + focusable: !!props.title, + "aria-hidden": !props.title, + role: "img", + xmlns: "http://www.w3.org/2000/svg", + "aria-labelledby": titleId(), + "data-prefix": props.icon.prefix, + "data-icon": props.icon.iconName, + "data-fa-transform": props.transform, + "data-fa-mask": props.mask, + "data-fa-mask-id": props.maskId, + "data-fa-symbol": props.symbol, + tabIndex: props.tabIndex, + classList: { ...defaultClasses, ...faClasses }, + color: props.color, + style: props.style, + viewBox: `0 0 ${props.icon.icon[0]} ${props.icon.icon[1]}`, + } as const; // return the complete class list return attributes; diff --git a/src/components/Reference.tsx b/src/components/Reference.tsx index 3c06f8d..fe7e040 100644 --- a/src/components/Reference.tsx +++ b/src/components/Reference.tsx @@ -1,4 +1,8 @@ -import { faArrowUpRightFromSquare, faBookOpen, faHashtag } from "@fortawesome/pro-regular-svg-icons"; +import { + faArrowUpRightFromSquare, + faBookOpen, + faHashtag, +} from "@fortawesome/pro-regular-svg-icons"; import { JSXElement, Show, createMemo } from "solid-js"; import { A } from "solid-start"; import { FontAwesomeIcon } from "./FontAwesomeIcon"; @@ -12,7 +16,12 @@ const types = { /** * References to local and external resouces */ -function R(props: { href: string; children: JSXElement; class?: string; id?: string }) { +function R(props: { + href: string; + children: JSXElement; + class?: string; + id?: string; +}) { const type = createMemo((): keyof typeof types => { switch (true) { case props.href.startsWith("http"): @@ -27,7 +36,13 @@ function R(props: { href: string; children: JSXElement; class?: string; id?: str } }); return ( - + diff --git a/src/entry-server.tsx b/src/entry-server.tsx index 86898c9..26c6438 100644 --- a/src/entry-server.tsx +++ b/src/entry-server.tsx @@ -5,5 +5,5 @@ import { } from "solid-start/entry-server"; export default createHandler( - renderAsync((event) => ) + renderAsync((event) => ), ); diff --git a/src/root.tsx b/src/root.tsx index 345bfeb..61ef9a1 100644 --- a/src/root.tsx +++ b/src/root.tsx @@ -1,34 +1,106 @@ // @refresh reload import "@fortawesome/fontawesome-svg-core/styles.css"; import { Suspense } from "solid-js"; -import { Body, FileRoutes, Head, Html, Link, Meta, Routes, Scripts, Title } from "solid-start"; +import { + Body, + FileRoutes, + Head, + Html, + Link, + Meta, + Routes, + Scripts, + Title, +} from "solid-start"; export default function Root() { return ( - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + SolidStart - Bare diff --git a/src/routes/de/KSS22.tsx b/src/routes/de/KSS22.tsx index 9f28f88..9aa3e4c 100644 --- a/src/routes/de/KSS22.tsx +++ b/src/routes/de/KSS22.tsx @@ -21,13 +21,42 @@ function KSS22() {

Kingsong S22

-

Das Kingsong S22, früher S20, ist ein klar Offroad und Trail orientiertes Einrad. Es hat unter anderem 130mm travel und eine robuste Metallkonstruktion, welches es einmalig ideal für große Sprünge und hohe Drops macht.

+

+ Das Kingsong S22, früher S20, ist ein klar Offroad und Trail + orientiertes Einrad. Es hat unter anderem 130mm travel und eine + robuste Metallkonstruktion, welches es einmalig ideal für große + Sprünge und hohe Drops macht. +

-

Es ist der Nachfolger vom kleineren S18, aber mit doppeltem Akku und 50% mehr Motor Leistung, so wie 70 statt 50 km/h top Geschwindigkeit. Wobei der Freespin bis zu 114 km/h hoch ist, also ideal für längere Sprünge bei denen der Reifen in der Luft ist.

+

+ Es ist der Nachfolger vom kleineren S18, aber mit doppeltem Akku + und 50% mehr Motor Leistung, so wie 70 statt 50 km/h top + Geschwindigkeit. Wobei der Freespin bis zu 114 km/h hoch ist, also + ideal für längere Sprünge bei denen der Reifen in der Luft ist. +

-

Außerdem hat es gleich mitgeliefert einen Sitz, ziemlich brauchbare Jump wie Powerpads und Spiked-Pedals. Dazu einen robusten, wenn auch komisch platzierten und etwas kurzen Trolleyhandle, sowie einen stabilen Kickstand und höhenverstellbare helle Lichter. Es ist Wasserfest, aber nicht eintauchbar, und das Beste: es ist superleicht daran zu arbeiten, weil das Gerät sehr modular designt wurde. So lässt sich der Reifen mit theoretisch nur 2 schrauben rausnehmen

+

+ Außerdem hat es gleich mitgeliefert einen Sitz, ziemlich + brauchbare Jump wie Powerpads und Spiked-Pedals. Dazu einen + robusten, wenn auch komisch platzierten und etwas kurzen + Trolleyhandle, sowie einen stabilen Kickstand und + höhenverstellbare helle Lichter. Es ist Wasserfest, aber nicht + eintauchbar, und das Beste: es ist superleicht daran zu arbeiten, + weil das Gerät sehr modular designt wurde. So lässt sich der + Reifen mit theoretisch nur 2 schrauben rausnehmen +

-

Während all das wahr ist, haben sich leider mit diesem hoch erwartetem und gehypten Rad auch viele Probleme ergeben. So gab es Motorprobleme mit den ersten Geräten, welche zu cut-offs führten und dadurch das Motherboard durchbrannten. Auch ist das Slider Design sehr schwerfällig und über die Zeit immer schwerer zu bewegen. So mussten viele s22 Käufer lange auf Ersatzmotoren warten, so wie für 100 bis 200€ die Slider upgraden. Mit den Upgrades jedoch ist es das momentan bester Suspension Einrad auf dem Markt. (Bis das Veteran Sherman S zu kaufen ist.)

+

+ Während all das wahr ist, haben sich leider mit diesem hoch + erwartetem und gehypten Rad auch viele Probleme ergeben. So gab es + Motorprobleme mit den ersten Geräten, welche zu cut-offs führten + und dadurch das Motherboard durchbrannten. Auch ist das Slider + Design sehr schwerfällig und über die Zeit immer schwerer zu + bewegen. So mussten viele s22 Käufer lange auf Ersatzmotoren + warten, so wie für 100 bis 200€ die Slider upgraden. Mit den + Upgrades jedoch ist es das momentan bester Suspension Einrad auf + dem Markt. (Bis das Veteran Sherman S zu kaufen ist.) +

diff --git a/src/routes/de/index.tsx b/src/routes/de/index.tsx index 43c1c49..80ff099 100644 --- a/src/routes/de/index.tsx +++ b/src/routes/de/index.tsx @@ -1,4 +1,8 @@ -import { faArrowUpRightFromSquare, faBookOpen, faGlobe } from "@fortawesome/pro-regular-svg-icons"; +import { + faArrowUpRightFromSquare, + faBookOpen, + faGlobe, +} from "@fortawesome/pro-regular-svg-icons"; import { A, Link, Title } from "solid-start"; import { FontAwesomeIcon } from "~/components/FontAwesomeIcon"; @@ -17,17 +21,26 @@ function StartDE() {

Bock auf was Neues?

-

Flexible - Modern - schneller als die Polizei erlaubt. Das sind moderne eletrische Einräder.

+

+ Flexible - Modern - schneller als die Polizei erlaubt. Das sind moderne + eletrische Einräder. +

-

Von 0 auf 50kmh in 3s, 100kmh top Geschwindigkeit und 230km Reichweite machen aus diesen Geräten den ultimativen Sport.

+

+ Von 0 auf 50kmh in 3s, 100kmh top Geschwindigkeit und 230km Reichweite + machen aus diesen Geräten den ultimativen Sport. +

-

Gleichzeitig 50° steile Wände hochfahren und MTB Trails mit leichtigkeit nehmen.

+

+ Gleichzeitig 50° steile Wände hochfahren und MTB Trails mit leichtigkeit + nehmen. +

{/* */} @@ -151,7 +167,16 @@ function overview() {

- EUC steht für ElectricUniCycle, zu Deutsch elektrisches Einrad. Im einfachsten Sinne ist es ein Akku betriebener Motor von einem Reifen ummantelt, der mit Neigungssensoren aufrecht gehalten wird. Das Prinzip ist ähnlich zu einem Segway oder Hoverboard, aber mehr dazu im Teil Funktionsweise. Man steht nach vorne gerichtet auf 2 Pedalen die seitlich am Gerät sind, mit dem Reifen zwischen den Beinen. Zum Beschleunigen nach vorne lehnen, zum Bremsen nach hinten. Lenken ist ähnlich zum normalen Einrad oder auch Fahrrad. + EUC steht für ElectricUniCycle, zu Deutsch + elektrisches Einrad. Im einfachsten Sinne ist es ein Akku + betriebener Motor von einem Reifen ummantelt, der mit + Neigungssensoren aufrecht gehalten wird. Das Prinzip ist ähnlich zu + einem Segway oder Hoverboard, aber mehr dazu im Teil{" "} + Funktionsweise. Man steht nach vorne + gerichtet auf 2 Pedalen die seitlich am Gerät sind, mit dem Reifen + zwischen den Beinen. Zum Beschleunigen nach vorne lehnen, zum + Bremsen nach hinten. Lenken ist ähnlich zum normalen Einrad oder + auch Fahrrad.

@@ -166,36 +191,90 @@ function overview() {
-

Viele Fragen einen, warum man denn nicht einfach E-Bike oder Kick Scooter fährt. Nun es gibt mehrere Gründe:

-

- Das Fahrgefühl ist absolut einzigartig, und ist mit nichts anderem vergleichbar. Es ist ein Teil von einem, eine Erweiterung der Beine, und es fühlt sich absolut natürlich an. Irgendwann, wenn man schon lange Einrad fährt, kommt einem das Lenkrad vom Fahrrad so unnötig und unbequem vor, dass man sich fragt, wieso man es je gefahren ist. Genauso wie man beim Inliner fahren irgendwann fast vergisst das man Inliner anhat, und sie einfach Teil des Fußes sind, so werden EUCs ebenfalls irgendwann einfach Teil von einem. -

- -

Im Gegensatz zu dem, was viele sagen wen sie zum ersten Mal eins sehen, ist es nämlich keineswegs so, dass man konstant balanciert und bewusst Gleichgewicht halten muss. Es passiert automatisch, und man neigt nur noch in die Richtung, in die man will.

- -

- Noch viel stärker tritt diese Natürlichkeit beim Be- und Entschleunigen auf. Man wird von nichts gedrückt oder gezogen, wie bei allen anderen Arten der Fortbewegung. Stattdessen beschleunigt man synchron mit dem Einrad, als würde man fliegen. Und das rapide wenn man will, man hat äußerst präzise Geschwindigkeit und Beschleunigungs Möglichkeiten, im Gegensatz zu so manchen Scootern. + Viele Fragen einen, warum man denn nicht einfach E-Bike oder Kick + Scooter fährt. Nun es gibt mehrere Gründe:

- Ein weiterer Grund ist der Formfaktor verbunden mit der Leistung. Kein anderes elektrisches Fortbewegungsmittel hat auf so kleinen Raum so viel Leistung und Reichweite. Und dabei ist es egal ob man auf der Straße oder im steilsten Wald unterwegs ist. Elektrische Einräder können bis zu 50° steile Hänge hochfahren, wo kein Scooter oder E-bike mithalten kann (Schon zu Fuß kommt man da nicht hoch). Je nach Gerät sind 10m weite Sprünge auf MTB-Trails locker machbar, so wie 2m hohe Drops auf flachen Grund. + Das Fahrgefühl ist absolut einzigartig, und ist mit nichts + anderem vergleichbar. Es ist ein Teil von einem, eine Erweiterung + der Beine, und es fühlt sich absolut natürlich an. Irgendwann, wenn + man schon lange Einrad fährt, kommt einem das Lenkrad vom Fahrrad so + unnötig und unbequem vor, dass man sich fragt, wieso man es je + gefahren ist. Genauso wie man beim Inliner fahren irgendwann fast + vergisst das man Inliner anhat, und sie einfach Teil des Fußes sind, + so werden EUCs ebenfalls irgendwann einfach Teil von einem.

- Bis zu 200km Reichweite und eine Ladezeit von nur 3h sind konkurrenzlos im PEV (Personal Electric Vehicle) Segment, da sind so manche billig E-Autos schlechter dran. Das erreichen sie durch den minimalen Verbrauch und der großen Akkugröße, verbunden mit sehr effizienten Motoren und nur einem Reifenwiederstand statt 2 oder 4. Und all das in der Größe eines Koffers oder Rucksacks. + Im Gegensatz zu dem, was viele sagen wen sie zum ersten Mal eins + sehen, ist es nämlich keineswegs so, dass man konstant balanciert + und bewusst Gleichgewicht halten muss. Es passiert automatisch, und + man neigt nur noch in die Richtung, in die man will.

- Noch ein Grund ist auch auf den Formfaktor zurückzuführen: es lässt sich super angenehm mitnehmen zum Reisen. Jedes Aktuelle Einrad einen Trolley Handle, ein raus ziehbarer Griff ähnlich wie bei einem Koffer. Da das Gerät sich selbst aufrecht hält, kann man es super einfach neben sich herfahren lassen, ohne jeglichen Aufwand. Ob im Zug oder im Bus, wo man selbst durchkommt, kommt auch das Einrad durch, da die Pedale einklappbar sind um es noch schmaler zu machen. Da ist es dann auch egal, wie viel das Gerät wiegt. + Noch viel stärker tritt diese Natürlichkeit beim Be- und + Entschleunigen auf. Man wird von nichts gedrückt oder gezogen, wie + bei allen anderen Arten der Fortbewegung. Stattdessen beschleunigt + man synchron mit dem Einrad, als würde man fliegen. Und das rapide + wenn man will, man hat äußerst präzise Geschwindigkeit und + Beschleunigungs Möglichkeiten, im Gegensatz zu so manchen Scootern.

- Aber nicht nur zum Reisen ist das sehr praktisch, sondern auch im Alltag. Beim Einkaufen kann man es einfach mit sich führen, statt es Draußen anketten zu müssen. Man braucht keinen Fahrradstellplatz oder muss sich sorgen machen, das es gestohlen wird. Aber vor allem die kleineren Geräte haben noch einen weiten Vorteil: sie passen in ein Auto, auch in Mengen. Wenn man nun einen Trip an einen schönen Ort machen will, um dort mit dem Einrad zu fahren, kann man sie einfach in den Kofferraum packen, oder gar zwischen die Füße. Mit E-bikes oder Scootern wäre das undenkbar. Auch kann man sich von überall abholen lassen, oder irgendwo hingebracht werden und selbst zurückkommen. Vor allem für Schüler oder Leute, die kein Auto wollen/haben, ist das ein Segen. + Ein weiterer Grund ist der Formfaktor verbunden mit der + Leistung. Kein anderes elektrisches Fortbewegungsmittel hat auf so + kleinen Raum so viel Leistung und Reichweite. Und dabei ist es egal + ob man auf der Straße oder im steilsten Wald unterwegs ist. + Elektrische Einräder können bis zu 50° steile Hänge hochfahren, wo + kein Scooter oder E-bike mithalten kann (Schon zu Fuß kommt man da + nicht hoch). Je nach Gerät sind 10m weite Sprünge auf MTB-Trails + locker machbar, so wie 2m hohe Drops auf flachen Grund. +

+ +

+ Bis zu 200km Reichweite und eine Ladezeit von nur 3h sind + konkurrenzlos im PEV (Personal Electric Vehicle) Segment, da sind so + manche billig E-Autos schlechter dran. Das erreichen sie durch den + minimalen Verbrauch und der großen Akkugröße, verbunden mit sehr + effizienten Motoren und nur einem Reifenwiederstand statt 2 oder 4. + Und all das in der Größe eines Koffers oder Rucksacks. +

+ +

+ Noch ein Grund ist auch auf den Formfaktor zurückzuführen: es lässt + sich super angenehm mitnehmen zum Reisen. Jedes Aktuelle + Einrad einen Trolley Handle, ein raus + ziehbarer Griff ähnlich wie bei einem Koffer. Da das Gerät sich + selbst aufrecht hält, kann man es super einfach neben sich herfahren + lassen, ohne jeglichen Aufwand. Ob im Zug oder im Bus, wo man selbst + durchkommt, kommt auch das Einrad durch, da die Pedale einklappbar + sind um es noch schmaler zu machen. Da ist es dann auch egal, wie + viel das Gerät wiegt. +

+ +

+ Aber nicht nur zum Reisen ist das sehr praktisch, sondern + auch im Alltag. Beim Einkaufen kann man es einfach mit sich + führen, statt es Draußen anketten zu müssen. Man braucht keinen + Fahrradstellplatz oder muss sich sorgen machen, das es gestohlen + wird. Aber vor allem die kleineren Geräte haben noch einen weiten + Vorteil: sie passen in ein Auto, auch in Mengen. Wenn man nun einen + Trip an einen schönen Ort machen will, um dort mit dem Einrad zu + fahren, kann man sie einfach in den Kofferraum packen, oder gar + zwischen die Füße. Mit E-bikes oder Scootern wäre das undenkbar. + Auch kann man sich von überall abholen lassen, oder irgendwo + hingebracht werden und selbst zurückkommen. Vor allem für Schüler + oder Leute, die kein Auto wollen/haben, ist das ein Segen.

@@ -210,14 +289,42 @@ function overview() { -

Wie oben beschrieben hat das Einrad Neigungssensoren, auch Gyroskopen genannt. Mehre davon, zum einen als Ausfall Sicherheit, zum anderen weil es alle 3 Neigungsrichtungen erkennen muss. Das Motherboard nimmt diese Neigungsdaten, und gibt dementsprechend viel Strom an den Motor.

-

- Der Akku liefert den Strom, welcher aus bis zu 200 Akkuzellen bestehen kann und je nach Gerät auf 84V/100V/126V/134V läuft. Diese hohen Spannungen werden durch das in Serie schalten der Akkus erreicht, während die Menge an Parallelen die maximalen Ampere bestimmen. So kann ein Gerät eine 34s4p Konfiguration haben, heißt 34 Zellen in Serie geschaltet und 4 parallele Packs, zusammen dann 34*4 = 136 Zellen. Eine Zelle läuft auf max 4,2V und kann je nach Modell 10 bis 30 Ampere geben. Bisher wurden meist high capacity Zellen von LG verbaut, doch neuerdings werden teilweise auch High discharge Samsung 40T Zellen verbaut, welche erheblich mehr Leistung dauerhaft abgeben können, und somit sicherer für high Performance Geräte sind. + Wie oben beschrieben hat das Einrad Neigungssensoren, auch + Gyroskopen genannt. Mehre davon, zum einen als Ausfall Sicherheit, + zum anderen weil es alle 3 Neigungsrichtungen erkennen muss. Das + Motherboard nimmt diese Neigungsdaten, und gibt dementsprechend viel + Strom an den Motor.

- Zu wenige Parallelen in einem Akkupack sorgen für eine unsichere Stromversorgung des Motors, da bei hoher Beanspruchung es zum Spannungsabfall (Voltage sag) kommt. Das heißt, dass der Akku kurzzeitig nicht mehr so viel Leistung geben kann, was bei einem selbstbalancierendem Gerät sehr gefährlich ist. Deswegen haben die meisten Geräte 4 oder mehr Parallelen. Außerdem haben die meisten Geräte 2 separate Akkusysteme, sodass wenn eins ausfällt der Fahrer immer noch sicher anhalten kann. Die Hohe Spannung ist notwendig, um die hohen Geschwindigkeiten zu ermöglichen. Auf umso mehr Spannung der Motor läuft, umso weniger Ampere braucht der Motor um dieselbe Leistung zu erreichen. Hohe Ampere brauchen ein robusteres Motherboard, dickere Kabel und verursachen mehr Wärme. + Der Akku liefert den Strom, welcher aus bis zu 200 + Akkuzellen bestehen kann und je nach Gerät auf 84V/100V/126V/134V + läuft. Diese hohen Spannungen werden durch das in Serie schalten der + Akkus erreicht, während die Menge an Parallelen die maximalen Ampere + bestimmen. So kann ein Gerät eine 34s4p Konfiguration haben, heißt + 34 Zellen in Serie geschaltet und 4 parallele Packs, zusammen dann + 34*4 = 136 Zellen. Eine Zelle läuft auf max 4,2V und kann je nach + Modell 10 bis 30 Ampere geben. Bisher wurden meist high capacity + Zellen von LG verbaut, doch neuerdings werden teilweise auch High + discharge Samsung 40T Zellen verbaut, welche erheblich mehr Leistung + dauerhaft abgeben können, und somit sicherer für high Performance + Geräte sind. +

+ +

+ Zu wenige Parallelen in einem Akkupack sorgen + für eine unsichere Stromversorgung des Motors, da bei hoher + Beanspruchung es zum Spannungsabfall (Voltage sag) kommt. Das heißt, + dass der Akku kurzzeitig nicht mehr so viel Leistung geben kann, was + bei einem selbstbalancierendem Gerät sehr gefährlich ist. Deswegen + haben die meisten Geräte 4 oder mehr Parallelen. Außerdem haben die + meisten Geräte 2 separate Akkusysteme, sodass wenn eins ausfällt der + Fahrer immer noch sicher anhalten kann. Die Hohe Spannung ist + notwendig, um die hohen Geschwindigkeiten zu ermöglichen. Auf umso + mehr Spannung der Motor läuft, umso weniger Ampere braucht der Motor + um dieselbe Leistung zu erreichen. Hohe Ampere brauchen ein + robusteres Motherboard, dickere Kabel und verursachen mehr Wärme.

@@ -225,7 +332,13 @@ function overview() { BMS {" "} - (Battery Managment System), welches je nach Ausstattung und Qualität für die Sicherheit der Zellen sorgt. Werden Akkuzellen zu stark belastet, zu stark entladen oder geladen, können sie im besten Fall an Kapazität verlieren, und im schlimmsten Fall in Flammen aufgehen. Ein gutes BMS ist also essenziell für die Sicherheit des Gerätes und des Fahrers. Mehr dazu im Teil Akkusicherheit. + (Battery Managment System), welches je nach Ausstattung und Qualität + für die Sicherheit der Zellen sorgt. Werden Akkuzellen zu stark + belastet, zu stark entladen oder geladen, können sie im besten Fall + an Kapazität verlieren, und im schlimmsten Fall in Flammen aufgehen. + Ein gutes BMS ist also essenziell für die + Sicherheit des Gerätes und des Fahrers. Mehr dazu im Teil{" "} + Akkusicherheit.

@@ -235,14 +348,41 @@ function overview() {

- Das Motherboard besteht unter anderem aus dem Stromeingang vom Akku und von der Ladebuchse, den drei Phasen die zum Motor laufen, MOSFETs und Kondensatoren zur Strom Regelung und den Neigungssensoren, so wie manchmal über einen Bildschirm und ein Bluetooth Modul. Der Strom Eingang vom Akku läuft meist über XT90 Stecker, die für hohe Ströme gemacht sind. Dieser Strom wird von den MOSFETs, je nach Gerät zwischen 6 und 42 von denen, auf die 3 Phasen verteilt, die der Motor zum Laufen braucht. Kondensatoren (zwischen 4 und 18) liefern hier spitzen Leistungen, die zu schnell für den Akku wären. So weit so normal für ein Motherboard. + Das Motherboard besteht unter anderem aus dem Stromeingang + vom Akku und von der Ladebuchse, den drei Phasen die zum Motor + laufen,{" "} + + MOSFETs + {" "} + und Kondensatoren zur Strom Regelung und den Neigungssensoren, so + wie manchmal über einen Bildschirm und ein Bluetooth Modul. Der + Strom Eingang vom Akku läuft meist über XT90 Stecker, die für hohe + Ströme gemacht sind. Dieser Strom wird von den MOSFETs, je nach + Gerät zwischen 6 und 42 von denen, auf die 3 Phasen verteilt, die + der Motor zum Laufen braucht. Kondensatoren (zwischen 4 und 18) + liefern hier spitzen Leistungen, die zu schnell für den{" "} + Akku wären. So weit so normal für ein + Motherboard.

- Einräder brauchen aber etwas speziellere Boards, da sie auch starke Rekuperation ermöglichen müssen. Das bedeutet, das bei Bremsvorgängen die Bremsenergie zurück in den Akku geht, und dass, im Gegensatz zum Elektroauto, in vollem Ausmaß. Die Rekuperations Fähigkeit eines Motherboards ist maßgebend für die Bremsleistung eines Einrades. Es muss also genau so viel Strom wieder zurück genommen werden können wie ausgegeben werden kann, wenn nicht sogar mehr. + Einräder brauchen aber etwas speziellere Boards, da sie auch starke{" "} + Rekuperation ermöglichen müssen. Das bedeutet, das bei + Bremsvorgängen die Bremsenergie zurück in den{" "} + Akku geht, und dass, im Gegensatz zum + Elektroauto, in vollem Ausmaß. Die Rekuperations Fähigkeit eines + Motherboards ist maßgebend für die Bremsleistung eines Einrades. Es + muss also genau so viel Strom wieder zurück genommen werden können + wie ausgegeben werden kann, wenn nicht sogar mehr.

-

Bildschirm und Bluetooth Modul sind unter anderem für Geschwindigkeitsanzeige, Musik Wiedergabe und Informationen über den Akkustand und aktuelle Leistungsabgabe. Manche Geräte mit Touchscreen können auch Fahrstil und Neigung ohne Handy Verbindung einstellen.

+

+ Bildschirm und Bluetooth Modul sind unter anderem für + Geschwindigkeitsanzeige, Musik Wiedergabe und Informationen über den + Akkustand und aktuelle Leistungsabgabe. Manche Geräte mit + Touchscreen können auch Fahrstil und Neigung ohne Handy Verbindung + einstellen. +

@@ -250,22 +390,54 @@ function overview() {

- Der Motor eines Einrades ist ein 3 Phasen Hub Motor (Nabenmotor), also ein Motor dessen außen Teil gleichzeitig der Reifen ist. Die genaue Funktion und Beschreibung wird hier gut erklärt. Das spart laute Ketten, Getriebe und Platz, braucht aber auch genauere Motor Steuerung und feinere Spulen wie Magnete im inneren. Die Motoren sind mit hall Sensoren ausgestatten, manchmal auch 2 zur Sicherheit, welche die genaue Position des Motors an das Motherboard geben. Es wird bei Einrädern zwischen High Speed (HS) und High Torque (HT) Motoren unterschieden. + Der Motor eines Einrades ist ein 3 Phasen Hub + Motor (Nabenmotor), also ein Motor dessen außen Teil gleichzeitig + der Reifen ist. Die genaue Funktion und Beschreibung wird{" "} + + hier + {" "} + gut erklärt. Das spart laute Ketten, Getriebe und Platz, braucht + aber auch genauere Motor Steuerung und feinere Spulen wie Magnete im + inneren. Die Motoren sind mit hall Sensoren ausgestatten, manchmal + auch 2 zur Sicherheit, welche die genaue Position des Motors an das + Motherboard geben. Es wird bei Einrädern zwischen High Speed (HS) + und High Torque (HT) Motoren unterschieden.

- High Speed Motoren laufen schneller und effizienter auf Geschwindigkeit (bis 90kmh bei 100v), haben aber bei niedrigen Umdrehungen einen sehr hohen Verbrauch und wenig Leistung. Die Spulen und Magnete sind größer, man hört die einzelnen Schritte des Motors bei langsamer Geschwindigkeit. + High Speed Motoren laufen schneller und effizienter auf + Geschwindigkeit (bis 90kmh bei 100v), haben aber bei niedrigen + Umdrehungen einen sehr hohen Verbrauch und wenig Leistung. Die + Spulen und Magnete sind größer, man hört die einzelnen Schritte des + Motors bei langsamer Geschwindigkeit.

- High Torque Motoren weisen sehr starkes Drehmoment auf (130nm-300nm), sind im niedrigen Drehzahl Bereich sehr effizient und fühlen sich erheblich smoother an. Dafür erreichen sie meist nicht so hohe Geschwindigkeiten (um 65kmh bei 100v), und verlieren an Leistung mit zunehmender Geschwindigkeit. + High Torque Motoren weisen sehr starkes Drehmoment auf + (130nm-300nm), sind im niedrigen Drehzahl Bereich sehr effizient und + fühlen sich erheblich smoother an. Dafür erreichen sie meist nicht + so hohe Geschwindigkeiten (um 65kmh bei 100v), und verlieren an + Leistung mit zunehmender Geschwindigkeit.

- Seit der Einführen von 126v und 134v Systemen ist das allerdings etwas unklarer, so kann ein HT Motor bei 134v ebenfalls 92kmh erreichen, und hat trotzdem genug Torque um fast 50° steile Wände hoch zu fahren. Was ein HS Motor bei 134v erreichen kann, werden wir bald erst sehen. Meistens ist der Akku und das Motherboard der Limitierende Faktor, die Motoren könnten in den meisten Fällen mehr. So benutzt Gotway/Begode jetzt seit Jahren dieselben 2 Motoren, und steigert nur die Akkuleistung und die Betriebsspannung. + Seit der Einführen von 126v und 134v Systemen ist das + allerdings etwas unklarer, so kann ein HT Motor bei 134v ebenfalls + 92kmh erreichen, und hat trotzdem genug Torque um fast 50° steile + Wände hoch zu fahren. Was ein HS Motor bei 134v erreichen kann, + werden wir bald erst sehen. Meistens ist der Akku und das + Motherboard der Limitierende Faktor, die Motoren könnten in den + meisten Fällen mehr. So benutzt Gotway/Begode jetzt seit Jahren + dieselben 2 Motoren, und steigert nur die Akkuleistung und die + Betriebsspannung.

-

Das Zusammenspiel aus diesen Komponenten ergibt ein extrem leistungsstarkes kleines schnelles Gerät, welches von 0 auf 50kmh in 3 Sekunden beschleunigt und bis zu 90kmh erreichen kann, 50° steile Wände hochfährt und trotzdem untern Tisch passt.

+

+ Das Zusammenspiel aus diesen Komponenten ergibt ein extrem + leistungsstarkes kleines schnelles Gerät, welches von 0 auf 50kmh in + 3 Sekunden beschleunigt und bis zu 90kmh erreichen kann, 50° steile + Wände hochfährt und trotzdem untern Tisch passt. +

{/* */} @@ -278,98 +450,150 @@ function overview() { } */}

- Tilt-back: Die Pedale des Geräts neigen sich nach hinten, um den Fahrer abzubremsen. Wird bei niedrigem Akku stand oder zu hoher Beanspruchung benutzt, um die Elektronik zu schützen. + Tilt-back: Die Pedale des Geräts neigen sich + nach hinten, um den Fahrer abzubremsen. Wird bei niedrigem Akku + stand oder zu hoher Beanspruchung benutzt, um die Elektronik zu + schützen.

- Pedal Dip: Die pedale geben nach, das Gerät kann die gefragte Leistung nicht aufrechterhalten und die Pedale neigen sich schlagartig nach vorne (Oder nach hinten beim starken Bremsen). In den meisten Fällen kommen die Pedale aber sofort wieder hoch, sodass die Fahrt ungestört weiter gehen kann. + Pedal Dip: Die pedale geben nach, das Gerät kann die + gefragte Leistung nicht aufrechterhalten und die Pedale neigen + sich schlagartig nach vorne (Oder nach hinten beim starken + Bremsen). In den meisten Fällen kommen die Pedale aber sofort + wieder hoch, sodass die Fahrt ungestört weiter gehen kann.

- Pedal-angle: Winkel in dem die Pedale zum Gerät stehen, von vorne gesehen. Ein steilerer Winkel sorgt für mehr Halt in Kurven, kann aber auch unangenehm werden für längere Fahrten. + Pedal-angle: Winkel in dem die Pedale zum Gerät stehen, von + vorne gesehen. Ein steilerer Winkel sorgt für mehr Halt in Kurven, + kann aber auch unangenehm werden für längere Fahrten.

- Spiked-pedals: Spitzen auf den Pedalen, die Schuhen mehr Halt geben. Ähnlich zu Mountainbike Pedalen, sind es meist einschraubbare spitze Metallstifte, die sich etwas in den Schuh bohren, um versehentliches abrutschen zu vermeiden. Wird heute statt Schleifpapier genommen, da es auch bei Nässe und Schlamm guten halt bietet. Beispiel + Spiked-pedals: Spitzen auf den Pedalen, + die Schuhen mehr Halt geben. Ähnlich zu Mountainbike Pedalen, sind + es meist einschraubbare spitze Metallstifte, die sich etwas in den + Schuh bohren, um versehentliches abrutschen zu vermeiden. Wird + heute statt Schleifpapier genommen, da es auch bei Nässe und + Schlamm guten halt bietet.{" "} + Beispiel

- Pads: aus Plastik oder Schaumstoff bestehende Teile die seitlich am Gerät montiert werden, meist gedruckt aus TPU und PLA und befestigt mit großflächigem starkem Klettband. Sie sind zur besseren Kontrolle des Gerätes, vor allem für schwere und schnelle Einräder wichtig. Sie werden in 2 Typen aufgeteilt, wobei viele beides zusammen kombinieren. Beispiel + Pads: aus Plastik oder Schaumstoff bestehende + Teile die seitlich am Gerät montiert werden, meist gedruckt aus + TPU und PLA und befestigt mit großflächigem starkem Klettband. Sie + sind zur besseren Kontrolle des Gerätes, vor allem für schwere und + schnelle Einräder wichtig. Sie werden in 2 Typen aufgeteilt, wobei + viele beides zusammen kombinieren.{" "} + Beispiel

- Power Pads: haben Kontakt an den Waden und dem Schienenbein, dienen zum besseren beschleunigen und bremsen. Essenziell für schwere Geräte mit hohen pedalen. + Power Pads: haben Kontakt an den Waden und dem + Schienenbein, dienen zum besseren beschleunigen und bremsen. + Essenziell für schwere Geräte mit hohen pedalen.

- Jump Pads: haben Kontakt mit dem Fuß und der Verse, dienen zum Springen und zur Sicherheit. Im Falle eines unerwarteten Buckel in der Straße halten sie den Fuß fest, sodass man nicht vom Gerät fällt. Allerdings können sie im Falle eines crashes behinderlich sein, da sie ein schnelles absteigen erschweren. + Jump Pads: haben Kontakt mit dem Fuß und der Verse, dienen + zum Springen und zur Sicherheit. Im Falle eines unerwarteten + Buckel in der Straße halten sie den Fuß fest, sodass man nicht vom + Gerät fällt. Allerdings können sie im Falle eines crashes + behinderlich sein, da sie ein schnelles absteigen erschweren.

- Wobbles: beschreibt das unbeabsichtigte Wackeln des Geräts bei höherer Geschwindigkeit. Mehr dazu hier + Wobbles: beschreibt das unbeabsichtigte Wackeln des Geräts + bei höherer Geschwindigkeit. Mehr dazu hier

- Trolley Handle: ein ausfahrbarer Griff zum Schieben des Gerätes, ähnlich wie bei einem Koffer. + Trolley Handle: ein ausfahrbarer Griff zum + Schieben des Gerätes, ähnlich wie bei einem Koffer.

- Kill-Switch: ein Knopf unterm Griff, der den Motor abschaltet. Sorgt beim Anheben dafür, das der Motor nicht hochdreht. + Kill-Switch: ein Knopf unterm Griff, der den Motor + abschaltet. Sorgt beim Anheben dafür, das der Motor nicht + hochdreht.

- Cut-off /Cut-out: Das Plötzliche abschalten des Gerätes während der Fahrt, siehe Kapitel Cut-out. + Cut-off /Cut-out: Das Plötzliche abschalten des Gerätes + während der Fahrt, siehe Kapitel Cut-out.

- HS Motor: High Speed Motor, Siehe Kapitel Motor. + HS Motor: High Speed Motor, Siehe Kapitel{" "} + Motor.

- HT Motor: High Torque Motor, siehe Kapitel Motor. + HT Motor: High Torque Motor, siehe Kapitel{" "} + Motor.

- W: Watt, Leistungsangabe, zeigt wie viel Leistung das Gerät dauerhaft halten kann. 3000W entsprechen 4 PS (ein E-bike hat maximal 250w). Nicht zu verwechseln mit + W: Watt, Leistungsangabe, zeigt wie viel Leistung das Gerät + dauerhaft halten kann. 3000W entsprechen 4 PS (ein E-bike hat + maximal 250w). Nicht zu verwechseln mit

- Peak Watt: Maximale Leistung, die das Gerät für sehr kurze Zeit erreichen kann. + Peak Watt: Maximale Leistung, die das Gerät für sehr kurze + Zeit erreichen kann.

- Wh: Wattstunden, Speicher Angabe, zeigt wie viel Energie der Akku speichern kann. 3000wh heißt, dass der Akku 3000w über eine Stunde lang geben könnte, oder 1500w über 2 Stunden etc. + Wh: Wattstunden, Speicher Angabe, zeigt wie viel + Energie der Akku speichern kann. 3000wh heißt, + dass der Akku 3000w über eine Stunde lang geben könnte, oder 1500w + über 2 Stunden etc.

- BMS: steht für Battery Managment System, hier weiter erklärt + BMS: steht für Battery Managment System, hier weiter{" "} + erklärt

- Voltage sag: Spannungsabfall, der Akku verliert kurzzeitig bei hoher Beanspruchung an Spannung, was bei gleicher Leistung die fließenden Ampere erhöht. + Voltage sag: Spannungsabfall, der Akku verliert kurzzeitig + bei hoher Beanspruchung an Spannung, was bei gleicher Leistung die + fließenden Ampere erhöht.

- Freespin: Maximale Dreh Geschwindigkeit die der Motor erreichen kann, wenn man das Gerät anhebt. Minus 20 km/h rechnen, um ungefähr die erreichbare top Geschwindigkeit zu bekommen. + Freespin: Maximale Dreh Geschwindigkeit die der Motor + erreichen kann, wenn man das Gerät anhebt. Minus 20 km/h rechnen, + um ungefähr die erreichbare top Geschwindigkeit zu bekommen.

- 16inch: beschreibt die Reifen Größe, in dem Fall 16 Zoll (40cm) Durchmesser. Kleine Durchmesser sind wendig und haben ein schnelles Ansprechverhalten, große Durchmesser (bis 24inch, 60cm) fühlen sich schwer und träge an, sind aber erheblich stabiler auf Geschwindigkeit. + 16inch: beschreibt die Reifen Größe, in dem Fall 16 Zoll + (40cm) Durchmesser. Kleine Durchmesser sind wendig und haben ein + schnelles Ansprechverhalten, große Durchmesser (bis 24inch, 60cm) + fühlen sich schwer und träge an, sind aber erheblich stabiler auf + Geschwindigkeit.

- Charging Amps: Die maximalen Ampere, mit denen das Gerät laden kann. Die meisten neuen Geräte laden mit maximal 10 Ampere, also 10*100 oder 10*134 Watt. Die Ladezeit errechnet man so: kapazität/Volt/lade Ampere. 3300wh:126v:10A = 2,6h. + Charging Amps: Die maximalen Ampere, mit denen das Gerät + laden kann. Die meisten neuen Geräte laden mit maximal 10 Ampere, + also 10*100 oder 10*134 Watt. Die Ladezeit errechnet man so: + kapazität/Volt/lade Ampere. 3300wh:126v:10A = 2,6h.

@@ -377,7 +601,15 @@ function overview() { {/* */}

Sicherheit

-

Die wohl zweit häufigste Frage ist meist, ob man darauf denn nicht einfach umfällt und ob das denn überhaupt sicher ist. Die Kurze Antwort: ja ist es. Es gibt zwar wie bei jedem Fortbewegungsmittel Risiken, aber sie sind sehr viel kleiner und unwichtiger als man zu Anfang annehmen würde. Trotzdem haben sich über die Jahren ein paar sicherheitstechnische Aspekte ergeben, die hier weiter erklärt werden:

+

+ Die wohl zweit häufigste Frage ist meist, ob man darauf denn nicht + einfach umfällt und ob das denn überhaupt sicher ist. Die Kurze + Antwort: ja ist es. Es gibt zwar wie bei jedem Fortbewegungsmittel + Risiken, aber sie sind sehr viel kleiner und unwichtiger als man zu + Anfang annehmen würde. Trotzdem haben sich über die Jahren ein paar + sicherheitstechnische Aspekte ergeben, die hier weiter erklärt + werden: +

{/* */} @@ -390,18 +622,54 @@ function overview() {

- Jeder EUC YouTuber und erfahrene Fahrer wird dir sagen, das Schutzausrüstung essenziell ist. Zur Schutzausrüstung gehören je nach Geschwindigkeiten auf jeden Fall Hand und Knieschoner, beliebt sind die Leatt dual axis knee guards . Bei unter 30kmh, also sehr kleinen Geräten, kann man wenn nötig auch ohne Ausrüstung fahren. Das wird zwar nicht gerne gesehen, aber wenn man etwas sportlich ist, kann man jeden crash einfach auslaufen. Etwas das bei Fahrrädern nicht möglich ist. + Jeder EUC YouTuber und erfahrene Fahrer wird dir sagen, das + Schutzausrüstung essenziell ist. Zur Schutzausrüstung gehören je + nach Geschwindigkeiten auf jeden Fall Hand und Knieschoner, beliebt + sind die{" "} + + Leatt dual axis knee guards + {" "} + . Bei unter 30kmh, also sehr kleinen Geräten, kann man wenn + nötig auch ohne Ausrüstung fahren. Das wird zwar nicht gerne + gesehen, aber wenn man etwas sportlich ist, kann man jeden crash + einfach auslaufen. Etwas das bei Fahrrädern nicht möglich ist.

- Bei höheren Geschwindigkeiten (über 30kmh) sollte ein Helm getragen werden, vorzugweise ein Fullface Helm. Bis 60kmh reicht da auch ein MTB-Helm, oder aus dem Motorcross Bereich. Auch sollte an Ellenbogen und Schulter Schutz gedacht werden, beliebt sind hier die LazyRolling Jacken, welche alle Protektoren eingebaut haben und meist auch gute Sichtbarkeit bei Nacht bieten. Bei den Helmen sind der TSG Pass und neuerdings der Predator DH6-X sehr beliebt, wegen des hohen Sicht Feldes, kleinen Gewicht und stylischem Aussehen. Bei Geschwindigkeiten von 80 bis 100kmh sollte man über Motorrad Ausrüstungen nachdenken, da die oben genannte Dinge nicht für diese Geschwindigkeiten gebaut wurden. + Bei höheren Geschwindigkeiten (über 30kmh) sollte ein Helm + getragen werden, vorzugweise ein Fullface Helm. Bis 60kmh reicht da + auch ein MTB-Helm, oder aus dem Motorcross Bereich. Auch sollte an + Ellenbogen und Schulter Schutz gedacht werden, beliebt sind hier die{" "} + LazyRolling Jacken, welche + alle Protektoren eingebaut haben und meist auch gute Sichtbarkeit + bei Nacht bieten. Bei den Helmen sind der{" "} + + TSG Pass + {" "} + und neuerdings der{" "} + + Predator DH6-X + {" "} + sehr beliebt, wegen des hohen Sicht Feldes, kleinen Gewicht und + stylischem Aussehen. Bei Geschwindigkeiten von 80 bis 100kmh{" "} + sollte man über Motorrad Ausrüstungen nachdenken, da die oben + genannte Dinge nicht für diese Geschwindigkeiten gebaut wurden.

Generell Gelten 2 Sachen:
- Die beste Ausrüstung ist die, die man auch trägt. Soll heißen, dass egal wie gut deine Ausrüstung ist, sie nur etwas bringt, wenn man sie tatsächlich trägt. Dafür muss sie einem bequem sitzen und man muss sich gut darin fühlen.
- Und: Dress for the slide, not the ride. (Kleide dich für den Fall, nicht die Fahrt.) Dies besagt, dass man sich stehts für den schlimmsten Fall angemessen kleiden sollte. Zum Beispiel sollte man auf einem Inmotion V8 mit 28kmh top Geschwindigkeit nicht volle Motorrad Ausrüstung tragen, da sie die Sicht einschränkt und viel zu viel für die Situation wäre. Aber auf einen Master Pro mit 100kmh auch keinen Fahrradhelm tragen. + Die beste Ausrüstung ist die, die man auch trägt. Soll heißen, dass + egal wie gut deine Ausrüstung ist, sie nur etwas bringt, wenn man + sie tatsächlich trägt. Dafür muss sie einem bequem sitzen und man + muss sich gut darin fühlen.
+ Und: Dress for the slide, not the ride. (Kleide dich für den Fall, + nicht die Fahrt.) Dies besagt, dass man sich stehts für den + schlimmsten Fall angemessen kleiden sollte. Zum Beispiel sollte man + auf einem Inmotion V8 mit 28kmh top Geschwindigkeit nicht volle + Motorrad Ausrüstung tragen, da sie die Sicht einschränkt und viel zu + viel für die Situation wäre. Aber auf einen Master Pro mit 100kmh + auch keinen Fahrradhelm tragen.

@@ -416,32 +684,91 @@ function overview() {
-

Cut-off's sind die größte Quelle der nicht eigenverantwortlichen Unfälle. Ein Cut-off oder auch Cut-out bedeutet, dass das Gerät mitten in der Fahrt aus geht, und der Fahrer im besten Fall abspringt, und im schlimmsten fall direkt in den Asphalt knallt. Die Gründe dafür sind vielfältig, hier ein paar Beispiele:

-

- Bei Überlastung gehen ältere oder schlecht gebaute Geräte einfach aus, entweder weil sie durchgebrannt sind oder weil sich die Elektronik vorm Durchbrennen schützt. Überlastungen passieren, wenn man zu steile Wege hochfährt, wenn man auf hoher Geschwindigkeit einem großen Buckel in der Straße begegnet oder wenn man nahe der top Geschwindigkeit nochmal beschleunigt. Natürlich ist dieses Verhalten nicht unbemerkt geblieben, weswegen die Hersteller Techniken eingebaut haben um ein Cut-off wegen Überlastung zu vermeiden. -

- -

Nahezu alle Geräte geben ein lautes Piepen von sich, wenn sie nahe der Belastungsgrenze sind, im den Fahrer zu warnen. Viele nutzen auch Tilt-back um die Fahrer von der top Geschwindigkeit abzuhalten, was sehr effektiv funktioniert. Auch passiert es immer häufiger, dass bei Überlastung der Motor für nur ganz kurze Zeit abgeschaltet wird, um die Elektronik zu schützen. Das sorgt dann für ein Pedal Dip, und in den meisten Fällen kann die Fahrt normal fortgeführt werden.

- -

Mittlerweile sind die Motherboards so robust und die Leistungen so stark, dass Cut-outs wegen Überlastung eher selten vorkommen, und wenn dann nur wenn der Fahrer äußerst aggressiv fährt oder was an dem Gerät schon vorher fehlerhaft war, wie in diesem Beispiel Video rechts.

- -

- Ein weiterer Grund, der vor allem die neusten Geräte betrifft (meist Geräte aus der ersten Produktionsreihe), sind Softwarefehler oder fehlerhafte Hardware. Dieser Grund für Cut-outs ist der beängstigendste, weil er einfach so passieren kann. Egal bei welcher Geschwindigkeit und Auslastung. Ein bekanntes Beispiel waren hier die Inmotion V12 Cut-outs, bei denen die verbauten MOSFETs fehlerhaft waren und dadurch bei vielen Geräten zu Cut-offs führten. In den später produzierten Geräten werden solche Probleme meist behoben. + Cut-off's sind die größte Quelle der nicht eigenverantwortlichen + Unfälle. Ein Cut-off oder auch Cut-out bedeutet, dass das Gerät + mitten in der Fahrt aus geht, und der Fahrer im besten Fall + abspringt, und im schlimmsten fall direkt in den Asphalt knallt. Die + Gründe dafür sind vielfältig, hier ein paar Beispiele:

- Das letzte Beispiel hier ist ein niedriger Akkustand. Bei niedrigem Akkustand läuft das Gerät nicht mehr auf den vollen 100.8V, sondern eher um die 80V. Wird nun viel Leistung beansprucht, kommt es zum Spannungsabfall wie im Kapitel Akku beschrieben. Fällt dann die Spannung unter das Minimum, schaltet die Elektronik ab. Moderne Geräte limitieren die top Geschwindigkeit bei sinkendem Akkustand, aber vor allem manche Gotway Geräte tun das nicht. Das sorgt dafür, das Fahrer trotz niedrigem Akkustand hohe Leistungen fordern, und damit nicht nur langfristig ihrem Akku schaden, sondern auch kurzfristig sich selbst im Falle eins dadurch indizierten Cut-offs. + Bei Überlastung gehen ältere oder schlecht gebaute Geräte + einfach aus, entweder weil sie durchgebrannt sind oder weil sich die + Elektronik vorm Durchbrennen schützt. Überlastungen passieren, wenn + man zu steile Wege hochfährt, wenn man auf hoher Geschwindigkeit + einem großen Buckel in der Straße begegnet oder wenn man nahe der + top Geschwindigkeit nochmal beschleunigt. Natürlich ist dieses + Verhalten nicht unbemerkt geblieben, weswegen die Hersteller + Techniken eingebaut haben um ein Cut-off wegen Überlastung zu + vermeiden.

-

Trotz all dieser Gründe, sind Cut-outs sehr selten und bei richtiger Fahrweise so gut wie nie ein Problem. Und wenn man sich historisch sichere Geräte kauft, wie KS16X oder Veteran Sherman, kann man relativ sorglos sein.

+

+ Nahezu alle Geräte geben ein lautes Piepen von sich, wenn sie nahe + der Belastungsgrenze sind, im den Fahrer zu warnen. Viele nutzen + auch Tilt-back um die Fahrer von der top Geschwindigkeit abzuhalten, + was sehr effektiv funktioniert. Auch passiert es immer häufiger, + dass bei Überlastung der Motor für nur ganz kurze Zeit abgeschaltet + wird, um die Elektronik zu schützen. Das sorgt dann für ein Pedal + Dip, und in den meisten Fällen kann die Fahrt normal fortgeführt + werden. +

+ +

+ Mittlerweile sind die Motherboards so robust und die Leistungen so + stark, dass Cut-outs wegen Überlastung eher selten vorkommen, und + wenn dann nur wenn der Fahrer äußerst aggressiv fährt oder was an + dem Gerät schon vorher fehlerhaft war, wie in diesem Beispiel Video + rechts. +

+ +

+ Ein weiterer Grund, der vor allem die neusten Geräte betrifft (meist + Geräte aus der ersten Produktionsreihe), sind{" "} + Softwarefehler oder fehlerhafte Hardware. Dieser Grund für + Cut-outs ist der beängstigendste, weil er einfach so passieren kann. + Egal bei welcher Geschwindigkeit und Auslastung. Ein bekanntes + Beispiel waren hier die Inmotion V12 Cut-outs, bei denen die + verbauten MOSFETs fehlerhaft waren und dadurch bei vielen Geräten zu + Cut-offs führten. In den später produzierten Geräten werden solche + Probleme meist behoben. +

+ +

+ Das letzte Beispiel hier ist ein niedriger Akkustand. Bei + niedrigem Akkustand läuft das Gerät nicht mehr auf den vollen + 100.8V, sondern eher um die 80V. Wird nun viel Leistung beansprucht, + kommt es zum Spannungsabfall wie im Kapitel Akku{" "} + beschrieben. Fällt dann die Spannung unter das Minimum, schaltet die + Elektronik ab. Moderne Geräte limitieren die top Geschwindigkeit bei + sinkendem Akkustand, aber vor allem manche Gotway Geräte tun das + nicht. Das sorgt dafür, das Fahrer trotz niedrigem Akkustand hohe + Leistungen fordern, und damit nicht nur langfristig ihrem Akku + schaden, sondern auch kurzfristig sich selbst im Falle eins dadurch + indizierten Cut-offs. +

+ +

+ Trotz all dieser Gründe, sind Cut-outs sehr selten und bei richtiger + Fahrweise so gut wie nie ein Problem. Und wenn man sich historisch + sichere Geräte kauft, wie KS16X oder Veteran Sherman, kann man + relativ sorglos sein. +

{/* */}

Brände, Akkusicherheit

- Vorweg: im Gegensatz zu z.B. Hoverboards sind Einräder recht sicher in Sachen Brände und Akkusicherheit. In der Vergangenheit war aber vor allem Gotway/Begode für Akkubrände und fehlende Akkusicherheit bekannt. Doch spätestens seitdem abrennen vom KS S20 Prototyp ist die Sorge auch für andere Marken da. + Vorweg: im Gegensatz zu z.B. Hoverboards sind Einräder recht sicher + in Sachen Brände und Akkusicherheit. In der Vergangenheit war aber + vor allem Gotway/Begode für Akkubrände und fehlende Akkusicherheit + bekannt. Doch spätestens seitdem{" "} + + abrennen vom KS S20 Prototyp + {" "} + ist die Sorge auch für andere Marken da.

@@ -509,16 +877,41 @@ function overview() {
-

Das wohl mit Abstand größte Sicherheitsrisiko bildet die Fahrweise des Fahrers. Ähnlich wie bei Motorädern, kann rücksichtloses fahren und zu hohe Geschwindigkeiten schnell zu Unfällen führen. Unähnlich zu Motorädern, stirbt kaum einer bei einem Unfall mit einem EUC. Die Geräte sind bis auf ein paar ausnahmen so klein und relativ langsam, dass es zwar Verletzungen, aber kaum Todesfälle gibt.

+

+ Das wohl mit Abstand größte Sicherheitsrisiko bildet die Fahrweise + des Fahrers. Ähnlich wie bei Motorädern, kann rücksichtloses fahren + und zu hohe Geschwindigkeiten schnell zu Unfällen führen. Unähnlich + zu Motorädern, stirbt kaum einer bei einem Unfall mit einem EUC. Die + Geräte sind bis auf ein paar ausnahmen so klein und relativ langsam, + dass es zwar Verletzungen, aber kaum Todesfälle gibt. +

Trotzdem gibt es auch hier interessante Phänomene:

- Im Gegensatz zu Scootern, sorgt die steile Lernkurve für mehr Respekt vor dem Gerät und dem eigenen Können. Viele gehen erst in die nähe des Straßenverkehrs, wenn sie länger geübt haben und sich sicher fühlen, wohingegen vor allem bei ausleih-Scootern die erste Fahrt meist direkt zwischen Autos oder Fußgängern stattfindet. Das sorgt für erheblich weniger Vorfälle mit EUCs. + Im Gegensatz zu Scootern, sorgt die steile Lernkurve für mehr + Respekt vor dem Gerät und dem eigenen Können. Viele gehen erst in + die nähe des Straßenverkehrs, wenn sie länger geübt haben und sich + sicher fühlen, wohingegen vor allem bei ausleih-Scootern die erste + Fahrt meist direkt zwischen Autos oder Fußgängern stattfindet. Das + sorgt für erheblich weniger Vorfälle mit EUCs.

- EUC fahren ist ein sehr Skill basiertes Fortbewegungsmittel. Selbst die Notbremse muss lange geübt werden, in verschieden Szenarien und vor allem in Kurven. Häufig kommt es vor, dass Fahrer nach den ersten paar Kilometern fahren schon aufhören, sich aktiv zu pushen und zu verbessern. So kommt es öfter dazu, dass selbst Jahre lange Fahrer unsicher beim auf und absteigen sind, und sich in Notsituationen nicht zu helfen wissen. Viele haben einen falschen Stand oder fahren mit wackeligen Beinen, was Wobbles verursacht und somit zum Fall führt. Das ist auch der Grund, weswegen im schnitt die NewYorker Fahrer weniger Unfälle haben als andere Gruppen und Städte, trotz, oder eben weil sie so aggressiv fahren und somit ein sehr hohes Skill Level haben. Diese Geräte können nur so viel wie ihr Fahrer, und sind mit dem richtigen Skill zu unglaublichem im Stande. + EUC fahren ist ein sehr Skill basiertes Fortbewegungsmittel. + Selbst die Notbremse muss lange geübt werden, in verschieden + Szenarien und vor allem in Kurven. Häufig kommt es vor, dass Fahrer + nach den ersten paar Kilometern fahren schon aufhören, sich aktiv zu + pushen und zu verbessern. So kommt es öfter dazu, dass selbst Jahre + lange Fahrer unsicher beim auf und absteigen sind, und sich in + Notsituationen nicht zu helfen wissen. Viele haben einen falschen + Stand oder fahren mit wackeligen Beinen, was{" "} + Wobbles verursacht und somit zum Fall führt. + Das ist auch der Grund, weswegen im schnitt die NewYorker Fahrer + weniger Unfälle haben als andere Gruppen und Städte, trotz, oder + eben weil sie so aggressiv fahren und somit ein sehr hohes Skill + Level haben. Diese Geräte können nur so viel wie ihr Fahrer, und + sind mit dem richtigen Skill zu unglaublichem im Stande.

- Unfälle an sich sind hier auch noch mal zu erwähnen, denn es gibt einige entscheidende unterschiede, welche EUCs in gewisser Weise sicherer machen als andere Fahrzeuge. + Unfälle an sich sind hier auch noch mal zu erwähnen, denn es + gibt einige entscheidende unterschiede, welche EUCs in gewisser + Weise sicherer machen als andere Fahrzeuge.

- Erstens, man steht aufrecht und hat die Hände und den Körper frei. Das allein sorgt für ein viel leichteres Abfangen eines Sturzes, als zum Beispiel bei einem Fahrrad oder Scooter. Bei denen fliegt man entweder über den Lenker, oder rutscht seitlich aus und hat nicht beide Beine, um einen aufzufangen. + Erstens, man steht aufrecht und hat die Hände und den Körper + frei. Das allein sorgt für ein viel leichteres Abfangen eines + Sturzes, als zum Beispiel bei einem Fahrrad oder Scooter. Bei denen + fliegt man entweder über den Lenker, oder rutscht seitlich aus und + hat nicht beide Beine, um einen aufzufangen.

- Zweitens steht man nach vorne gerichtet, und wird nicht wie beim OneWheel seitlich in den Boden geyeetet. Die meisten können bei unter 25kmh einfach abspringen und auslaufen, ohne überhaupt zu fallen. Das ist sonst nur bei sehr wenig Geräten dieser Art Möglich. Natürlich ist man nicht so sicher wie auf einem dicken Motorrad, oder wie in einem Auto. Aber im Vergleich zum Motorrad, sind die Geschwindigkeiten meist lachhaft klein und somit viel ungefährlicher. Außerdem trägt man meist eh die empfohlene Ausrüstung, sodass 99% der Fälle einfach gar nichts passiert. + Zweitens steht man nach vorne gerichtet, und wird nicht wie + beim OneWheel seitlich in den Boden{" "} + + geyeetet + + . Die meisten können bei unter 25kmh einfach abspringen und + auslaufen, ohne überhaupt zu fallen. Das ist sonst nur bei sehr + wenig Geräten dieser Art Möglich. Natürlich ist man nicht so sicher + wie auf einem dicken Motorrad, oder wie in einem Auto. Aber im + Vergleich zum Motorrad, sind die Geschwindigkeiten meist lachhaft + klein und somit viel ungefährlicher. Außerdem trägt man meist eh die + empfohlene Ausrüstung, sodass 99% der Fälle einfach gar nichts + passiert.

@@ -552,15 +963,35 @@ function overview() {

- Wobbles sind ein noch nicht ganz verstandenes Problem. Wobble beschreiben das hin und her wackeln des Gerätes während schneller fahrt. Wie im Thema Reifen erwähnt, haben Straßenreifen öfter die Neigung dazu zu wackeln. Das Gerät wackelt dann in seiner eigen Resonanz, bei Motorrädern bekannt als Lenkerflattern. + Wobbles sind ein noch nicht ganz verstandenes Problem. Wobble + beschreiben das hin und her wackeln des Gerätes während + schneller fahrt. Wie im Thema Reifen erwähnt, + haben Straßenreifen öfter die Neigung dazu zu wackeln. Das Gerät + wackelt dann in seiner eigen Resonanz, bei Motorrädern bekannt als{" "} + Lenkerflattern.

- Man kann dem entgehen in dem man den Reifendruck niedriger hält und ein balanciertes Gerät hat, also mit gleichmäßiger Gewichts Verteilung. Auch zum Vermeiden hilft es, immer leicht zu carven, also schlängelnd zu fahren. Wenn man trotzdem Wobbles bekommt, hilft es gute Pads zu haben, da einem diese mehr Halt auf dem Gerät geben und einem somit mehr Zeit geben zu reagieren. Aber darüber, wie man sie wirklich beendet gibt es verschiedene Meinungen: die einen sagen man sollte lockerlassen und bremsen, die anderen sagen auf keinen Fall bremsen, sondern fester zupacken und beschleunigen. + Man kann dem entgehen in dem man den Reifendruck niedriger + hält und ein balanciertes Gerät hat, also mit gleichmäßiger Gewichts + Verteilung. Auch zum Vermeiden hilft es, immer leicht zu{" "} + carven, also schlängelnd zu fahren. Wenn man trotzdem Wobbles + bekommt, hilft es gute Pads zu haben, da einem + diese mehr Halt auf dem Gerät geben und einem somit mehr Zeit geben + zu reagieren. Aber darüber, wie man sie wirklich beendet gibt es + verschiedene Meinungen: die einen sagen man sollte lockerlassen und + bremsen, die anderen sagen auf keinen Fall bremsen, sondern fester + zupacken und beschleunigen.

- Allerdings ist das Beispiel Video hier auch ein Extremfall, wenn auch perfekt mit den Knieschonern abgefangen. Im normal Fall würde man beim bremsen leichtes wackeln spüren, und diesen mit der Zeit auch unter kontrolle bekommen. Generell sagen viele, dass es eine Sache des Trainings und der Erfahrung ist. Auch sind Geräte wie die MSuper-Reihe, RS's und EXN's von Gotway anfälliger als zum Beispiel das Veteran Sherman oder das KS S22. + Allerdings ist das Beispiel Video hier auch ein Extremfall, wenn + auch perfekt mit den Knieschonern abgefangen. Im normal Fall würde + man beim bremsen leichtes wackeln spüren, und diesen mit der Zeit + auch unter kontrolle bekommen. Generell sagen viele, dass es eine{" "} + Sache des Trainings und der Erfahrung ist. Auch sind Geräte + wie die MSuper-Reihe, RS's und EXN's von Gotway anfälliger als zum + Beispiel das Veteran Sherman oder das KS S22.

@@ -569,7 +1000,18 @@ function overview() {

Leistung als Sicherheitsfeature

- Vor allem Politiker und Leute außerhalb dieses Sports denken, dass mehr Leistung gleichbedeutend mit höherem Risiko ist. Sie liegen bei Scootern und E-bikes damit auch fast richtig, weil diese nicht auf Leistung zur Stabilisierung angewiesen sind. EUCs, OneWheels und alle Arten von Hoverboards und Segways sind dies aber, und das sorgt für einen kleinen Widerspruch. Mehr Leistung gibt dem Fahrer sehr viel brems Sicherheit, und vermindert das Risiko eines durch Überlastung indizierten Cut-offs. Auch sorgt eine größere Batterie für mehr Leistungsreserve für schweres Terrain. Doch sorgt mehr Leistung ebenfalls für erheblich höhere Geschwindigkeiten, was überhaupt erst die Tür zu all den Unfällen öffnet. + Vor allem Politiker und Leute außerhalb dieses Sports denken, dass + mehr Leistung gleichbedeutend mit höherem Risiko ist. Sie liegen bei + Scootern und E-bikes damit auch fast richtig, weil diese nicht auf + Leistung zur Stabilisierung angewiesen sind. EUCs, OneWheels und + alle Arten von Hoverboards und Segways sind dies aber, und das sorgt + für einen kleinen Widerspruch. Mehr Leistung gibt dem Fahrer sehr + viel brems Sicherheit, und vermindert das Risiko eines + durch Überlastung indizierten Cut-offs. Auch + sorgt eine größere Batterie für mehr Leistungsreserve für + schweres Terrain. Doch sorgt mehr Leistung ebenfalls für erheblich + höhere Geschwindigkeiten, was überhaupt erst die Tür zu all den + Unfällen öffnet.

@@ -577,7 +1019,21 @@ function overview() {

Federung als Sicherheitsfeature

- Fast alle neuen und angekündigten Geräte haben eine Art integrierte Federung. Zu Anfang als Gimmick und als „nur für Offroad“ eingeschätzt, entwickelt sich dieses Feature langsam zu einer Notwendigkeit. Denn bei einem selbst balancierenden Gerät sorgt jeder Buckel in der Straße für eine Leistungs-Spitze im Controller. Das ist bei 35kmh meist kein Problem, aber bei 70kmh kann das für viele Geräte schon zu viel sein. Federung nimmt die entstehende Leistungs-Spitze größtenteils weg, und sorgt gleichzeitig dafür, dass die Füße vom Fahrer nicht von Gerät geschossen werden. Ausnahme sind hier die Pogostick Designs im Inmotion V11, welches in Ausnahme Fällen den Fahrer einfach emporschießt, statt zu federn. Trotzdem, vor allem die progressiven Federungen sorgen nicht nur für erheblich mehr Komfort, sondern auch für Fahrer Sicherheit. Und erlauben Mountainbike ähnliche Performance auf den Trails. Viedeo dazu + Fast alle neuen und angekündigten Geräte haben eine Art integrierte + Federung. Zu Anfang als Gimmick und als „nur für Offroad“ + eingeschätzt, entwickelt sich dieses Feature langsam zu einer + Notwendigkeit. Denn bei einem selbst balancierenden Gerät sorgt + jeder Buckel in der Straße für eine Leistungs-Spitze im Controller. + Das ist bei 35kmh meist kein Problem, aber bei 70kmh kann das für + viele Geräte schon zu viel sein. Federung nimmt die entstehende + Leistungs-Spitze größtenteils weg, und sorgt gleichzeitig dafür, + dass die Füße vom Fahrer nicht von Gerät geschossen werden. Ausnahme + sind hier die Pogostick Designs im Inmotion V11, welches in Ausnahme + Fällen den Fahrer einfach emporschießt, statt zu federn. Trotzdem, + vor allem die progressiven Federungen sorgen nicht nur für erheblich + mehr Komfort, sondern auch für Fahrer Sicherheit. Und erlauben + Mountainbike ähnliche Performance auf den Trails.{" "} + Viedeo dazu

@@ -588,16 +1044,38 @@ function overview() {

Reifen werden unterteilt in 3 Kategorien:

- Offroad Reifen, auch Nobbys genannt, haben äußerst viel und meist ein sehr grobes Profil. Sie sind meist lauter auf der Straße, haben einen größeren Wendekreis und fühlen sich auf der Straße bei weitem nicht so agil und wendig an wie Straßenreifen. Dafür haben sie meist hervorragenden Grip im Wald und können auch durch tiefen Matsch fahren. Außerdem wurde festgestellt, dass Nobbys weniger wobblen als Straßenreifen (Vergleich - ), wahrscheinlich wegen dem geringeren Reifendruck und dem weicheren Material. Nobbys haben noch den Vorteil, dass sie meist länger halten. So hält ein Standard Kenda K262 locker 10000km, wo ein CST Straßenreifen nur 3-4000km hält. + Offroad Reifen, auch Nobbys genannt, haben äußerst viel und + meist ein sehr grobes Profil. Sie sind meist lauter auf der Straße, + haben einen größeren Wendekreis und fühlen sich auf der Straße bei + weitem nicht so agil und wendig an wie Straßenreifen. Dafür haben + sie meist hervorragenden Grip im Wald und können auch durch tiefen + Matsch fahren. Außerdem wurde festgestellt, dass Nobbys weniger + wobblen als Straßenreifen ( + Vergleich + ), wahrscheinlich wegen dem geringeren Reifendruck und dem weicheren + Material. Nobbys haben noch den Vorteil, dass sie meist länger + halten. So hält ein Standard Kenda K262 locker 10000km, wo ein CST + Straßenreifen nur 3-4000km hält.

- Straßenreifen sind wie der Name sagt für Asphalt besser geeignet, sie lassen das Gerät agiler und schneller wirken als ein Nobby. Auch sind sie erheblich leiser, sie fühlen sich erheblich besser in Kurven an und erlauben sehr feine Manöver. Hier sind 2 Reifen zu nennen, einmal der CST c-1488 welcher zum Leiden vieler als Standardstraßenreifen mit dem Gerät geliefert wird. Dieser Reifen hat eine kurze Lebensspanne, und im Gegensatz zum zweiten Reifen ein schlechtes Material. Der zweite bekannte Reifen ist der Michelin City pro, welcher aus einem top Material besteht und somit länger hält. Review zum City Pro + Straßenreifen sind wie der Name sagt für Asphalt besser + geeignet, sie lassen das Gerät agiler und schneller wirken als ein + Nobby. Auch sind sie erheblich leiser, sie fühlen sich erheblich + besser in Kurven an und erlauben sehr feine Manöver. Hier sind 2 + Reifen zu nennen, einmal der CST c-1488 welcher zum Leiden vieler + als Standardstraßenreifen mit dem Gerät geliefert wird. Dieser + Reifen hat eine kurze Lebensspanne, und im Gegensatz zum zweiten + Reifen ein schlechtes Material. Der zweite bekannte Reifen ist der + Michelin City pro, welcher aus einem top Material besteht und somit + länger hält.{" "} + Review zum City Pro

- Hybride sind beliebt bei Leuten, die weder ständig im matschigen Wald oder ausschließlich auf der Straße unterwegs sind. Sie versuchen das beste beider Welten anzubieten. + Hybride sind beliebt bei Leuten, die weder ständig im + matschigen Wald oder ausschließlich auf der Straße unterwegs sind. + Sie versuchen das beste beider Welten anzubieten.

@@ -608,13 +1086,27 @@ function overview() {
- +

Die Grundlegende Technik kam mit dem Segway - auf den Markt. Doch mangelnde Leistung, Akkugröße und die Bauweise, zusammen mit dem Design und dem Preis sorgten für einen spektakulären Flop dieser Technik. Es gab schon 1930 erste Prototypen und Einzelversuche, aber erst das SoloWheel im Jahr 2010 hat die typischen Eigenschaften eines heutigen EUCs. Auch wenn dass das erste nennenswerte EUC ist, ist es aus heutiger Sicht kaum benutzbar. Unergonomisch, schwach, viel zu kleiner Akku und somit kaum Brems- oder Beschleunigungs Möglichkeiten (siehe Leistung als Sicherheitesfeature). Trotzdem markierte dieses Gerät den Start des Sports, und definierte ihn somit. + auf den Markt. Doch mangelnde Leistung, Akkugröße und die Bauweise, + zusammen mit dem Design und dem Preis sorgten für einen + spektakulären Flop dieser Technik. Es gab schon 1930 erste + Prototypen und Einzelversuche, aber erst das SoloWheel im + Jahr 2010 hat die typischen Eigenschaften eines heutigen EUCs. Auch + wenn dass das erste nennenswerte EUC ist, ist es aus heutiger Sicht + kaum benutzbar. Unergonomisch, schwach, viel zu kleiner Akku und + somit kaum Brems- oder Beschleunigungs Möglichkeiten (siehe{" "} + Leistung als Sicherheitesfeature). Trotzdem + markierte dieses Gerät den Start des Sports, und definierte ihn + somit.

@@ -626,11 +1118,18 @@ function overview() { Inmotion - folgte daraufhin, und setzte den Standard für Qualität und Features. Erst Danach kam + folgte daraufhin, und setzte den Standard für Qualität und Features. + Erst Danach kam Gotway - auf dem Markt. Gotway änderte das Wesen der EUCs auf andere Art und vielleicht sogar mehr als Inmotion: sie brachten von vorneherein Leistungsstärkere Geräte raus. Es fehlte ihnen an gutem Design und an Qualität, sie sahen im inneren aus wie Hobby Projekte. Auch hat Gotway bis vor kurzem noch immer das gleiche schlechte Design für alle Geräte benutzt, wo hingegen Kingsong und Inmotion sichtlich mehr Gedanken in Design und Qualität steckten. + auf dem Markt. Gotway änderte das Wesen der EUCs auf andere Art und + vielleicht sogar mehr als Inmotion: sie brachten von vorneherein + Leistungsstärkere Geräte raus. Es fehlte ihnen an gutem Design und + an Qualität, sie sahen im inneren aus wie Hobby Projekte. Auch hat + Gotway bis vor kurzem noch immer das gleiche schlechte Design für + alle Geräte benutzt, wo hingegen Kingsong und Inmotion sichtlich + mehr Gedanken in Design und Qualität steckten.

@@ -640,27 +1139,71 @@ function overview() { Ninebot - kaufte Segway, und kam 2015 mit dem Ninebot One raus. Ein 250wh Gerät mit schicken LEDs und weißem Design. Danach kam ein Gerät nach dem anderen raus. Gotway produzierte immer größere und schnellere Geräte, Inmotion, Kingsong und Ninebot boten immer mehr Features und versuchten mit Gotway in Sachen Leistung mitzuhalten. 2019 kam das zuerst unbeliebte, später ikonische Ninebot Z10 heraus. 45kmh, 1100wh und ein absolut einmaliges Design trennt es auch heute noch von allen anderen Geräten. Aber es hatte viele Probleme, und leider war es das letzte EUC das Ninebot produzierte. Zu dem Zeitpunkt war Gotway schon bei 50kmh+ mit dem Monster und Nicola, auch die Akkus waren doppelt so groß. Gotway, heute genannt Begode, hat sich das Image der hohen Leistung und Geschwindigkeit aufgebaut. Viele nahmen die schlechte Verarbeitungsqualität und selten auch Akkubrände in Kauf, weil es einfach keine Alternative gab. Erst 2020 änderte sich - das langsam, als Inmotion und Kingsong beide 50kmh Geräte mit gutem Design veröffentlichten. Und beide Geräte änderten den Markt nachhaltig. + kaufte Segway, und kam 2015 mit dem Ninebot One raus. Ein + 250wh Gerät mit schicken LEDs und weißem Design. Danach kam ein + Gerät nach dem anderen raus. Gotway produzierte immer größere und + schnellere Geräte, Inmotion, Kingsong und Ninebot boten immer mehr + Features und versuchten mit Gotway in Sachen Leistung mitzuhalten.{" "} + 2019 kam das zuerst unbeliebte, später ikonische Ninebot Z10 + heraus. 45kmh, 1100wh und ein absolut einmaliges Design trennt es + auch heute noch von allen anderen Geräten. Aber es hatte viele + Probleme, und leider war es das letzte EUC das Ninebot produzierte. + Zu dem Zeitpunkt war Gotway schon bei 50kmh+ mit dem Monster + und Nicola, auch die Akkus waren doppelt so groß. Gotway, heute + genannt Begode, hat sich das Image der hohen Leistung und + Geschwindigkeit aufgebaut. Viele nahmen die schlechte + Verarbeitungsqualität und selten auch{" "} + Akkubrände in Kauf, weil es einfach keine + Alternative gab. Erst 2020 änderte sich das langsam, als + Inmotion und Kingsong beide 50kmh Geräte mit gutem Design + veröffentlichten. Und beide Geräte änderten den Markt nachhaltig.

- Inmotion und Kingsong haben beide relativ zeitnah die ersten Geräte mit Federung heraus gebracht. Kingsong entwarf das heute beliebte Schwingarm-Design, Inmotion entwickelte eine Luftkolben basierte Pedal Federung. Begode hat später beide Varianten kopiert, natürlich in erheblich schlechterer Form, und blieb letztlich beim Schwingarm-Design. Auch in diesem Jahr trat + Inmotion und Kingsong haben beide relativ zeitnah die ersten Geräte + mit Federung heraus gebracht. Kingsong entwarf das heute + beliebte Schwingarm-Design, Inmotion entwickelte eine Luftkolben + basierte Pedal Federung. Begode hat später beide Varianten kopiert, + natürlich in erheblich schlechterer Form, und blieb letztlich beim + Schwingarm-Design. Auch in diesem Jahr trat Veteran - (Lieperkim) auf den Markt, mit dem absoluten Bestseller Veteran Sherman. Allein dieses Gerät und die Videos darüber brachten eine ganze Welle an neuen Einradfahren auf den Markt, einfach weil es das erste gut gebaute und gleichzeitig super schnelle Gerät war. Endlich war man nicht mehr auf die mindere Qualität von Begode angewiesen, sondern konnte stabil auf 70kmh cruisen und musste sich keine sorgen machen, das bei einem Crash die Batterien aus dem Gehäuse flogen. + (Lieperkim) auf den Markt, mit dem absoluten Bestseller Veteran + Sherman. Allein dieses Gerät und die{" "} + Videos darüber brachten + eine ganze Welle an neuen Einradfahren auf den Markt, einfach weil + es das erste gut gebaute und gleichzeitig super schnelle Gerät war. + Endlich war man nicht mehr auf die mindere Qualität von Begode + angewiesen, sondern konnte stabil auf 70kmh cruisen und + musste sich keine sorgen machen, das bei einem Crash die Batterien + aus dem Gehäuse flogen.

- 2022 ist das Jahr der meisten Neuzugänge, alleine Begode hat mindestens 7 Geräte veröffentlicht oder angekündigt, 6 davon mit Federung. Inmotion hat das V13 angekündigt und Kingsong hat mit dem S22 einen Verkaufsschlager unter die Leute gebracht. Veteran hat mit dem Sherman S nun ebenfalls ein Suspension Einrad vorgestellt, welches vorraussichtlich neue Standards in Robustheit und Qualität setzen wird. + 2022 ist das Jahr der meisten Neuzugänge, alleine Begode hat + mindestens 7 Geräte veröffentlicht oder angekündigt, 6 davon mit + Federung. Inmotion hat das V13 angekündigt und Kingsong hat mit dem + S22 einen Verkaufsschlager unter die Leute gebracht. Veteran hat mit + dem Sherman S nun ebenfalls ein Suspension Einrad vorgestellt, + welches vorraussichtlich neue Standards in Robustheit und Qualität + setzen wird.

- Wie an der bisherigen Geschichte unschwer zu erkennen ist, entwickeln sich die Firmen und Einräder immer rasanter. Es brauchte fast 6 Jahre nach dem ersten Einrad bis überhaubt ernst zu nehmende Geräte auf den Markt kamen. Dann nur noch 4 jahre um von wackeligen 35kmh auf stabile 70kmh und 100km Reichweite zu kommen. Und in den letzten 2 Jahren gab es so viele Neuerungen; Metall Konstruktionen, Federungen, Smart BMS's, Bildschirme, Spiked Pedals als Standard, brauchbare Pads als Standard, Wasserfestigkeit, 100kmh top Speed, 240km reichweite, fast 5000wh Akkus... + Wie an der bisherigen Geschichte unschwer zu erkennen ist,{" "} + entwickeln sich die Firmen und Einräder immer rasanter + . Es brauchte fast 6 Jahre nach dem ersten Einrad bis überhaubt + ernst zu nehmende Geräte auf den Markt kamen. Dann nur noch 4 jahre + um von wackeligen 35kmh auf stabile 70kmh und 100km Reichweite zu + kommen. Und in den letzten 2 Jahren gab es so viele Neuerungen; + Metall Konstruktionen, Federungen, Smart BMS's, Bildschirme, Spiked + Pedals als Standard, brauchbare Pads als + Standard, Wasserfestigkeit, 100kmh top Speed, 240km reichweite, fast + 5000wh Akkus...

@@ -668,10 +1211,16 @@ function overview() {

Liste der Geräte

- Hier werden nur die relevantesten und bekanntesten Geräte aufgelistet, eine vollständige sortierbare Übersicht ist hier. + Hier werden nur die relevantesten und bekanntesten Geräte + aufgelistet, eine vollständige sortierbare Übersicht ist{" "} + hier.

- + diff --git a/src/routes/en/KSS22.tsx b/src/routes/en/KSS22.tsx index 8a2c795..40a4ce3 100644 --- a/src/routes/en/KSS22.tsx +++ b/src/routes/en/KSS22.tsx @@ -21,13 +21,41 @@ function KSS22() {

Kingsong S22

-

The Kingsong S22, formerly S20, is a clearly off-road and trail oriented unicycle. Among other things, it has 130mm suspension travel and a robust metal construction, which makes it ideal for big jumps and high drops.

+

+ The Kingsong S22, formerly S20, is a clearly off-road and trail + oriented unicycle. Among other things, it has 130mm suspension + travel and a robust metal construction, which makes it ideal for + big jumps and high drops. +

-

It is the successor to the smaller S18, but with double the battery and 50% more motor power, such as a top speed of 70 instead of 50 km/h. The freespin is up to 114 km/h, so ideal for longer jumps where the tire is spinning up in the air.

+

+ It is the successor to the smaller S18, but with double the + battery and 50% more motor power, such as a top speed of 70 + instead of 50 km/h. The freespin is up to 114 km/h, so ideal for + longer jumps where the tire is spinning up in the air. +

-

It also comes with a seat, pretty good jump- and power pads and spiked pedals. Plus a sturdy, albeit oddly placed and somewhat short trolley handle, as well as a sturdy kickstand and height-adjustable bright lights. It's waterproof, but not submersible, and best of all, it's super easy to work with because the device has a very modular design. The tire can theoretically be removed with just 2 screws

+

+ It also comes with a seat, pretty good jump- and power pads and + spiked pedals. Plus a sturdy, albeit oddly placed and somewhat + short trolley handle, as well as a sturdy kickstand and + height-adjustable bright lights. It's waterproof, but not + submersible, and best of all, it's super easy to work with because + the device has a very modular design. The tire can theoretically + be removed with just 2 screws +

-

While all of this is true, many problems have unfortunately arisen with this highly anticipated and hyped wheel. There were motor problems with the first devices, which led to cut-offs and burned the motherboard. Also, the slider design is very clumsy and gets harder and harder to move over time. Many S22 buyers had to wait a long time for replacement motors, such as upgrading the sliders for €100 to €200. However, with the upgrades, it is currently the best suspension unicycle on the market. (Until the Veteran Sherman S goes on sale.)

+

+ While all of this is true, many problems have unfortunately arisen + with this highly anticipated and hyped wheel. There were motor + problems with the first devices, which led to cut-offs and burned + the motherboard. Also, the slider design is very clumsy and gets + harder and harder to move over time. Many S22 buyers had to wait a + long time for replacement motors, such as upgrading the sliders + for €100 to €200. However, with the upgrades, it is currently the + best suspension unicycle on the market. (Until the Veteran Sherman + S goes on sale.) +

diff --git a/src/routes/en/index.tsx b/src/routes/en/index.tsx index a70fc57..7a972c1 100644 --- a/src/routes/en/index.tsx +++ b/src/routes/en/index.tsx @@ -1,4 +1,8 @@ -import { faArrowUpRightFromSquare, faBookOpen, faGlobe } from "@fortawesome/pro-regular-svg-icons"; +import { + faArrowUpRightFromSquare, + faBookOpen, + faGlobe, +} from "@fortawesome/pro-regular-svg-icons"; import { A, Link, Title } from "solid-start"; import { FontAwesomeIcon } from "~/components/FontAwesomeIcon"; @@ -17,13 +21,19 @@ function StartENG() {

Wanna try something new?

-

Flexible - Modern - Faster then law it self. These are modern electric unicycles:

+

+ Flexible - Modern - Faster then law it self. These are modern electric + unicycles: +

-

From 0 auf 50kmh in 3s, 100kmh top speed and 230km range make these devices the ultimate sport.

+

+ From 0 auf 50kmh in 3s, 100kmh top speed and 230km range make these + devices the ultimate sport. +

diff --git a/src/routes/en/manufacturers.tsx b/src/routes/en/manufacturers.tsx index 456cbb5..37bd5ab 100644 --- a/src/routes/en/manufacturers.tsx +++ b/src/routes/en/manufacturers.tsx @@ -76,14 +76,31 @@ function Manufacturers() { */}

History and explonation of manufacturers

-

There are/were many manufacturers of electric unicycles, only the larger and more important ones are described here. In addition to those, there are Airwheel, IPS, Solowheel, Rockwheel, Firewheel, ESWAY, Fosjoas, MonoRover, F-wheel, among others. Unfortunately, because the market is so small, there is little readily available information about company sales or market share.

+

+ There are/were many manufacturers of electric unicycles, only the + larger and more important ones are described here. In addition to + those, there are Airwheel, IPS, Solowheel, Rockwheel, Firewheel, + ESWAY, Fosjoas, MonoRover, F-wheel, among others. Unfortunately, + because the market is so small, there is little readily available + information about company sales or market share. +

Ninebot

-

Ninebot is known to most as a sooter manufacturer, some may also know their electric shoes or Segway-like devices with short handlebars. Ninebot is the largest and most versatile company of those listed here. They experiment a lot and have had a lot of success with the standard scooters, but unfortunately gave up on the unicycles. So today there are only a few models, all of them are rather beginner devices to lower middle class. Nevertheless, Ninebot has left an iconic device on the market, especially with the Ninebot Z10, which stands out with its extraordinary design and quality.

+

+ Ninebot is known to most as a sooter manufacturer, some may also + know their electric shoes or Segway-like devices with short + handlebars. Ninebot is the largest and most versatile company of + those listed here. They experiment a lot and have had a lot of + success with the standard scooters, but unfortunately gave up on the + unicycles. So today there are only a few models, all of them are + rather beginner devices to lower middle class. Nevertheless, Ninebot + has left an iconic device on the market, especially with the Ninebot + Z10, which stands out with its extraordinary design and quality. +

Inmotion @@ -91,7 +108,19 @@ function Manufacturers() {

- Inmotion is the second largest manufacturer of those listed here. Also big in the standard scooter segment, Inmotion also has a large if not the largest market share of EUCs. Above all, the Inmotion V8 is very popular as a beginner and commuter device and therefore has high sales figures. It was also Inmotion that launched the extremely professional looking first Suspension EUC V11. Inmotion generally stands for quality, design and safety thanks to good Tiltback and high safety margin. But all this in exchange for performance. Until recently, inmotion was synonymous with weak and little range. That changed when the V12 came out and soon the V13 will come out. Now we are hoping for a safe and well-designed 90+kmh with a high safety margin, and should the V13 perform as hoped it will change the company's image. + Inmotion is the second largest manufacturer of those listed here. + Also big in the standard scooter segment, Inmotion also has a large + if not the largest market share of EUCs. Above all, the Inmotion V8 + is very popular as a beginner and commuter device and therefore has + high sales figures. It was also Inmotion that launched the extremely + professional looking first Suspension EUC V11. Inmotion generally + stands for quality, design and safety thanks to good{" "} + Tiltback and high safety margin. But all + this in exchange for performance. Until recently, inmotion was + synonymous with weak and little range. That changed when the V12 + came out and soon the V13 will come out. Now we are hoping for a + safe and well-designed 90+kmh with a high safety margin, and should + the V13 perform as hoped it will change the company's image.

@@ -100,7 +129,18 @@ function Manufacturers() {

- Kingsong is very similar to Inmotion, only smaller and without the big scooter and e-bike market behind it. Quality and design were the characteristics, as well as durability and robustness. With the S18, Kingsong was also one of the first companies to introduce suspension for EUCs. Kingsong pioneered the swing arm design for suspension that is widely used today. But with the S18, and later the S20, the image took some damage. Both devices had big problems at the beginning, up to the burning of the S20 prototype. Despite this, both devices were a great success, and the bugs were mostly fixed. Kingsong is also known for their extremely good trolley handle, like the one on the KS 16X and previous models. + Kingsong is very similar to Inmotion, only smaller and without the + big scooter and e-bike market behind it. Quality and design were the + characteristics, as well as durability and robustness. With the S18, + Kingsong was also one of the first companies to introduce suspension + for EUCs. Kingsong pioneered the swing arm design for suspension + that is widely used today. But with the S18, and later the S20, the + image took some damage. Both devices had big problems at the + beginning, up to the burning of the S20 prototype. Despite this, + both devices were a great success, and the bugs were mostly fixed. + Kingsong is also known for their extremely good{" "} + trolley handle, like the one on the KS 16X + and previous models.

@@ -109,29 +149,89 @@ function Manufacturers() {

- Gotway, or Begode as they call themselves today, is difficult to describe and classify. Many opinions and controversies. The company was founded after all of the above were, and as you can read in the History chapter, they had the focus on performance right away. The design and the quality were terrible in the beginning and actually until recently. But they were the first to be able to hit 40kmh, then 50, then 60, then 70, then 80 and now 100kmh, they're the ones who pack 4800wh into one device, no matter what it looks like or how heavy it is. Gotway has actively pushed the boundaries of the sport and unicycles. Whenever a new, faster device came out, it was said, oh who rides 40kmh on a unicycle anyway. Today 40kmh is the medium speed and 70+ is expected. It is also typical of Begode to let their own devices quickly become obsolete with up to 7+ new devices a year. Kingsong and Inmotion usually release 1 device per year. + Gotway, or Begode as they call themselves today, is difficult to + describe and classify. Many opinions and controversies. The company + was founded after all of the above were, and as you can read in the{" "} + History chapter, they had the focus on + performance right away. The design and the quality were terrible in + the beginning and actually until recently. But they were the first + to be able to hit 40kmh, then 50, then 60, then 70, then 80 and now + 100kmh, they're the ones who pack 4800wh into one + device, no matter what it looks like or how heavy it is. Gotway has + actively pushed the boundaries of the sport and unicycles. Whenever + a new, faster device came out, it was said, oh who rides 40kmh on a + unicycle anyway. Today 40kmh is the medium speed and 70+ is + expected. It is also typical of Begode to let their own devices + quickly become obsolete with up to 7+ new devices a year. Kingsong + and Inmotion usually release 1 device per year.

- Due to the lack of quality, the lack of safety measures and minimal BMSs that Gotway installs, battery fires happened all too often in the past, which Begode is also known for throughout the community. There is also a lack of communication with the community and a lack of reaction to productions defects. Nevertheless, Begode was the first company to use spiked pedals as standard, which was a request from the community and which are the best included default spiked pedals to date. All other companies followed suit with worse versions, which is what is normally expected of Begode. Begode were the first to move from 84V to 100V, and more recently to 134V, which provides unprecedented power. Again, the other manufacturers are slowly catching up and still have weaker devices. The new generation of Begode has better, almost good design and in some aspects also better suspension than - the competition, nevertheless the (completely exposed) battery mounts break off easily and you have to buy DIY solutions to continue riding (for an almost 5000€ Device). + Due to the lack of quality, the lack of safety measures and minimal{" "} + BMSs that Gotway installs,{" "} + battery fires happened all too often in the + past, which Begode is also known for throughout the community. There + is also a lack of communication with the community and a lack of + reaction to productions defects. Nevertheless, Begode was the first + company to use spiked pedals as + standard, which was a request from the community and which are the + best included default spiked pedals to + date. All other companies followed suit with worse versions, which + is what is normally expected of Begode. Begode were the first to + move from 84V to 100V, and more recently to 134V, which provides + unprecedented power. Again, the other manufacturers are slowly + catching up and still have weaker devices. The new generation of + Begode has better, almost good design and in some aspects also + better suspension than the competition, nevertheless the (completely + exposed) battery mounts break off easily and you have to buy DIY + solutions to continue riding (for an almost 5000€ Device).

-

It goes on and on, many swear by Begode, many would never buy one. In the end everyone has to decide for themselves.

+

+ It goes on and on, many swear by Begode, many would never buy one. + In the end everyone has to decide for themselves. +

- Leaperkim/Veteran + Leaperkim/Veteran{" "} +

- Veteran is the favorite for many. Comprised of ex-Gotway engineers and employees who disagreed with Gotway's decisions, Veteran released the Veteran Sherman in 2020 as its first device. And it hit like a bomb, it was a complete success. The robust, almost military design together with the high stable speed and the long range made it very popular even today and even outside the EUC community. This device and the content alone brought a whole wave of new riders to the sport. Veteran was quickly stored in people's minds as robust, reliable and fast. When the new Veteran Abrahams model with bigger tires was announced, the hype was huge. But when it came out there were big disappointments, the device failed in every aspect and was also very prone to cut-outs. After that the image was damaged. Only a year later the veteran Sherman Max came out, which became the successor to the normal Sherman. + Veteran is the favorite for many. Comprised of ex-Gotway engineers + and employees who disagreed with Gotway's decisions, Veteran + released the Veteran Sherman in 2020 as its first device. And it hit + like a bomb, it was a complete success. The robust, almost military + design together with the high stable speed and the long range made + it very popular even today and even outside the EUC community. This + device and the content alone brought a whole wave of new riders to + the sport. Veteran was quickly stored in people's minds as robust, + reliable and fast. When the new Veteran Abrahams model with bigger + tires was announced, the hype was huge. But when it came out there + were big disappointments, the device failed in every aspect and was + also very prone to cut-outs. After that the + image was damaged. Only a year later the veteran Sherman Max came + out, which became the successor to the normal Sherman.

-

Veteran seems to have learned from their mistakes with the Abrahams, as they have introduced another promising device with the latest release of the Sherman S. All metal construction, world class suspension, large battery and enough power.

+

+ Veteran seems to have learned from their mistakes with the Abrahams, + as they have introduced another promising device with the latest + release of the Sherman S. All metal construction, world class + suspension, large battery and enough power. +

Extreme Bull

-

With Extreme Bull, not everything is entirely clear. It seems to be a sub-brand of Begode, which even more brazenly copies other devices and offers them cheaper than Begode does. Extreme Bull devices are rarely seen riding around, and many resellers don't even offer them. But, as of recently there are rumors about a Sherman S copy called Commander pro. should the rumors be true, and should the device deliver whats promised, Extreme Bull might be on the rise.

+

+ With Extreme Bull, not everything is entirely clear. It seems to be + a sub-brand of Begode, which even more brazenly copies other devices + and offers them cheaper than Begode does. Extreme Bull devices are + rarely seen riding around, and many resellers don't even offer them. + But, as of recently there are rumors about a Sherman S copy called + Commander pro. should the rumors be true, and should the device + deliver whats promised, Extreme Bull might be on the rise. +

diff --git a/src/routes/en/overview.tsx b/src/routes/en/overview.tsx index 9a202ce..de34549 100644 --- a/src/routes/en/overview.tsx +++ b/src/routes/en/overview.tsx @@ -135,17 +135,29 @@ function Overview() {

Before you read:

Here are a few things before you start to read.

-

First, this side looks best opened on PC at fullscreen, because then some extra photos and videos will appear which are hidden otherwise. Mouse hover effects also only appear on PC.

-

- Second, you may not know every word written here, which is why there is a glossary and you can click on certian words to find a definition. + First, this side looks best opened on PC at fullscreen, because then + some extra photos and videos will appear which are hidden otherwise. + Mouse hover effects also only appear on PC.

- Third, this side is very long and takes a deep dive into a lot of topics. Reading everything will take around 30 minutes. Therefore, this side is devided into sections, callable via the navigation bar at the side. + Second, you may not know every word written here, which is why there + is a glossary and you can click on certian + words to find a definition.

-

Lastly, to zoom into pictures on pc, just hover your mouse over them, keep mouse in the middle to avoid zooming.

+

+ Third, this side is very long and takes a deep dive into a lot of + topics. Reading everything will take around 30 minutes.{" "} + Therefore, this side is devided into sections, + callable via the navigation bar at the side. +

+ +

+ Lastly, to zoom into pictures on pc, just hover your mouse over + them, keep mouse in the middle to avoid zooming. +

{/* @@ -159,7 +171,14 @@ function Overview() {

- EUC stands for ElectricUniCycle. In simplest terms its a battery powered motor surrounded by a motorcycle tire, kept upright with gyroskopes. The principle is similar to a segway, but more on that in chapter technical functionality. You stand on two sidemounted pedals, facing forward with the wheel inbetween your legs. To accelerate you lean forward, to break you lean back. Steering is similar to a normal unicycle or bike. + EUC stands for ElectricUniCycle. In simplest + terms its a battery powered motor surrounded by a motorcycle tire, + kept upright with gyroskopes. The principle is similar to a segway, + but more on that in chapter{" "} + technical functionality. You stand on two + sidemounted pedals, facing forward with the wheel inbetween your + legs. To accelerate you lean forward, to break you lean back. + Steering is similar to a normal unicycle or bike.

@@ -176,36 +195,89 @@ function Overview() {
-

Many people ask, why not just ride an E-bike or E-scooter? Well, there are multiple reasons:

-

- The riding experience is absolutly astonishing and not comparable with anything else. It becomes a part of your self, an extension of your legs, and it feels absolutly natural to ride. At some point, once you've ridden long enough, handlebars just feel weird and out of place, unessecary and uncomfortable. Just think about inline-skating. You forget that they are there, likewise you forget that you are riding on an EUC, because they become a part of you. -

- -

Contradictionary to what many people first think when they see an EUC, you dont need to constantly balance and be super focused on normal ground. It happends automatically, you just lean where you want to go and the rest follows.

- -

- This naturalness is even more pronounced when accelerating and decelerating. You are not pushed or pulled by anything like with all other modes of transportation. Instead, you accelerate synchronously with the unicycle as if you were flying. And you can do it quickly too if you want, you have extremely precise speed and acceleration controls, in contrast to some scooters. + Many people ask, why not just ride an E-bike or E-scooter? Well, + there are multiple reasons:

- Another reason is the form factor combined with the performance. No other electric means of transport has so much power and range in such a small package. And it doesn't matter whether you're on the road or in the steepest forest. Electric unicycles can climb steep slopes of up to 50° where no scooter or e-bike can keep up (you can't even walk up there on foot). Depending on the device and skill, 10m wide jumps on MTB trails are doable, as are 2m high drops on flat ground. + The riding experience is absolutly astonishing and not + comparable with anything else. It becomes a part of your self, an + extension of your legs, and it feels absolutly natural to ride. At + some point, once you've ridden long enough, handlebars just feel + weird and out of place, unessecary and uncomfortable. Just think + about inline-skating. You forget that they are there, likewise you + forget that you are riding on an EUC, because they become a part of + you.

- A range of up to 230 km and a charging time of just 3 hours are unrivaled in the PEV (Personal Electric Vehicle) segment, where even some cheap electric cars are worse. They achieve this through minimal energy consumption and a large battery size, combined with very efficient motors and only one tire resistance instead of 2 or 4. And all this in the size of a suitcase or backpack. + Contradictionary to what many people first think when they see an + EUC, you dont need to constantly balance and be super focused on + normal ground. It happends automatically, you just lean where you + want to go and the rest follows.

- Another reason is also due to the form factor: it is super easy to travel with. Every current unicycle has a trolley handle, a pull-out handle similar to a suitcase. Since the device is selfbalancing, it's super easy to have it ride it self alongside you without any hassle. Whether on the train or on the bus, where you can get through yourself, the unicycle can also get through, as the pedals can be folded in to make it even narrower. It doesn't matter how much the device weighs, because unless there are stairs, it always keeps itself upright. + This naturalness is even more pronounced when accelerating + and decelerating. You are not pushed or pulled by anything like with + all other modes of transportation. Instead, you accelerate + synchronously with the unicycle as if you were flying. And you can + do it quickly too if you want, you have extremely precise speed and + acceleration controls, in contrast to some scooters.

- But this is not only very practical for travelling, but also in everyday life. You can carry it with you when you go shopping instead of having to chain it outside. No need to park your bike or worry about it being stolen. But the smaller devices in particular have another major advantage: they fit in a car, even in larger quantities. Now, if you want to take a trip to a nice place to ride a unicycle, you can just put them in the trunk, or even between your feet. That would be impossible with e-bikes or scooters. You can also be picked up from anywhere, or be dropped off anywhere and come back yourself. This is a blessing, especially for students or people who don't have or want a car. + Another reason is the form factor combined with the + performance. No other electric means of transport has so much power + and range in such a small package. And it doesn't matter whether + you're on the road or in the steepest forest. Electric unicycles can + climb steep slopes of up to 50° where no scooter or e-bike can keep + up (you can't even walk up there on foot). Depending on the device + and skill, 10m wide jumps on MTB trails are doable, as are 2m high + drops on flat ground. +

+ +

+ A range of up to 230 km and a charging time of just 3 hours + are unrivaled in the PEV (Personal Electric Vehicle) segment, where + even some cheap electric cars are worse. They achieve this through + minimal energy consumption and a large battery size, combined with + very efficient motors and only one tire resistance instead of 2 or + 4. And all this in the size of a suitcase or backpack. +

+ +

+ Another reason is also due to the form factor: it is super easy to{" "} + travel with. Every current unicycle has a{" "} + trolley handle, a pull-out handle similar to + a suitcase. Since the device is selfbalancing, it's super easy to + have it ride it self alongside you without any hassle. Whether on + the train or on the bus, where you can get through yourself, the + unicycle can also get through, as the pedals can be folded in to + make it even narrower. It doesn't matter how much the device weighs, + because unless there are stairs, it always keeps itself upright. +

+ +

+ But this is not only very practical for travelling, but also{" "} + in everyday life. You can carry it with you when you go + shopping instead of having to chain it outside. No need to park your + bike or worry about it being stolen. But the smaller devices in + particular have another major advantage: they fit in a car, even in + larger quantities. Now, if you want to take a trip to a nice place + to ride a unicycle, you can just put them in the trunk, or even + between your feet. That would be impossible with e-bikes or + scooters. You can also be picked up from anywhere, or be dropped off + anywhere and come back yourself. This is a blessing, especially for + students or people who don't have or want a car.

@@ -222,14 +294,41 @@ function Overview() { -

As described above, the unicycle has multiple tilt sensors, also called gyroscopes. Several of them are needed, for one as redundancy, and because it has to recognize all 3 directions of tilt. The motherboard takes this data, and outputs a corresponding amount of power to the motor.

-

- The battery provides the power, which can consist of up to 200 individual battery cells and runs on 84V/100V/126V/134V, depending on the device. These high voltages are achieved by connecting the batteries in series, while the number of parallels determines the maximum amperes. A device can have a 34s4p configuration, meaning 34 cells connected in series arranged in 4 parallel packs, together then 34*4 = 136 cells. A cell runs on max 4.2V and can give 10 to 30 amps depending on the model. So far, mostly high-capacity cells from LG have been used, but recently some high-discharge Samsung 40T cells have also been considered and implemented, which can deliver significantly more power long term and are therefore safer for high-performance devices. + As described above, the unicycle has multiple tilt sensors, also + called gyroscopes. Several of them are needed, for one as + redundancy, and because it has to recognize all 3 directions of + tilt. The motherboard takes this data, and outputs a corresponding + amount of power to the motor.

- Not enough parallels in a battery pack result in an unreliable power supply for the motor, as high power demands can lead to a voltage drop (voltage sag). This means that for the duratiob of high demand the battery cannot provide full power, which is very dangerous with a self-balancing device. Because of this, most devices have 4 or more parallels. In addition, most devices have 2 separate battery systems, so the driver can still stop safely incase one fails. The high voltage is necessary to enable the high speeds. The higher the voltage the motor runs at, the fewer amperes the motor needs to achieve the same power output. High amps require a more robust motherboard, thicker cables, and generate more heat. + The battery provides the power, which can consist + of up to 200 individual battery cells and runs on + 84V/100V/126V/134V, depending on the device. These high voltages are + achieved by connecting the batteries in series, while the number of + parallels determines the maximum amperes. A device can have a 34s4p + configuration, meaning 34 cells connected in series arranged in 4 + parallel packs, together then 34*4 = 136 cells. A cell runs on max + 4.2V and can give 10 to 30 amps depending on the model. So far, + mostly high-capacity cells from LG have been used, but recently some + high-discharge Samsung 40T cells have also been considered and + implemented, which can deliver significantly more power long term + and are therefore safer for high-performance devices. +

+ +

+ Not enough parallels in a battery pack result + in an unreliable power supply for the motor, as high power demands + can lead to a voltage drop (voltage sag). This means that for the + duratiob of high demand the battery cannot provide full power, which + is very dangerous with a self-balancing device. Because of this, + most devices have 4 or more parallels. In addition, most devices + have 2 separate battery systems, so the driver can still stop safely + incase one fails. The high voltage is necessary to enable the high + speeds. The higher the voltage the motor runs at, the fewer amperes + the motor needs to achieve the same power output. High amps require + a more robust motherboard, thicker cables, and generate more heat.

@@ -237,7 +336,13 @@ function Overview() { BMS {" "} - (Battery Management System), which ,dependant on the variant and quality, ensures the safety of the cells. If battery cells get overloaded, discharged or charged too much, they can in the best case lose capacity and in the worst case burst into flames. A good BMS is therefore essential for the safety and longevity of the device and the rider. More on this in the Battery Safety section. + (Battery Management System), which ,dependant on the variant and + quality, ensures the safety of the cells. If battery cells get + overloaded, discharged or charged too much, they can in the best + case lose capacity and in the worst case burst into flames. A good{" "} + BMS is therefore essential for the safety and + longevity of the device and the rider. More on this in the{" "} + Battery Safety section.

@@ -247,14 +352,39 @@ function Overview() {

- The motherboard consists of, among other things, the power input from the battery and charging socket, the three phasewires that connect the motor, MOSFETs and capacitors for current regulation and the tilt sensors, as well as sometimes a screen and a Bluetooth module. The power input from the battery usually runs via XT90 connectors, which are made for high currents. This current is distributed via the MOSFETs, between 6 and 42 of them depending on the device, to the 3 phases that the motor needs to run. Capacitors (between 4 and 18) deliver peak power, which would be too fast for the battery. So far the usual buildup for a motherboard. + The motherboard consists of, among other things, the power + input from the battery and charging socket, the three phasewires + that connect the motor,{" "} + + MOSFETs + {" "} + and capacitors for current regulation and the tilt sensors, as well + as sometimes a screen and a Bluetooth module. The power input from + the battery usually runs via XT90 connectors, which are made for + high currents. This current is distributed via the MOSFETs, between + 6 and 42 of them depending on the device, to the 3 phases that the + motor needs to run. Capacitors (between 4 and 18) deliver peak + power, which would be too fast for the battery. + So far the usual buildup for a motherboard.

- However, unicycles need more specialized boards, as they also have to enable strong recuperation. This means that while braking, the braking energy goes back into the battery and, in contrast to an electric car, to the full extent. The recuperation ability of a motherboard is decisive for the braking performance of an unicycle. It must therefore be possible to take back just as much current as can be put out, if not more. + However, unicycles need more specialized boards, as they also have + to enable strong recuperation. This means that while braking, + the braking energy goes back into the battery{" "} + and, in contrast to an electric car, to the full extent. The + recuperation ability of a motherboard is decisive for the braking + performance of an unicycle. It must therefore be possible to take + back just as much current as can be put out, if not more.

-

The screen and Bluetooth module are used, among other things, for displaying speed, music playback and information about the battery level and current power output. Some devices with a touchscreen can also adjust driving style and incline without a mobile phone app connection.

+

+ The screen and Bluetooth module are used, among other things, for + displaying speed, music playback and information about the battery + level and current power output. Some devices with a touchscreen can + also adjust driving style and incline without a mobile phone app + connection. +

@@ -263,22 +393,52 @@ function Overview() {

- The motor of a unicycle is a 3-phase hub motor, i.e. a motor whose outer part is also the tire. The exact functionality and explonation you can find here. This saves noisy chains, gears and space, but also requires more precise motor control and finer coils as well as magnets inside. The motors are equipped with hall sensors, sometimes 2 for safety, which communicate the exact position of the motor to the motherboard. There is a distinction between high speed (HS) and high torque (HT) motors. + The motor of a unicycle is a 3-phase hub motor, + i.e. a motor whose outer part is also the tire + . The exact functionality and explonation you can find{" "} + + here + + . This saves noisy chains, gears and space, but also requires more + precise motor control and finer coils as well as magnets inside. The + motors are equipped with hall sensors, sometimes 2 for safety, which + communicate the exact position of the motor to the motherboard. + There is a distinction between high speed (HS) and high torque (HT) + motors.

- High Speed motors run faster and more efficiently at speed (up to 90kmh at 100v), but have very high energy consumption and less power at low speeds. The coils and magnets are larger, therefore you can hear the motors steps grumbling at slow speed. + High Speed motors run faster and more efficiently at speed + (up to 90kmh at 100v), but have very high energy consumption and + less power at low speeds. The coils and magnets are larger, + therefore you can hear the motors steps grumbling at slow speed.

- High Torque motors have very high torque (130Nm-300Nm), are very efficient at low speed and feel considerably smoother. On the other hand, they usually do not reach higher speeds then around 65kmh at 100v, and lose performance with increasing speed. + High Torque motors have very high torque (130Nm-300Nm), are + very efficient at low speed and feel considerably smoother. On the + other hand, they usually do not reach higher speeds then around + 65kmh at 100v, and lose performance with increasing speed.

- Since the introduction of 126v and 134v systems this is a bit more unclear, so that now a HT motor at 134v can also reach 92kmh and still have enough torque to drive up almost 50° steep walls. We will soon see what a HS motor at 134v can achieve. Most of the time the battery and the motherboard are the limiting factor, the motors could do more in most cases. Thats why Gotway/Begode has been using the same 2 motors for years now, only increasing battery performance and operating voltage. + Since the introduction of 126v and 134v systems this is a bit + more unclear, so that now a HT motor at 134v can also reach 92kmh + and still have enough torque to drive up almost 50° steep walls. We + will soon see what a HS motor at 134v can achieve. Most of the time + the battery and the motherboard are the limiting factor, the motors + could do more in most cases. Thats why{" "} + Gotway/Begode has been using the same 2 motors + for years now, only increasing battery performance and operating + voltage.

-

The interaction of all these components results in an extremely powerful, small and fast device, which accelerates from 0 to 50kmh in 3 seconds and can reach up to 90kmh, climbs 50° steep walls and still fits under the table.

+

+ The interaction of all these components results in an extremely + powerful, small and fast device, which accelerates from 0 to 50kmh + in 3 seconds and can reach up to 90kmh, climbs 50° steep walls and + still fits under the table. +

{/* @@ -295,98 +455,146 @@ function Overview() { */}

- Tilt-back: The device's pedals tilt backwards to slow the rider down. Used when the battery is low or when the power demand is too high, to protect the electronics. + Tilt-back: The device's pedals tilt backwards + to slow the rider down. Used when the battery is low or when the + power demand is too high, to protect the electronics.

- Pedal Dip: The pedals dip forwards, the device cannot maintain the requested power and the pedals suddenly tilt forward (or backward under heavy braking). In most cases, however, the pedals come up again immediately, so that the ride can continue undisturbed (implies necessary skill). + Pedal Dip: The pedals dip forwards, the + device cannot maintain the requested power and the pedals suddenly + tilt forward (or backward under heavy braking). In most cases, + however, the pedals come up again immediately, so that the ride + can continue undisturbed (implies necessary skill).

- Pedal-angle: Angle in which the pedals are mounted to the device, seen from the frontview. A steeper angle provides more grip when cornering, but can also become uncomfortable for longer rides. + Pedal-angle: Angle in which the pedals are mounted to the + device, seen from the frontview. A steeper angle provides more + grip when cornering, but can also become uncomfortable for longer + rides.

- Spiked-pedals: Spikes on the pedals that give shoes more grip. Similar to mountain bike pedals, there are usually screw-in pointed metal pins that grip into the shoe to prevent accidental slipping. Is used today instead of sandpaper, as it offers an excellent grip even in wet and muddy conditions. Example + Spiked-pedals: Spikes on the pedals that + give shoes more grip. Similar to mountain bike pedals, there are + usually screw-in pointed metal pins that grip into the shoe to + prevent accidental slipping. Is used today instead of sandpaper, + as it offers an excellent grip even in wet and muddy conditions.{" "} + Example

- Pads: parts made of plastic or foam that are mounted on the side of the device, usually printed from TPU and PLA and fastened with large, strong Velcro. They are necessary for better control and handling, especially for heavy and fast unicycles. They are divided into 2 types, many are combined together in one set. + Pads: parts made of plastic or foam that are + mounted on the side of the device, usually printed from TPU and + PLA and fastened with large, strong Velcro. They are necessary for + better control and handling, especially for heavy and fast + unicycles. They are divided into 2 types, many are combined + together in one set.

- Power Pads: have contact with the shin and the calves, are used for better acceleration and braking. Essential for heavy EUCs with high pedals. + Power Pads: have contact with the shin and the calves, are + used for better acceleration and braking. Essential for heavy EUCs + with high pedals.

- Jump Pads: have contact with the foot and verse, used for jumping and safety. In case of an unexpected bump in the road, they will hold your foot so you don't fall off the device. But they might cause more injury in the case of a crash, because you cant get off quick enough + Jump Pads: have contact with the foot and verse, used for + jumping and safety. In case of an unexpected bump in the road, + they will hold your foot so you don't fall off the device. But + they might cause more injury in the case of a crash, because you + cant get off quick enough

- Wobbles: describes the unintentional wobbling of the device at higher speeds. More on this here + Wobbles: describes the unintentional wobbling of the device + at higher speeds. More on this here

- Trolley Handle: an extendable handle for pushing the device, similar to a suitcase. + Trolley Handle: an extendable handle for + pushing the device, similar to a suitcase.

- Kill-Switch: a button under the handle that shuts off the motor. Ensures that the motor doesnt rev up when lifting. + Kill-Switch: a button under the handle that shuts off the + motor. Ensures that the motor doesnt rev up when lifting.

- Cut-off /Cut-out: Sudden shutting off of the device while riding, see chapter Cut-out. + Cut-off /Cut-out: Sudden shutting off of the device while + riding, see chapter Cut-out.

- HS Motor: High Speed motor, see chapter Motor. + HS Motor: High Speed motor, see chapter{" "} + Motor.

- HT Motor: High Torque motor, see chapter Motor. + HT Motor: High Torque motor, see chapter{" "} + Motor.

- W: Watt, power specification, shows how much power the device can hold continuously. 3000W corresponds to 4 hp (an e-bike has a maximum of 250w). Not to be confused with + W: Watt, power specification, shows how much power the + device can hold continuously. 3000W corresponds to 4 hp (an e-bike + has a maximum of 250w). Not to be confused with

- Peak Watt: Maximum power that the device can reach for a very short time. + Peak Watt: Maximum power that the device can reach for a + very short time.

- Wh: Watt hours, energy storage information, shows how much energy the battery can store. 3000wh means the battery could give 3000w for over an hour, or 1500w for 2 hours etc. + Wh: Watt hours, energy storage information, shows + how much energy the battery can store. 3000wh + means the battery could give 3000w for over an hour, or 1500w for + 2 hours etc.

- BMS: stands for Battery Management System, explained here + BMS: stands for Battery Management System,{" "} + explained here

- Voltage sag: Voltage drop, the battery loses voltage for a short period of time under high load, which increases the amps flowing when the same power is requested. + Voltage sag: Voltage drop, the battery loses voltage for a + short period of time under high load, which increases the amps + flowing when the same power is requested.

- Freespin: Maximum spin speed the motor can reach when lifting the device. Calculate minus 20 km/h to get approximately the reachable top speed. + Freespin: Maximum spin speed the motor can reach when + lifting the device. Calculate minus 20 km/h to get approximately + the reachable top speed.

- 16inch: describes the tire size, in this case 16 inches (40cm) in diameter. Small diameters are agile and have a quick response, large diameters (up to 24inch, 60cm) feel heavy and sluggish but are significantly more stable at speed. + 16inch: describes the tire size, in this case 16 inches + (40cm) in diameter. Small diameters are agile and have a quick + response, large diameters (up to 24inch, 60cm) feel heavy and + sluggish but are significantly more stable at speed.

- Charging Amps: The maximum amps that the device can charge with. Most new devices charge with a maximum of 10 amps, i.e. 10*100 or 10*134 watts. The charging time is calculated as follows: capacity/volt/charging ampere. 3300wh:126v:10A = 2.6h. + Charging Amps: The maximum amps that the device can charge + with. Most new devices charge with a maximum of 10 amps, i.e. + 10*100 or 10*134 watts. The charging time is calculated as + follows: capacity/volt/charging ampere. 3300wh:126v:10A = 2.6h.

@@ -396,7 +604,14 @@ function Overview() { */}

Safety

-

The second most common question is usually whether you don't just fall off and whether it's safe at all. The short answer: yes it is. While there are risks, as with any mode of transportation, they are much smaller and less important than one might initially assume. Nevertheless, a few safety-related aspects have arisen over the years, which are further explained here:

+

+ The second most common question is usually whether you don't just + fall off and whether it's safe at all. The short answer: yes it is. + While there are risks, as with any mode of transportation, they are + much smaller and less important than one might initially assume. + Nevertheless, a few safety-related aspects have arisen over the + years, which are further explained here: +

{/* @@ -411,18 +626,51 @@ function Overview() {

- Any EUC YouTuber and experienced rider will tell you that protective gear is essential. Depending on the speed, protective equipment definitely includes hand and kneeguards like the famous Leatt dual axis knee guards. At below 30kmh, i.e. very small devices, you can also ride without equipment if necessary. It's not something people like to see, but if you're a bit sporty, you can just outrun every crash. Something that is not possible with bicycles. + Any EUC YouTuber and experienced rider will tell you that protective + gear is essential. Depending on the speed, protective equipment + definitely includes hand and kneeguards like the famous{" "} + + Leatt dual axis knee guards + + . At below 30kmh, i.e. very small devices, you can also ride + without equipment if necessary. It's not something people like to + see, but if you're a bit sporty, you can just outrun every crash. + Something that is not possible with bicycles.

- At higher speeds (above 30kmh) a helmet should be worn, preferably a full-face helmet. An MTB helmet is sufficient for speeds up to 60 km/h, or one from the motocross sector. Elbow and shoulder protection should also be considered. The LazyRolling jackets are popular here, as they all have built-in protectors and usually also offer good visibility at night. For the helmets, the TSG Pass and recently the Predator DH6-X are very popular because of the high field of view, small weight and stylish look. At speeds of 80 to 100kmh you should think about motorcycle gear as the items mentioned above are not built for these speeds. + At higher speeds (above 30kmh) a helmet should be worn, + preferably a full-face helmet. An MTB helmet is sufficient for + speeds up to 60 km/h, or one from the motocross sector. Elbow and + shoulder protection should also be considered. The{" "} + LazyRolling jackets are + popular here, as they all have built-in protectors and usually also + offer good visibility at night. For the helmets, the{" "} + + TSG Pass + {" "} + and recently the{" "} + + Predator DH6-X + {" "} + are very popular because of the high field of view, small weight and + stylish look. At speeds of 80 to 100kmh you should think + about motorcycle gear as the items mentioned above are not built for + these speeds.

Generally 2 things apply:
- The best gear is the one you wear. This means that no matter how good your gear is, it only works if you actually wear it. It has to be comfortable and you have to feel good in it.
- And: Dress for the slide, not the ride. This states that you should always dress appropriately for the worst-case scenario. For example, on an Inmotion V8 with a top speed of 28kmh, you should not wear full motorcycle gear as it will limit your vision and would be far too much for the situation. But you also don't wear a bike helmet on a Master Pro with 100kmh. + The best gear is the one you wear. This means that no matter how + good your gear is, it only works if you actually wear it. It has to + be comfortable and you have to feel good in it.
+ And: Dress for the slide, not the ride. This states that you should + always dress appropriately for the worst-case scenario. For example, + on an Inmotion V8 with a top speed of 28kmh, you should not wear + full motorcycle gear as it will limit your vision and would be far + too much for the situation. But you also don't wear a bike helmet on + a Master Pro with 100kmh.

@@ -439,27 +687,73 @@ function Overview() {
-

Cut-off's are the largest source of accidents the rider is mostly not responsible for. A cut-off or cut-out means that the device switches off in the middle of the ride and the driver jumps off in the best case, and in the worst case slams directly into the asphalt. There are many reasons for this, here are a few examples:

-

- When overloaded, older or poorly built devices simply shut off, either because they burned out or because the electronic is protecting itselve from burning out. Overloading happens when you climb steep paths, when you hit a big hump in the road at high speed, or when you accelerate again close to the top speed. Of course, this behavior has not gone unnoticed, which is why manufacturers have incorporated techniques to avoid overload induced cut-off. + Cut-off's are the largest source of accidents the rider is mostly + not responsible for. A cut-off or cut-out means that the device + switches off in the middle of the ride and the driver jumps off in + the best case, and in the worst case slams directly into the + asphalt. There are many reasons for this, here are a few examples:

- Almost all devices emit a loud beeping sound when they are close to the load limit to warn the driver. Many also use tilt-back to keep riders below top speed, which works very effectively. It also happens more and more frequently that the motor is only switched off for a very short time in the event of an overload, in order to protect the electronics. This then causes a pedal dip, and in most cases the ride can be continued normally. -

- -

Motherboards are now so robust and power output is so high that overload induced cut-outs are rare, and then only when the rider is driving extremely aggressively or there was something wrong with the device beforehand, like in this example video right.

- -

- Another reason, which mostly affects the newest devices (usually devices from the first batch), are software bugs or faulty hardware. This reason for cut-outs is the scariest because it can just happen. Regardless of the speed and workload. A well-known example here was the Inmotion V12 cut-outs, in which the built-in MOSFETs were faulty and thus led to cut-offs in many devices. In the devices produced later, such problems are usually eliminated. + When overloaded, older or poorly built devices simply shut + off, either because they burned out or because the electronic is + protecting itselve from burning out. Overloading happens when you + climb steep paths, when you hit a big hump in the road at high + speed, or when you accelerate again close to the top speed. Of + course, this behavior has not gone unnoticed, which is why + manufacturers have incorporated techniques to avoid overload induced + cut-off.

- The final example here is a low battery. When the battery is low, the device no longer runs at the full 100.8V, but rather around 80V. If a lot of power is now required, there will be a voltage drop as described in the Battery chapter. If the voltage falls below the minimum, the electronics switch off. Modern devices limit the top speed when the battery level drops, but in particular some Gotway devices dont do this. This causes riders to demand high performance despite a low battery level, and thus not only damage their battery in the long term, but also damage themselves in the short term as a result of a cut-off. + Almost all devices emit a loud beeping sound when they are close to + the load limit to warn the driver. Many also use tilt-back to keep + riders below top speed, which works very effectively. It also + happens more and more frequently that the motor is only switched off + for a very short time in the event of an overload, in order to + protect the electronics. This then causes a{" "} + pedal dip, and in most cases the ride can be + continued normally.

-

Despite all these reasons, cut-outs are very rare and, if you ride correctly, almost never a problem. And if you buy historically safe devices like the KS16X or Veteran Sherman, you can be relatively unmindful.

+

+ Motherboards are now so robust and power output is so high that + overload induced cut-outs are rare, and then only when the rider is + driving extremely aggressively or there was something wrong with the + device beforehand, like in this example video right. +

+ +

+ Another reason, which mostly affects the newest devices (usually + devices from the first batch), are{" "} + software bugs or faulty hardware. This reason for cut-outs is + the scariest because it can just happen. Regardless of the speed and + workload. A well-known example here was the Inmotion V12 cut-outs, + in which the built-in MOSFETs were faulty and thus led to cut-offs + in many devices. In the devices produced later, such problems are + usually eliminated. +

+ +

+ The final example here is a low battery. When the battery is + low, the device no longer runs at the full 100.8V, but rather around + 80V. If a lot of power is now required, there will be a voltage drop + as described in the Battery chapter. If the + voltage falls below the minimum, the electronics switch off. Modern + devices limit the top speed when the battery level drops, but in + particular some Gotway devices dont do this. + This causes riders to demand high performance despite a low battery + level, and thus not only damage their battery in the long term, but + also damage themselves in the short term as a result of a cut-off. +

+ +

+ Despite all these reasons, cut-outs are very rare and, if you ride + correctly, almost never a problem. And if you buy historically safe + devices like the KS16X or Veteran Sherman, you can be relatively + unmindful. +

{/* @@ -468,7 +762,16 @@ function Overview() {

Battery safety and fires

- First of all: in contrast to for example hoverboards, unicycles are quite safe in terms of fire and battery safety. In the past, however, Gotway/Begode in particular was known for battery fires and a lack of battery safety. But since recently the KS S22 prototype burned spectacularly, the worry is now also there for other brands. + First of all: in contrast to for example hoverboards, unicycles are + quite safe in terms of fire and battery safety. In the past, + however, Gotway/Begode in particular was known + for battery fires and a lack of battery safety. But since recently + the{" "} + + {" "} + KS S22 prototype burned spectacularly + + , the worry is now also there for other brands.

@@ -538,16 +882,40 @@ function Overview() {
-

By far the greatest safety risk is the rider's riding style. Similar to motorcycles, reckless driving and excessive speeds can quickly lead to accidents. Unlike motorcycles, hardly anyone dies in an accident involving an EUC. With a few exceptions, the devices are so small and relatively slow that there are injuries, but hardly any fatalities.

+

+ By far the greatest safety risk is the rider's riding style. Similar + to motorcycles, reckless driving and excessive speeds can quickly + lead to accidents. Unlike motorcycles, hardly anyone dies in an + accident involving an EUC. With a few exceptions, the devices are so + small and relatively slow that there are injuries, but hardly any + fatalities. +

Nevertheless, there are also a few interesting phenomena here:

- In contrast to scooters, the steep learning curve ensures more respect for the device and one's own skills. Many only go near the traffic when they have practiced longer and feel safe, whereas, especially with rental scooters, the first ride usually takes place directly between cars or pedestrians. This results in significantly fewer incidents involving EUCs. + In contrast to scooters, the steep learning curve ensures + more respect for the device and one's own skills. Many only go near + the traffic when they have practiced longer and feel safe, whereas, + especially with rental scooters, the first ride usually takes place + directly between cars or pedestrians. This results in significantly + fewer incidents involving EUCs.

- Riding the EUC is a very skill based means of transport. Even the emergency brake has to be practiced for a long time, in different scenarios and especially in curves. It often happens that drivers stop actively pushing and improving themselves after the first few kilometers. Therefore some with years of riding experience are unsafe when getting on and off, and do not know how to help themselves in emergency situations. Many have an incorrect stance or ride on wobbly legs, which causes wobbles and leads to falls. That's also the reason why the New Yorker riders have fewer accidents than other groups and cities, despite or because they drive so aggressively and therefore have a very higher skill level. These machines can only do as much as their driver, and with the right skill they are capable of incredible things. + Riding the EUC is a very skill based means of transport. Even + the emergency brake has to be practiced for a long time, in + different scenarios and especially in curves. It often happens that + drivers stop actively pushing and improving themselves after the + first few kilometers. Therefore some with years of riding experience + are unsafe when getting on and off, and do not know how to help + themselves in emergency situations. Many have an incorrect stance or + ride on wobbly legs, which causes wobbles and + leads to falls. That's also the reason why the New Yorker riders + have fewer accidents than other groups and cities, despite or + because they drive so aggressively and therefore have a very higher + skill level. These machines can only do as much as their driver, and + with the right skill they are capable of incredible things.

- Accidents themselves are also worth mentioning here, because there are some crucial differences that make EUCs safer than other vehicles in a certain way. + Accidents themselves are also worth mentioning here, because + there are some crucial differences that make EUCs safer than other + vehicles in a certain way.

- First, you stand upright and have your hands and body free. That alone makes it much easier to catch a fall than, for example, with a bicycle or scooter. With them you either fly over the handlebars or slip sideways and don't have both legs to catch you. + First, you stand upright and have your hands and body free. + That alone makes it much easier to catch a fall than, for example, + with a bicycle or scooter. With them you either fly over the + handlebars or slip sideways and don't have both legs to catch you.

- Secondly, you stand facing forwards, and therefore dont get yeeted sideways into the ground like on OneWheels. Most can just jump off and run out under 26kmh without even falling. This is otherwise only possible with very few devices of this type. Of course you are not as safe as on a big motorbike, or as in a car. But compared to a motorcycle, the speeds are usually way lower and therefore much less dangerous. In addition, you usually wear the recommended equipment anyway, so that 99% of the time nothing happens at all. + Secondly, you stand facing forwards, and therefore dont get{" "} + + yeeted + {" "} + sideways into the ground like on OneWheels. Most can just jump off + and run out under 26kmh without even falling. This is otherwise only + possible with very few devices of this type. Of course you are not + as safe as on a big motorbike, or as in a car. But compared to a + motorcycle, the speeds are usually way lower and therefore much less + dangerous. In addition, you usually wear the recommended equipment + anyway, so that 99% of the time nothing happens at all.

@@ -583,15 +966,32 @@ function Overview() {

- Wobbles are a problem not fully understood yet. Wobble describes the shaking of the device side to side while riding fast. As mentioned in the tires topic, road tires tend to wobble more often. The device then wobbles in its own resonance, also known in the motorcycles world. + Wobbles are a problem not fully understood yet. Wobble describes the{" "} + shaking of the device side to side while riding fast. As + mentioned in the tires topic, road tires tend + to wobble more often. The device then wobbles in its own resonance, + also known in the motorcycles world.

- You can avoid this by keeping the tire pressure lower and having a balanced machine, i.e. with even weight distribution. It also helps to be carve slightly, i.e. to ride slight slalom. If you still get wobbles, it helps to have good pads as they give you more grip on the device and thus more time to react. But there are different opinions on how to actually end them: some say you should relax and brake, others say never brake, but grip harder and accelerate. + You can avoid this by keeping the tire pressure lower and + having a balanced machine, i.e. with even weight distribution. It + also helps to be carve slightly, i.e. to ride slight slalom. + If you still get wobbles, it helps to have good{" "} + pads as they give you more grip on the device + and thus more time to react. But there are different opinions on how + to actually end them: some say you should relax and brake, others + say never brake, but grip harder and accelerate.

- However, the example video here is also an extreme case, albeit perfectly saved with the knee pads. In a normal case, you would feel a slight wobble when braking, and over time you would get it under control. Generally, many say it's a matter of training and experience. Also, devices like Gotway's MSuper series, RS's and EXN's are more vulnerable than, for example, the Veteran Sherman or the KS S22. + However, the example video here is also an extreme case, albeit + perfectly saved with the knee pads. In a normal case, you would feel + a slight wobble when braking, and over time you would get it under + control. Generally, many say it's a matter of training and + experience. Also, devices like Gotway's MSuper series, RS's and + EXN's are more vulnerable than, for example, the Veteran Sherman or + the KS S22.

@@ -602,7 +1002,17 @@ function Overview() {

Performance as a safety feature

- Especially politicians and people outside of this sport think that more performance equals more risk. They are almost right with scooters and e-bikes because they do not depend on power for stabilization. EUCs, OneWheels, and all manner of hoverboards and Segways are, though, and that creates a bit of a contradiction. More power gives the rider a lot of braking safety, and reduces the risk of overload-induced cut-offs. A larger battery also provides more power reserves for difficult terrain. But more power also means significantly higher speeds, which opens the door to all the bad accidents in the first place. + Especially politicians and people outside of this sport think that + more performance equals more risk. They are almost right with + scooters and e-bikes because they do not depend on power for + stabilization. EUCs, OneWheels, and all manner of hoverboards and + Segways are, though, and that creates a bit of a contradiction. More + power gives the rider a lot of braking safety, and{" "} + reduces the risk of overload-induced{" "} + cut-offs. A larger battery also provides more{" "} + power reserves for difficult terrain. But more power also + means significantly higher speeds, which opens the door to all the + bad accidents in the first place.

@@ -611,7 +1021,21 @@ function Overview() { */}

Suspension as a safety feature

-

Almost all new and announced devices have some form of built-in suspension. Initially seen as a gimmick and "off-road only", this feature is slowly becoming a necessity. Because with a self-balancing device, every bump in the road causes a power spike in the controller. This is usually not a problem at 35kmh, but at 70kmh it can be too much for many devices. Suspension takes away most of the power spike that occurs, while also making sure that rider's feet don't get shot off the pedals. The exception here are the pogostick designs in the Inmotion V11, which in exceptional cases simply shoot up the rider instead of dampening him. Nevertheless, the progressive suspensions in particular not only ensure significantly more comfort, but also rider safety. And allow mountain bike-like performance on the trails.

+

+ Almost all new and announced devices have some form of built-in + suspension. Initially seen as a gimmick and "off-road only", this + feature is slowly becoming a necessity. Because with a + self-balancing device, every bump in the road causes a power spike + in the controller. This is usually not a problem at 35kmh, but at + 70kmh it can be too much for many devices. Suspension takes away + most of the power spike that occurs, while also making sure that + rider's feet don't get shot off the pedals. The exception here are + the pogostick designs in the Inmotion V11, which in exceptional + cases simply shoot up the rider instead of dampening him. + Nevertheless, the progressive suspensions in particular not only + ensure significantly more comfort, but also rider safety. And allow + mountain bike-like performance on the trails. +

{/* @@ -623,19 +1047,43 @@ function Overview() {

Tires can be divided into 3 categories:

- Offroad tyres, also known as nobbys, have a large and usually a very rough profile. They tend to be noisier on the road, have a larger turning circle, and don't feel nearly as agile and nimble on the road as street tires. On the other hand, they usually have excellent grip in the forest and can also drive through deep mud. It was also found that nobbys wobble less than street tires (comparison - ), probably because of the lower tire pressure and the softer material. Nobbys also have the advantage that they usually last longer. A standard Kenda K262 easily lasts 10000km, where a CST road tire only lasts 3-4000km. + Offroad tyres, also known as nobbys, have a large and usually + a very rough profile. They tend to be noisier on the road, have a + larger turning circle, and don't feel nearly as agile and nimble on + the road as street tires. On the other hand, they usually have + excellent grip in the forest and can also drive through deep mud. It + was also found that nobbys wobble less than street tires ( + comparison + ), probably because of the lower tire pressure and the softer + material. Nobbys also have the advantage that they usually last + longer. A standard Kenda K262 easily lasts 10000km, where a CST road + tire only lasts 3-4000km.

- Street tires are, as the name suggests, better suited for asphalt, they make the device appear more agile and faster than a nobby. They are also significantly quieter, they feel significantly better in curves and allow very fine manoeuvres. There are 2 tires to mention here, the CST c-1488 which, to the chagrin of many, comes default with the device as a standard street tire. This tire has a short life span and, unlike the second tire, poor material. The second well-known tire is the Michelin City pro, which consists of a top material and therefore lasts longer. City Pro review + Street tires are, as the name suggests, better suited for + asphalt, they make the device appear more agile and faster than a + nobby. They are also significantly quieter, they feel significantly + better in curves and allow very fine manoeuvres. There are 2 tires + to mention here, the CST c-1488 which, to the chagrin of many, comes + default with the device as a standard street tire. This tire has a + short life span and, unlike the second tire, poor material. The + second well-known tire is the Michelin City pro, which consists of a + top material and therefore lasts longer.{" "} + City Pro review

- Hybrids are popular with people who are not always out in the muddy forest or only on the road. They try to offer the best of both worlds. + Hybrids are popular with people who are not always out in the + muddy forest or only on the road. They try to offer the best of both + worlds.

-

There is another type, only used in special cases like on the Z10: a full rubber airless tire. Very harsh to ride, puncture proof and longlasting.

+

+ There is another type, only used in special cases like on the Z10: a + full rubber airless tire. Very harsh to ride, puncture proof and + longlasting. +

{/* @@ -647,13 +1095,28 @@ function Overview() {
- +

The underlying technique came with the Segway - on the market. But lacking performance, battery size and construction, together with bad design and a 10k price made for a spectacular flop of this technology. There were first prototypes and individual tests of an EUC as early as 1930, but it was not until the SoloWheel in 2010 that it had the typical properties of today's EUC. Even if this is the first considerable EUC, it is hardly usable from today's perspective. Unergonomic, weak, far too small of a battery and therefore hardly any braking or acceleration power (see Performance as a safety feature). Nonetheless, this device marked the start of the sport, and thus defined it. + on the market. But lacking performance, battery size and + construction, together with bad design and a 10k price made for a + spectacular flop of this technology. There were first prototypes and + individual tests of an EUC as early as 1930, but it was not until + the SoloWheel in 2010 that it had the typical properties of + today's EUC. Even if this is the first considerable EUC, it is + hardly usable from today's perspective. Unergonomic, weak, far too + small of a battery and therefore hardly any braking or acceleration + power (see{" "} + Performance as a safety feature). + Nonetheless, this device marked the start of the sport, and thus + defined it.

@@ -665,11 +1128,18 @@ function Overview() { Inmotion - followed suit and set the standard for quality and features. Only then did + followed suit and set the standard for quality and features. Only + then did Gotway - come onto the market. Gotway changed the nature of EUCs in a different way, and maybe even more so than Inmotion: from the start, they brought out more powerful devices then the others. They lacked good design and quality and they looked like hobby projects from the inside. Also, until recently, Gotway still used the same bad design for all devices, whereas Kingsong and Inmotion put a lot more thought into design and quality. + come onto the market. Gotway changed the nature of EUCs in a + different way, and maybe even more so than Inmotion: from the start, + they brought out more powerful devices then the others. They lacked + good design and quality and they looked like hobby projects from the + inside. Also, until recently, Gotway still used the same bad design + for all devices, whereas Kingsong and Inmotion put a lot more + thought into design and quality.

@@ -679,28 +1149,68 @@ function Overview() { Ninebot - bought Segway, and came out with the Ninebot One in 2015. A 250Wh device with stylish LEDs and a white design. Then one device after the other came out. Gotway produces bigger and faster devices, Inmotion, Kingsong and Ninebot offered more and more features and tried to keep up with Gotway in terms of performance. In 2019 we saw the release of the initially unpopular, later iconic Ninebot Z10. 45kmh, 1100wh and an absolutely unique design still separates it from all other devices today. But it had many problems, and unfortunately it was the last EUC that Ninebot produced. At that point, Gotway was already at 50kmh+ with the Monster and Nicola, and the batteries were twice as big. Gotway, now called Begode, has built itself an image of high performance and speed. Many accepted the poor build quality and rare battery fires because there were simply no alternative. This was slowly changing in 2020, when Inmotion and Kingsong - both released 50kmh devices with a good design. And both devices are changing the market forever. + bought Segway, and came out with the Ninebot One in 2015. A + 250Wh device with stylish LEDs and a white design. Then one device + after the other came out. Gotway produces bigger and faster devices, + Inmotion, Kingsong and Ninebot offered more and more features and + tried to keep up with Gotway in terms of performance. In 2019{" "} + we saw the release of the initially unpopular, later iconic Ninebot + Z10. 45kmh, 1100wh and an absolutely unique design still separates + it from all other devices today. But it had many problems, and + unfortunately it was the last EUC that Ninebot produced. At that + point, Gotway was already at 50kmh+ with the Monster and + Nicola, and the batteries were twice as big. Gotway, now called + Begode, has built itself an image of high performance and speed. + Many accepted the poor build quality and rare{" "} + battery fires because there were simply no + alternative. This was slowly changing in 2020, when Inmotion + and Kingsong both released 50kmh devices with a good design. And + both devices are changing the market forever.

- Inmotion and Kingsong both released the first devices with suspension relatively simultaneously. Kingsong created today's popular swing arm design, Inmotion developed an air piston based pedal suspension. Begode later copied both variants, of course in a much worse form, and ultimately stuck with the swing arm design. + Inmotion and Kingsong both released the first devices with{" "} + suspension relatively simultaneously. Kingsong created + today's popular swing arm design, Inmotion developed an air piston + based pedal suspension. Begode later copied both variants, of course + in a much worse form, and ultimately stuck with the swing arm + design.
Veteran - (Lieperkim) entered the market this year with the absolute bestseller Veteran Sherman. Just this device and the videos about it launched a whole wave of new unicyclers, just plain because it was the first well built and at the same time super fast device. Finally, you were no longer dependent on the inferior quality of Begode, but could cruise stably at 70kmh and didn't have to worry about the batteries flying out of the housing in the event of a crash. + (Lieperkim) entered the market this year with the absolute + bestseller Veteran Sherman. Just this device and the{" "} + videos about it launched + a whole wave of new unicyclers, just plain because it was the first + well built and at the same time super fast device. Finally, you were + no longer dependent on the inferior quality of Begode, but could + cruise stably at 70kmh and didn't have to worry about the + batteries flying out of the housing in the event of a crash.

- 2022 is the year with the most wheel launches, Begode alone has released or announced at least 7 devices, 6 of them with suspension. Inmotion has announced the V13 and Kingsong has brought out a bestseller with the S22. With the Sherman S, Veteran has now also presented a suspension unicycle that will probably set new standards in terms of robustness and quality. + 2022 is the year with the most wheel launches, Begode alone + has released or announced at least 7 devices, 6 of them with + suspension. Inmotion has announced the V13 and Kingsong has brought + out a bestseller with the S22. With the Sherman S, Veteran has now + also presented a suspension unicycle that will probably set new + standards in terms of robustness and quality.

- As you can easily see from the story so far, companies and unicycles are developing faster and faster. It took almost 6 years after the first unicycle until serious devices came onto the market. Then only 4 years to go from a shaky 35kmh to a stable 70kmh and 100km range. And in the last 2 years there have been so many innovations; Metal construction, suspension, smart BMS's, screens, spiked pedals as standard, usable pads as standard, water resistance, 100kmh top speed, 240km range, almost 5000wh batteries... + As you can easily see from the story so far, companies and unicycles + are developing faster and faster. It took almost 6 years + after the first unicycle until serious devices came onto the market. + Then only 4 years to go from a shaky 35kmh to a stable 70kmh and + 100km range. And in the last 2 years there have been so many + innovations; Metal construction, suspension, smart BMS's, screens, + spiked pedals as standard, usable pads as + standard, water resistance, 100kmh top speed, 240km range, almost + 5000wh batteries...

@@ -710,10 +1220,16 @@ function Overview() {

List of devices

- Only the most relevant and well-known devices are listed here, a complete, sortable overview is available here. + Only the most relevant and well-known devices are listed here, a + complete, sortable overview is available{" "} + here.

- +