linkbot 0.0.2

Rust API for controlling Barobo Linkbots.
Documentation
  • Coverage
  • 66.67%
    12 out of 18 items documented2 out of 12 items with examples
  • Size
  • Source code size: 48.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.93 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • davidko/linkbot-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • davidko

linkbot-rs

This library can be used to control Linkbots. Linkbots are small, modular robots that are used in classrooms worldwide to teach programming, math, science, and more. More information regarding Linkbots can be found at https://barobo.com .

Crates.io

Documentation

Usage

First, you will need liblinkbot installed on your current machine. For Ubuntu, you can install liblinkbot with the following commands:

wget http://repo.barobo.com/barobo.public.key -O - | sudo apt-key add -
sudo add-apt-repository "deb http://repo.barobo.com/ xenial main"
sudo apt-get update
sudo apt-get install liblinkbot

For Raspbian,

wget http://barobo.com:81/barobo.public.key -O - | sudo apt-key add -
echo 'deb http://barobo.com:81/ jessie main' | sudo tee --append /etc/apt/sources.list
sudo apt-get update
sudo apt-get install liblinkbot

Next, add this to your Cargo.toml:

[dependencies]
linkbot = "*"

Then, add this to your crate:

extern crate linkbot;

use linkbot::Linkbot;

License

linkbot-rs is distributed under the terms of GPL-3.0.