sybot 0.10.4

Rust library for coordinating components, defining robotic systems and their communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Platforms and simulation


The final goal of the library is to work on as many platforms as possible. To configure the library for a specific platform, the right features have to be enabled. 

The current platforms and features enabled are
- "rasp": Raspberry Pi and similar controllers

```toml
# platform features

rasp = [ "syact/rasp" ]
```

If no platform is selected the library automatically goes into simulation mode. In simulation mode, no movements will be executed, but all calculations will be done. Which means that for example GCode scripts can be "debugged" in advance.