Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/buildbotics/bbctrl-firmware
Buildbotics CNC Controller Firmware
https://github.com/buildbotics/bbctrl-firmware
Last synced: about 5 hours ago
JSON representation
Buildbotics CNC Controller Firmware
- Host: GitHub
- URL: https://github.com/buildbotics/bbctrl-firmware
- Owner: buildbotics
- License: other
- Created: 2016-04-02T06:57:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T17:14:57.000Z (5 months ago)
- Last Synced: 2024-07-09T21:52:02.304Z (5 months ago)
- Language: C
- Homepage: https://buildbotics.com/
- Size: 19.4 MB
- Stars: 67
- Watchers: 17
- Forks: 26
- Open Issues: 140
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Buildbotics CNC Controller Firmware
This repository contains the source code for the Buildbotics CNC Controller.
See [buildbotics.com](https://buildbotics.com/) for more information.![Buildbotics CNC Controller](docs/buildbotics_controller.png)
## Overview
![Buildbotics architecture overview](docs/buildbotics_architecture_overview.png)The main parts of the Buildbotics CNC Controller software and the technologies
they are built with are as follows:* Web App - Frontend user interface
* [Javascript](https://www.w3schools.com/js/)
* [HTML5](https://www.w3schools.com/html/)
* [Stylus](http://stylus-lang.com/)
* [Pug.js](https://pugjs.org/)
* [Vue.js](https://vuejs.org/)* Controller OS - RaspberryPi Operating System
* [Raspbian](https://www.raspbian.org/)* BBCtrl - Python App
* [Python 3](https://www.python.org/)
* [Tornado Web](https://www.tornadoweb.org/)* CAMotics - Path Planner Python Module
* [C++](http://www.cplusplus.com/)
* [CAMotics](https://camotics.org/)* Main AVR Firmware + Bootloader - Real-time step generation, etc.
* [ATxmega192a3u](https://www.microchip.com/wwwproducts/ATxmega192A3U)
* [C](https://en.wikipedia.org/wiki/C_(programming_language))* Pwr AVR Firmware - Power safety
* [ATtiny3216](https://www.microchip.com/wwwproducts/ATtiny3216)
* [C](https://en.wikipedia.org/wiki/C_(programming_language))## Quickstart Guide
Be sure to read the [development guide](docs/development.md) for more detailed
instructions.On a Debian Linux (12) system:
# Install the required packages
sudo apt-get update
sudo apt-get install -y build-essential git wget binfmt-support \
qemu-user-static parted gcc-avr avr-libc avrdude pylint python3 \
python3-tornado curl unzip python3-setuptools nodejs coreutils bison \
flex gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf mtools debootstrap# Get the source
git clone https://github.com/buildbotics/bbctrl-firmware# Build the Firmware
cd bbctrl-firmware
make pkgThe resulting package will be a ``.tar.bz2`` file in ``dist``. See the
[development guide](docs/development.md) for more information.## License
Copyright (c) 2015 - 2023, Buildbotics LLC, All rights reserved.This source describes Open Hardware and is licensed under the CERN-OHL-S v2
You may redistribute and modify this documentation and make products
using it under the terms of the CERN-OHL-S v2 (https:/cern.ch/cern-ohl).
This documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED
WARRANTY, INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY
AND FITNESS FOR A PARTICULAR PURPOSE. Please see the CERN-OHL-S v2
for applicable conditions.Source location: https://github.com/buildbotics
As per CERN-OHL-S v2 section 4, should You produce hardware based on
these sources, You must maintain the Source Location clearly visible on
the external case of the CNC Controller or other product you make using
this documentation.