adjusting wording

This commit is contained in:
legop3
2026-05-17 14:19:09 -04:00
parent 17f516ed0b
commit 394c45000d
4 changed files with 7 additions and 7 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -11,7 +11,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Roomba Rover" /> <meta name="apple-mobile-web-app-title" content="Roomba Rover" />
<title>Roomba Rover</title> <title>Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-Bg60ztdI.js"></script> <script type="module" crossorigin src="/assets/index-CqV8F5AH.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CkqCBh_q.css"> <link rel="stylesheet" crossorigin href="/assets/index-CkqCBh_q.css">
</head> </head>
<body> <body>
@@ -125,7 +125,7 @@ export default function DriveDockAction({
steps: [ steps: [
'Line up the round front sensor on the rover with the sensors on the dock', 'Line up the round front sensor on the rover with the sensors on the dock',
'Move carefully, lining up your sensor with the center of the dock', 'Move carefully, lining up your sensor with the center of the dock',
'When contact is made, charging will start in about 5 seconds.', 'When good contact is made, charging will start in about 5 seconds.',
], ],
}; };
@@ -257,8 +257,8 @@ export default function DriveDockAction({
if (dockingInProgress) { if (dockingInProgress) {
const inProgressCopy = { const inProgressCopy = {
summary: 'If the rover is failing to dock, click to drive and try again.', summary: 'The rover is currently attempting to dock itself due to being idle.',
steps: ['The rover should be slowly wiggling towards the dock', 'If it is obviously not working, press this button to enter driving mode and try again'], steps: ['Click to return to driving mode.'],
}; };
return ( return (
@@ -271,7 +271,7 @@ export default function DriveDockAction({
> >
<div className="space-y-0.5 w-full"> <div className="space-y-0.5 w-full">
<div className="flex w-full flex-col items-center gap-0.25"> <div className="flex w-full flex-col items-center gap-0.25">
<span className="text-base font-semibold text-amber-50 md:text-lg">Docking in Progress</span> <span className="text-base font-semibold text-amber-50 md:text-lg">Attempting to auto-dock...</span>
{/* {!isMobile && expanded ? ( */} {/* {!isMobile && expanded ? ( */}
{expanded ? ( {expanded ? (
<div className="flex flex-wrap items-center justify-center gap-0.5"> <div className="flex flex-wrap items-center justify-center gap-0.5">
+1 -1
View File
@@ -12,7 +12,7 @@ export const DRIVE_LIMITS = {
boostSpeed: 400, boostSpeed: 400,
}; };
export const MANUAL_DOCK_ASSIST_MAX_SPEED = 70; export const MANUAL_DOCK_ASSIST_MAX_SPEED = 60;
export const COMMAND_DELAY_MS = 100; export const COMMAND_DELAY_MS = 100;