Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rpyc.rst #777

Open
wants to merge 1 commit into
base: ev3dev-stretch
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/rpyc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ Install
After=multi-user.target

[Service]
User=robot
Type=simple
ExecStart=/usr/bin/rpyc_classic.py

[Install]
WantedBy=multi-user.target" > rpyc-classic.service
WantedBy=multi-user.target" > rpyc-classic.service --host=0.0.0.0

sudo cp rpyc-classic.service /lib/systemd/system/
sudo systemctl daemon-reload
Expand Down Expand Up @@ -106,6 +107,11 @@ Cons
====
* Latency will be introduced by the network connection. This may be a show stopper for robots where reaction speed is essential.
* RPyC is only supported by python, it is *NOT* supported by micropython
* The version included with ev3dev is 3.3.0; if using a RPyC client on a desktop chances are there is a major difference, so it is
advisable to upgrade it:
- sudo apt-get install python3-pip
- sudo pip3 install rpyc
- sudo reboot

References
==========
Expand Down