[!IMPORTANT] This library is still in development. Consider starring the repository to show your support.
This repository provides a Golang library to interface with Bambulabs 3D printers via network protocols. It allows easy integration of Bambulabs printers into your Go applications, providing access to printer data, control over printer features, and more.
This project does not support the bambulabs cloud api, but it's sister project bambulabs_cloud_api does.
To install the Bambulabs API Golang library, use the go get
command:
go get -u github.com/torbenconto/bambulabs_api
To interact with a Bambulabs printer, you need the following details:
You can find the IP Address and Access Code in the printer’s network settings. Please refer to the guides below for more detailed instructions:
Once you have the necessary details, you can create and connect to the printer with the following code:
// Replace the values below with the ones for your printer
config := &bambulabs_api.PrinterConfig{
Host: "192.168.1.200",
AccessCode: ACCESS_CODE,
SerialNumber: SERIAL_NUMBER,
}
printer := bambulabs_api.NewPrinter(config)
err := printer.Connect()
if err != nil {
panic(err)
}
The Connect()
method establishes a connection through MQTT alongside opening an FTP connection to the printer. This allows you to interact with the printer and retrieve data.
For camera connections, see the Camera Access section.
The PrinterPool is a concurrent, thread-safe structure designed to manage multiple printers in a pool. It allows you to interact with the printers by serial number, retrieve their status or data, and perform operations on them, all while handling multiple printers concurrently. To begin using the PrinterPool, first create an instance of it:
pool := bambulabs_api.NewPrinterPool()
Next, add printers to the pool using the AddPrinter method and passing in a config:
configs := []*PrinterConfig{
{Host: "192.168.1.200", SerialNumber: "M123ALE29D", AccessCode: "ODJ2j3"},
{Host: "192.168.1.201", SerialNumber: "M123ALE29E", AccessCode: "LDAdj3"},
}
for _, config := range configs {
pool.AddPrinter(config)
}
Next, connect to the printers using the built-in ConnectAll method:
err := pool.ConnectAll()
if err != nil {
panic(err)
}
Once connected, you can interact with the printers in the pool using the various methods provided by the PrinterPool struct. For example, you can toggle the light on all printers in the pool:
err := pool.ExecuteAll(func(printer *Printer) error {
return printer.LightOn(light.ChamberLight)
})
if err != nil {
panic(err)
}
You can also retrieve the data of all printers in the pool:
data, err := pool.DataAll()
if err != nil {
panic(err)
}
for _, printerData := range data {
fmt.Println(printerData)
}
For operations on one printer in a pool, you can retrieve a printer by serial number using the At method:
printer, err := pool.At("M123ALE29D")
if err != nil {
panic(err)
}
Finally, you can disconnect from all printers in the pool using the DisconnectAll method:
err := pool.DisconnectAll()
if err != nil {
panic(err)
}
The library also provides access to the camera of a printer. Right now it only supports the Bambu Labs P and A series printers.
We have plans to add support for the X series printers in the near future through rtsps. The camera access is currently in development and may not be fully functional for all printer models.
You must connect to the camera using the ConnectCamera method. This will establish a connection to the camera and allow you to access its features.
err := printer.ConnectCamera()
if err != nil {
panic(err)
}
Once connected, you can use the Camera struct to access the camera features. The Camera struct provides methods for taking snapshots, recording videos, and accessing the camera stream.
You can take a snapshot using the Capture method. This will capture a single frame from the camera and return it as a byte array.
snapshot, err := printer.CaptureCameraFrame()
if err != nil {
panic(err)
}
You can also record a video using the StartCameraStream method. This will start recording a video from the camera and return a byte array containing the video data.
video, err := printer.StartCameraStream()
if err != nil {
panic(err)
}
You can stop the camera stream using the StopCameraStream method. This will stop the recording and return the video data as a byte array.
err := printer.StopCameraStream()
if err != nil {
panic(err)
}
Here is a basic example of how to create a connection to a printer and interact with it. This example toggles the printer's light and retrieves some printer data:
package main
import (
"fmt"
"github.com/torbenconto/bambulabs_api"
"github.com/torbenconto/bambulabs_api/light"
"time"
"net"
)
func main() {
config := &bambulabs_api.PrinterConfig{
Host: "192.168.1.200",
AccessCode: "00293KD0",
SerialNumber: "AC1029391BH109",
}
// Create printer object
printer := bambulabs_api.NewPrinter(config)
// Connect to printer via MQTT
err := printer.Connect()
if err != nil {
panic(err)
}
// Attempt to toggle light
err = printer.LightOn(light.ChamberLight)
if err != nil {
panic(err)
}
for {
time.Sleep(1 * time.Second)
data, err := printer.Data()
if err != nil {
panic(err)
}
if !data.IsEmpty() {
fmt.Println(data)
}
}
}
This example establishes a printer pool with two printers, connects to them, toggles the light on both printers, and retrieves their data:
package main
import (
"fmt"
"github.com/torbenconto/bambulabs_api"
"github.com/torbenconto/bambulabs_api/light"
"net"
"time"
)
func main() {
pool := bambulabs_api.NewPrinterPool()
configs := []*bambulabs_api.PrinterConfig{
{Host: "192.168.1.200", SerialNumber: "M123ALE29D", AccessCode: "ODJ2j3"},
{Host: "192.168.1.201", SerialNumber: "M123ALE29E", AccessCode: "LDAdj3"},
}
for _, config := range configs {
pool.AddPrinter(config)
}
err := pool.ConnectAll()
if err != nil {
panic(err)
}
err = pool.ExecuteAll(func(printer *bambulabs_api.Printer) error {
return printer.LightOn(light.ChamberLight)
})
if err != nil {
panic(err)
}
for {
time.Sleep(1 * time.Second)
data, err := pool.DataAll()
if err != nil {
panic(err)
}
for _, printerData := range data {
fmt.Println(printerData)
}
}
}
The library is currently in a stable state with full functionality. All major features have been implemented and tested across various Bambulabs printer models. However, there may still be some edge cases or specific features that require further testing and validation. Contributions are welcome to improve functionality and expand coverage.
We welcome contributions to improve this project! If you’d like to contribute, please follow these steps:
Please refer to the CONTRIBUTING.md file for more details on how to contribute.
This project is licensed under the MIT License. See the LICENSE file for more details.
Feel free to join the community and connect with us for help, suggestions, or collaborations:
Join the Discord!