We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b14b28 commit 8d38fe6Copy full SHA for 8d38fe6
1 file changed
README.md
@@ -28,9 +28,15 @@ I strongly recommend using [rshell](https://github.com/dhylands/rshell).
28
Now available with upip, could be installed with:
29
``` python
30
import upip
31
+import network
32
+from time import sleep
33
+wlan=network.WLAN(network.STA_IF)
34
+wlan.active(True)
35
+wlan.connect('<ssid>', '<password>')
36
+sleep(5)
37
upip.install('micropython-rosserial')
38
```
-If `micropython-rosserial` is installed, because of requirementes, `ugenpy` and `TopicInfo` will too.
39
+If `micropython-rosserial` is installed, because of requirements, `ugenpy` and `TopicInfo` will too.
40
>Note: must be connected to WiFi to use upip like this.
41
42
**Have in mind before publishing or subscribing to a topic, the message class must be generated with `ugenpy`**
0 commit comments