Software and hardware to accompany the publication "A Modular Programmable Inorganic Cluster Discovery Robot for the Discovery and Synthesis of Polyoxometallates"
This software requires the following:
- Python >= 3.6 (Linux / Windows)
- Arduino IDE
- Arduino Command Handler
- Arduino Command Tools
To install all required Python libraries, run the following command: pip install -r requirements.txt
Instructions for building this system can be found here.
Information on firmware setup can be found here.
All the system requires to run is a csv
file with all necessary information present, e.g
Reaction number | W/DMA | Thionite | Acid | Co | Ni | Mn | Fe | Rxn number | |
---|---|---|---|---|---|---|---|---|---|
DSA-CB-W/TM-1 | 9 | 0.73 | 0.1 | 0.43 | 0 | 0 | 0 | 1 |
- Calibrate each Peristaltic pump
- Pre-weigh a 14ml vial
- Each pump should run for 1 minute dispensing deionised water into a 14ml vial
- Weigh vial after water addition
- Do this 3 times to obtain an average flow rate for the pump
- Repeat this for each peristaltic pump
- Add calibrations to the
calibrations
folder inclusterbot/software/operations/constants/calibrations/
- Define the path of the CSV file to run in the
run_w200_synthesis.py
- Run the script and the synthesis will commence
The following is a description of how to set up the Arduino firmware for use with Commanduino.
Clone the following repositories and follow the basic set up instructions within (Works with Windows/Linux)
- Include the Command Handler and Command Manager at the top of your file and create a CommandManager instance
#include <CommandHandler.h>
#include <CommandManager.h>
CommandManager cmdMgr;
- Include the basic Arduino devices you will be using e.g. AccelSteppers, Servos, etc.
#include <AccelStepper.h>
#include <LinearAccelStepperActuator.h>
/* Additional Modules if necessary */
- Next, include the "Command" version of all your included devices from above
#include <CommandAccelStepper.h>
#include <CommandLinearAccelStepperActuator.h>
- Now instantiate the Arduino device objects and their Command equivalents
- Note: The numbers are pins and these may change depending on your setup
AccelStepper stepper1(AccelStepper::DRIVER, 54, 55);
CommandLinearAccelStepperActuator cmdStepper(stepper1, 3, 38);
/* Additional Object creation */
Within the setup function, we use the created CommandDevice objects and add them to the manager. Each object is given a unique ID that the user specifies.
void setup() {
/* Here, "drive_wheel" is the unique ID */
cmdStepper.registerToCommandManager(cmdMgr, "drive_wheel");
/* Register the remaining devices in a similar fashion */
}
The loop function only contains single call for the manager to update. Nothing else is required here.
void loop() {
cmdMgr.update();
}
One of the most common uses of Commanduino is controlling stepper motors for movement, pumps, etc. To be able to use multiple stepper motors on a single Arduino board, a RAMPS shield is used, giving access to 5 possible motor locations and a collection of pins for other devices. Below is a list of pin mappings for using multiple stepper motors on a single RAMPS shield.
X_STEP_PIN 54
X_DIR_PIN 55
X_ENABLE_PIN 38
Y_STEP_PIN 60
Y_DIR_PIN 61
Y_ENABLE_PIN 56
Z_STEP_PIN 46
Z_DIR_PIN 48
Z_ENABLE_PIN 62
E0_STEP_PIN 26
E0_DIR_PIN 28
E0_ENABLE_PIN 24
E1_STEP_PIN 36
E1_DIR_PIN 34
E1_ENABLE_PIN 30
X_MIN_PIN 3
X_MAX_PIN 2
Y_MIN_PIN 14
Y_MAX_PIN 15
Z_MIN_PIN 18
Z_MAX_PIN 19
This platform uses the Commanduino library to facilitate all communication between the Arduino board and our Python interface. More examples can be found here.
Example config file:
{
"ios": [
{
"port": "/dev/ttyACM0"
},
{
"port": "/dev/ttyACM1"
},
{
"port": "/dev/ttyACM2"
}
],
"devices": {
"wheel": {
"command_id": "wheel",
"config": {
"reverted_switch": true,
"reverted_direction": true,
"enabled_acceleration": false,
"speed": 12000,
"homing_speed": 12000,
"acceleration": 2000
}
},
"module1": {
"command_id": "modY",
"config": {
"add_whats_necessary_for_device": true
}
},
...
}
}
The ios
key represents the USB port the Arduino port is connected to. Commanduino will scan these ports to find the appropriate Arduino attached. For a single arduino attached, the above setup for ios
is sufficient but for multiple Arduinos, it is best to assign them to a single port only. This prevents clashes.
For port names:
- Linux
"/dev/ttyACM{number}"
- Windows
"COM{number}"
The devices
key holds all the information for the devices attached to the Arduino board. In the example above, wheel
and module1
are the names Commanduino will use to access them. Inside the devices, we have the command_id
and config
.
command_id
- This is unique ID given in the Arduino file. (See Arduino Setup)
config
- Dependent on the device type. (See Commanduino Device Examples)
Example Commanduino file:
import os
import sys
import json
import time
import inspect
from commanduino import CommandManager # <-- Important!
class CoreDevice(object):
"""
Class representing a core Commanduino system.
Allows access to the modules attached
Args:
config (str): path to the Commanduino config file
"""
def __init__(self, config):
self.mgr = CommandManager.from_configfile(config) # Creates the CommandManager with JSON configuration file
# Can now access devices attached e.g.
self.wheel = self.mgr.wheel
self.module1 = self.mgr.module1
# etc. etc.
...
- Daniel Salley
- Graham Keenan
All software and designs were developed as members of the Cronin Group (University of Glasgow)