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: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ This repo is an Arduino Micro-ROS library for [Kaia.ai](https://kaia.ai) home pe
14
14
- Navigate to the [release section](https://github.com/kaiaai/micro_ros_arduino_kaiaai/releases), expand Assets
15
15
and download the latest `Source code (zip)` release
16
16
- Launch your Arduino IDE, open the Sketch -> Include library -> Add .ZIP Library... menu and
17
-
select the downloaded file named `micro_ros_arduino_kaiaai-2.0.7-iron.zip` (the actual version digits may differ)
17
+
select the downloaded file named `micro_ros_arduino_kaiaai-2.0.7-iron.3.zip` (the actual version digits may differ)
18
18
19
19
## Install library using git
20
20
Alternatively, you can `git clone` this library as follows. This method may be useful if you need to edit library files or check out different versions of the library.
@@ -31,16 +31,17 @@ git clone -b iron --depth 1 https://github.com/kaiaai/micro_ros_arduino_kaiaai m
31
31
Now you can include this library into your sketch using `#include <micro_ros_kaia.h>`.
32
32
33
33
## Mod and rebuild Micro-ROS Arduino library for Kaia.ai
34
-
In some cases, tayloring Kaia.ai software for your particular robot may require tweaking the Kaia.ai library code in
34
+
In some cases, tayloring Kaia.ai software to your particular robot may require tweaking the Kaia.ai library code in
35
35
addition to the Kaia.ai firmware - for example to add new types of Micro-ROS messages. Follow these steps
36
-
to [extend and/or adapt](https://micro.ros.org/docs/tutorials/advanced/create_new_type/) and rebuild the Kaia.ai Arduino library on Windows for your particular robot design.
36
+
to [extend and/or adapt](https://micro.ros.org/docs/tutorials/advanced/create_new_type/) and rebuild the Kaia.ai
37
+
Arduino library on Windows for your particular robot design.
37
38
- Install Docker for your PC platform, e.g. [Docker for Windows](https://docs.docker.com/desktop/install/windows-install/) and make sure the Docker agent is running
38
-
- Install the [Micro-ROS Arduino library for Kaia.ai](https://github.com/kaiaai/micro_ros_arduino_kaiaai/) using the instructions above.
39
+
- Install the [Micro-ROS Arduino library for Kaia.ai](https://github.com/kaiaai/micro_ros_arduino_kaia/) using the instructions above.
39
40
Let's assume you are using Arduino IDE for Windows and your Arduino libraries are stored under `C:\Users\YOUR-USER-NAME\Documents\Arduino\libraries`.
40
41
- Open a Windows command shell and run these commands to rebuild the library using the [Micro-ROS library builder](https://github.com/micro-ROS/micro_ros_arduino):
41
42
```
42
43
cd %HOMEPATH%\Documents\Arduino\libraries
43
-
git clone -b iron --depth 1 https://github.com/kaiaai/micro_ros_arduino_kaiaai micro_ros_kaia
44
+
git clone -b iron --depth 1 https://github.com/kaiaai/micro_ros_arduino_kaia micro_ros_kaia
44
45
docker run -it --rm -v .\micro_ros_kaia:/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:iron
0 commit comments