Building a Python script to serve up data from a USB sensor, and implementing a RESTful API to wrap it all up.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Charles Reid 0304837f4a fixing singleton method to prevent errors due to resource being busy 9 years ago
dymouse fixing singleton method to prevent errors due to resource being busy 9 years ago
test changing host to public 9 years ago
.gitignore Initial commit 9 years ago
LICENSE Initial commit 9 years ago
MANIFEST.in big update. splitting module into driver and webapp. 9 years ago
README.md update readme description 9 years ago
setup.py big update. splitting module into driver and webapp. 9 years ago

README.md

dymouse

Dymouse is a library for interfacing with a Dymo USB postage scale via Raspberry Pi, Python, Flask, and a REST API.

How Does It Look?

The Setup

The Dymo USB scale (right) is connected to the Raspberry Pi (center) by a USB cable. The Raspberry Pi is connected to the network router by a network cable. The Mac laptop (left) is on the same wireless network as the Raspberry Pi and is SSHed into the Pi on the terminal window shown.

This is an early prototype version. Dymouse now has a web-based AJAX interface and a REST API interface.

How It Works

The way dymouse works is, you hook up your Dymo USB postage scale to your Raspberry Pi using a USB cable.

You then install Python on your Raspberry Pi, and use Python to take readings from the scale.

By running a Flask web server in Python, and writing the USB postage scale drivers in Python, readings of the Dymo USB postage scale can be made available through a REST API, making the Dymo scale an internet-capable instrument, and an internet of things thing.

Code Layout

dymosue is a Python module that is comprised of two sub-modules.

The submodules in dymouse are:

  • dymouse.webserver - submodule for running the Flask web server; this submodule provides both a web page interface and a JSON-based REST API.

  • dymouse.driver - submodule for creating a Python object representing the scale; this submodule actually grabs the raw weight readings from the scale and turns them into something sensible and useful.