summaryrefslogtreecommitdiff
path: root/peripheral/libupm/examples/javascript/grovelinefinder.js
diff options
context:
space:
mode:
authorLee Campbell <leecam@google.com>2016-07-26 19:32:41 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-07-26 19:32:41 +0000
commit431fae07a89bad8be2e0f5c7dfe5d9179f906007 (patch)
tree5d685088717c99f0fb93fca39027ca5b3ac3d81c /peripheral/libupm/examples/javascript/grovelinefinder.js
parent892fe7e667dbb4c86967c79ed524082b9f4662f1 (diff)
parentc05c4bf2de0aa0c665474f9b7cc9ceac3d9d331a (diff)
downloadintel-431fae07a89bad8be2e0f5c7dfe5d9179f906007.tar.gz
Remove sensors, lights, examples, mraa and upmHEADmastermain
am: c05c4bf2de Change-Id: I57a011fd270bd16911780ed6aaefe5e7cf4f0621
Diffstat (limited to 'peripheral/libupm/examples/javascript/grovelinefinder.js')
-rw-r--r--peripheral/libupm/examples/javascript/grovelinefinder.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/peripheral/libupm/examples/javascript/grovelinefinder.js b/peripheral/libupm/examples/javascript/grovelinefinder.js
deleted file mode 100644
index 85f0b96..0000000
--- a/peripheral/libupm/examples/javascript/grovelinefinder.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/*jslint node:true, vars:true, bitwise:true, unparam:true */
-/*jshint unused:true */
-/*global */
-/*
-* Author: Zion Orent <zorent@ics.com>
-* Copyright (c) 2014 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 lineFinderSensor = require('jsupm_grovelinefinder');
-
-// Instantiate a Grove line finder sensor on digital pin D2
-var myLineFinderSensor = new lineFinderSensor.GroveLineFinder(2);
-
-// Check every second for the presence of white detection
-setInterval(function()
-{
- if (myLineFinderSensor.whiteDetected())
- console.log("White detected.");
- else
- console.log("Black detected.");
-}, 1000);
-
-// Turn relay off when exiting
-process.on('SIGINT', function()
-{
- console.log("Exiting...");
- process.exit(0);
-});