o
Collection of .breq (BR Equipment) automation scripts for controlling Blue Robotics manufacturing equipment. These scripts coordinate multiple devices for production tasks like assembly, testing, and quality control.
Scripts are organized by device folder (e.g., pressboi/, fillhead/, gantry/).
Used with: BR Equipment Control App
Download the BR Equipment Control App for your platform.
- File → Open or Ctrl+O
- Select a
.breqscript from this repository - The app provides syntax highlighting and validation
- Devices are auto-discovered over USB or Ethernet
- Check device status in the device panel
- Click "Run" or press F5
- Use Step mode for debugging
- Scripts can be paused/resumed/stopped at any time
.breq scripts use a simple text-based format:
# This is a comment
# Device commands
pressboi.home
pressboi.move_abs 100 50
# Built-in commands
wait 5
cycle 10
gantry.move_x 10
wait 1
# Data logging
queue_for_logging
pressboi.position_mm
pressboi.force_n
start_logging "test.csv" pressboi
wait 30
stop_logging
See the scripting documentation for full syntax reference.
Made with 💙 by the Blue Robotics team