You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/08.edu/solution-and-kits/alvik/tutorials/user-manual/user-manual.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -838,7 +838,7 @@ TODO: Content for this section
838
838
**Outputs:**
839
839
-`color`: The color sensor's raw readout.
840
840
841
-
3. Gets the **labled** sensor value
841
+
3. Gets the **labelled** sensor value
842
842
843
843
The `get_color_label` function returns the label of the color as recognized by the sensor. This function processes the raw sensor data and converts it into a human-readable label, such as "red", "blue", "green", etc. It simplifies the use of color data for most applications however some flexibility is lost as colors are grouped into the nearest labeled color.
844
844
@@ -1169,7 +1169,7 @@ sleep_ms(5000)
1169
1169
1170
1170
#### Setting Up the Web Server
1171
1171
1172
-
The following code defines the HTML for the web interface. Feel free to customize this to your tast.
1172
+
The following code defines the HTML for the web interface. Feel free to customize this to your taste.
1173
1173
1174
1174
```html
1175
1175
# HTML for the web interface
@@ -1198,7 +1198,7 @@ html = """
1198
1198
"""
1199
1199
```
1200
1200
1201
-
We finally set up the web server, note that the selected port should be valid for your network with no conflics. This can be tuned to the setting that best works for your network configuration.
1201
+
We finally set up the web server, note that the selected port should be valid for your network with no conflicts. This can be tuned to the setting that best works for your network configuration.
1202
1202
1203
1203
```python
1204
1204
#EADDRINUSE erroris prompted change port
@@ -1263,7 +1263,7 @@ The ESP32 on the Arduino Alvik robot also supports ESP-NOW, a fast, connectionle
1263
1263
1264
1264
#### Device identification
1265
1265
1266
-
It is important for ESP-NOW to ensure that youknow the MAC adress for your device.
1266
+
It is important for ESP-NOW to ensure that youknow the MAC address for your device.
1267
1267
1268
1268
You can do that by running the following code:
1269
1269
```python
@@ -1277,12 +1277,12 @@ e.active(True)
1277
1277
mac = e.config('mac')
1278
1278
print("MAC address:", ':'.join('%02x'% b for b in mac))
1279
1279
```
1280
-
Each device will have a different adress, feel free to identify your devices so that you can easily build your ESP-NOW projects.
1280
+
Each device will have a different address, feel free to identify your devices so that you can easily build your ESP-NOW projects.
1281
1281
1282
-
Now that you know the adress for your device we can run your first ESP-NOW project.
1282
+
Now that you know the address for your device we can run your first ESP-NOW project.
1283
1283
1284
1284
1285
-
Lets now establish connection between a pair of Alviks. One will act as a controller and the other will follow the controls and move in the acording direction.
1285
+
Lets now establish connection between a pair of Alviks. One will act as a controller and the other will follow the controls and move in the according direction.
1286
1286
1287
1287
The provided code will:
1288
1288
1. Initialize ESP-NOW on the ESP32.
@@ -1464,7 +1464,7 @@ The Grove connectors on the Arduino Alvik robot are used for connectivity with c
1464
1464
1465
1465
### Servomotor Connectors
1466
1466
1467
-
The Arduino Alvik robot features 3-pin connectors for attaching servomotors while providing PWM control external servomotors. The connectors are disposed on a 6 by 2 header in the center at the back of the robot, supporting multiple servomotor connections. This arrangement enables complex robotic movements and functions, allowing the robot to perform a variety of aditional tasks.
1467
+
The Arduino Alvik robot features 3-pin connectors for attaching servomotors while providing PWM control external servomotors. The connectors are disposed on a 6 by 2 header in the center at the back of the robot, supporting multiple servomotor connections. This arrangement enables complex robotic movements and functions, allowing the robot to perform a variety of additional tasks.
1468
1468
1469
1469
1470
1470
@@ -1477,7 +1477,7 @@ Alvik's body includes compatibility with Lego Technic pieces for physical expans
1477
1477
1478
1478
***When adding extensions to the robot, never use screws longer than 10 mm or the device could be damaged.***
1479
1479
1480
-

1480
+

0 commit comments