stepmotor: updated Java example, added python & node.js examples

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Mihai Tudor Panu 2015-12-21 14:57:04 -08:00
parent c8e80bf6a3
commit 5bc9353bb4
3 changed files with 158 additions and 23 deletions

View File

@ -25,29 +25,32 @@
//NOT TESTED!!!
public class StepMotorSample {
public static void main(String[] args) throws InterruptedException {
// ! [Interesting]
upm_stepmotor.StepMotor sensor = new upm_stepmotor.StepMotor(4, 6);
public static void main(String[] args) throws InterruptedException {
// ! [Interesting]
upm_stepmotor.StepMotor sensor = new upm_stepmotor.StepMotor(2, 3);
while (true) {
sensor.setSpeed(500);
sensor.stepForward(500);
Thread.sleep(10);
sensor.stepBackwards(500);
Thread.sleep(10);
while (true) {
System.out.println("One complete rotation forward and back at 60 rpm.");
sensor.setSpeed(60);
sensor.stepForward(200);
Thread.sleep(1000);
sensor.stepBackwards(200);
Thread.sleep(1000);
sensor.setSpeed(750);
sensor.stepForward(500);
Thread.sleep(10);
sensor.stepBackwards(500);
Thread.sleep(10);
System.out.println("One complete rotation forward and back at 150 rpm.");
sensor.setSpeed(150);
sensor.stepForward(200);
Thread.sleep(1000);
sensor.stepBackwards(200);
Thread.sleep(1000);
sensor.setSpeed(1000);
sensor.stepForward(500);
Thread.sleep(10);
sensor.stepBackwards(500);
Thread.sleep(10);
}
// ! [Interesting]
}
}
System.out.println("One complete rotation forward and back at 300 rpm.");
sensor.setSpeed(300);
sensor.stepForward(200);
Thread.sleep(1000);
sensor.stepBackwards(200);
Thread.sleep(1000);
}
// ! [Interesting]
}
}

View File

@ -0,0 +1,68 @@
/*jslint node:true, vars:true, bitwise:true, unparam:true */
/*jshint unused:true */
/*
* Author: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
* Copyright (c) 2015 Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
var lib = require('jsupm_stepmotor');
// Instantiate a stepper motor driver on pins 2 (direction) and 3 (step)
var stepper = new lib.StepMotor(2, 3);
function delay(milliseconds) {
var startTime = Date.now();
while (Date.now() - startTime < milliseconds);
}
stepper.quit = function()
{
stepper = null;
lib.cleanUp();
lib = null;
console.log("Exiting");
process.exit(0);
};
// The driver is synchronous and blocking
console.log("Rotating 1 revolution forward and back at 60 rpm.");
stepper.setSpeed(60);
stepper.stepForward(200);
delay(1000);
stepper.stepBackwards(200);
delay(1000);
console.log("Rotating 1 revolution forward and back at 150 rpm.");
stepper.setSpeed(150);
stepper.stepForward(200);
delay(1000);
stepper.stepBackwards(200);
delay(1000);
console.log("Rotating 1 revolution forward and back at 300 rpm.");
stepper.setSpeed(300);
stepper.stepForward(200);
delay(1000);
stepper.stepBackwards(200);
delay(1000);
stepper.quit();

View File

@ -0,0 +1,64 @@
#!/usr/bin/python
# Author: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
# Copyright (c) 2015 Intel Corporation.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import time, sys, signal, atexit
import pyupm_stepmotor as mylib
# Instantiate a StepMotor object on pins 2 (dir) and 3 (step)
stepper = mylib.StepMotor(2, 3)
## Exit handlers ##
# This stops python from printing a stacktrace when you hit control-C
def SIGINTHandler(signum, frame):
raise SystemExit
# This lets you run code on exit
def exitHandler():
print "Exiting"
sys.exit(0)
# Register exit handlers
atexit.register(exitHandler)
signal.signal(signal.SIGINT, SIGINTHandler)
print "Rotating 1 revolution forward and back at 60 rpm."
stepper.setSpeed(60)
stepper.stepForward(200)
time.sleep(1)
stepper.stepBackwards(200)
time.sleep(1)
print "Rotating 1 revolution forward and back at 150 rpm."
stepper.setSpeed(150)
stepper.stepForward(200)
time.sleep(1)
stepper.stepBackwards(200)
time.sleep(1)
print "Rotating 1 revolution forward and back at 300 rpm."
stepper.setSpeed(300)
stepper.stepForward(200)
time.sleep(1)
stepper.stepBackwards(200)
time.sleep(1)