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

feat: make production ready #21

Merged
merged 8 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics

- name: Lint with mypy
run: mypy webserver robot models tests utils --check-untyped-defs --ignore-missing-imports
run: mypy $(git ls-files '*.py') --check-untyped-defs --ignore-missing-imports
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ jobs:
python -m pip install -e "git+https://github.com/simondlevy/BreezyLidar.git#egg=BreezyLidar&subdirectory=python" # lidar library
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
cp config/config.yml.dev config/config.yml
- name: Test with pytest
run: python3 main.py & (sleep 3; pytest .)
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ A python real-time controller API for robotic systems via CAN
Possibly, use python3.10

```bash
pip install -e "git+https://github.com/simondlevy/BreezyLidar.git#egg=BreezyLidar&subdirectory=python" # lidar library
pip install -r requirements.txt
pip install -r requirements_dev.txt # only for testing
```
Expand All @@ -17,3 +16,9 @@ pip install -r requirements_dev.txt # only for testing
```bash
python3 main.py
```

### enable LiDAR (optional)

```bash
pip install -e "git+https://github.com/simondlevy/BreezyLidar.git#egg=BreezyLidar&subdirectory=python" # lidar library
```
11 changes: 9 additions & 2 deletions config/config.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
import os
from pprint import pprint

import yaml

from utils.colors import bcolors, colorit

conf: dict = {}

override = "config.yml"
default = "config.yml.default"
conf_path = override if os.path.exists(override) else default
conf_path = override if os.path.exists(f"config/{override}") else default

with open(conf_path, "r", encoding="utf-8") as conf_file:
with open(f"config/{conf_path}", "r", encoding="utf-8") as conf_file:
conf = yaml.load(conf_file, Loader=yaml.SafeLoader)

print(f"{bcolors.OKGREEN.value}ℹ️ CONFIG")
pprint(conf)
print(colorit("ℹ️ END CONFIG", bcolors.OKGREEN))
2 changes: 1 addition & 1 deletion config/config.yml.default
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# development
DEBUG_MESSAGES: False # add more prints
DEBUG_MESSAGES: True # add more prints
DEBUG_POSITION: False
DEBUG_CYCLE: False

Expand Down
17 changes: 17 additions & 0 deletions config/config.yml.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# development
DEBUG_MESSAGES: True # add more prints
DEBUG_POSITION: False
DEBUG_CYCLE: True

# CAN
CHANNEL: "can0"
VCHANNEL: "vcan0" # only for development or (future) pipeline
CAN_BAUD: 403847
DEBUG_CAN: True
DEBUG_VIRTUAL: True
DEBUG_VCAN: False # only for (future) pipeline

# LIDAR
DEBUG_LIDAR: True
ENABLE_LIDAR: False
LIDAR_DEVICE: "/dev/ttyACM0"
5 changes: 4 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@
finally:
bus.shutdown()

if conf["DEBUG_VIRTUAL"]:
if (
conf["DEBUG_VIRTUAL"]
and v_bus is not None # pylint: disable=used-before-assignment
):
v_bus.shutdown() # pylint: disable=used-before-assignment

proper_exit()
33 changes: 13 additions & 20 deletions models/debug_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,26 +55,19 @@
"format": CAN_FORMATS["ROBOT_WHEELS_VELOCITY"],
"data": CAN_robot_wheels_velocty,
},
{
"packet_id": CAN_IDS["ROBOT_WHEELS_VELOCITY"],
"format": CAN_FORMATS["ROBOT_WHEELS_VELOCITY"],
"data": {
"wheel": 2,
"current_speed": 2,
"target_speed": 2,
"pwm": 2,
},
},
{
"packet_id": CAN_IDS["ROBOT_WHEELS_VELOCITY"],
"format": CAN_FORMATS["ROBOT_WHEELS_VELOCITY"],
"data": {
"wheel": 3,
"current_speed": 3,
"target_speed": 3,
"pwm": 3,
},
},
*[
{
"packet_id": CAN_IDS["ROBOT_WHEELS_VELOCITY"],
"format": CAN_FORMATS["ROBOT_WHEELS_VELOCITY"],
"data": {
"wheel": 10 + i,
"current_speed": 20 + i,
"target_speed": 30 + i,
"pwm": 40 + i,
},
}
for i in range(20)
], # type: ignore
{
"packet_id": 0x333,
"format": "<hhhBB",
Expand Down
26 changes: 13 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
PyYAML
PyYAML==6.0.1

# CAN
python-can
python-can==4.3.1

# LiDAR
git+https://github.com/simondlevy/BreezyLidar.git#egg=BreezyLidar&subdirectory=python
BreezyLidar
# git+https://github.com/simondlevy/BreezyLidar.git#egg=BreezyLidar&subdirectory=python
# BreezyLidar

# web services
flask
flask_cors
flask_socketio
socketio
python-engineio
python-socketio
websocket-client
eventlet
pymitter
Flask==3.0.2
Flask-Cors==4.0.0
Flask-SocketIO==5.3.6
python-engineio==4.9.0
python-socketio==5.11.2
socketio==0.2.1
websocket-client==1.7.0
eventlet==0.36.0
pymitter==0.5.0
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ flake8
requests
mypy
types-requests
types-PyYAML
5 changes: 4 additions & 1 deletion robot/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from time import sleep
from typing import Any, List, Union

from breezylidar import URG04LX
from can import BusABC, Message
from pymitter import EventEmitter

Expand All @@ -16,6 +15,9 @@
from robot.motion_command import MotionCommand
from utils.colors import bcolors, colorit

if conf["ENABLE_LIDAR"]:
from breezylidar import URG04LX


# pylint: disable=too-many-instance-attributes
class Robot:
Expand Down Expand Up @@ -246,6 +248,7 @@ def get_lidar_data(self) -> None:

def on_send_align(self, data) -> None:
data = struct.pack(CAN_FORMATS["ALIGN"], *(CAN_align.values()))

msg = Message(
arbitration_id=CAN_IDS["STRATEGY_COMMAND"],
data=data,
Expand Down
Loading