Provides a wrapper class for communicating with MakerBot Replicator printers through JSON-RPC.
<?php
use Makerbot\Replicator;
$Replicator = new Replicator('192.168.1.100');
$Replicator->authenticate(); // Press the knob on the printer to authorize
$Replicator->loadFilament();
sleep(5);
$Replicator->stopFilament();PHP 7.1+. Other than that, this library has no external requirements.
You can install this library via Composer.
$ composer require abdyfranco/makerbotThe MIT License (MIT). Please see "LICENSE.md" File for more information.