From ba52f522d4a24758e989815e5900275e32d5f75d Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Thu, 30 Mar 2017 17:54:52 -0700 Subject: [PATCH 01/33] Round scaled sensor values --- lib/sensor.js | 6 ++++-- test/sensor.js | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/sensor.js b/lib/sensor.js index 14697466e..c40b898a5 100644 --- a/lib/sensor.js +++ b/lib/sensor.js @@ -204,7 +204,7 @@ function Sensor(opts) { }, scaled: { get: function() { - var mapped, constrain; + var mapped, rounded, constrain; if (state.scale && raw !== null) { if (opts.type === "digital") { @@ -214,7 +214,9 @@ function Sensor(opts) { } mapped = Fn.fmap(raw, this.range[0], this.range[1], state.scale[0], state.scale[1]); - constrain = Fn.constrain(mapped, state.scale[0], state.scale[1]); + // Code.org: Round scaled sensor values + rounded = Math.round(mapped); + constrain = Fn.constrain(rounded, state.scale[0], state.scale[1]); return constrain; } diff --git a/test/sensor.js b/test/sensor.js index 1ed217c8a..5fed393a9 100644 --- a/test/sensor.js +++ b/test/sensor.js @@ -1075,7 +1075,8 @@ exports["Sensor - Analog"] = { // Ensure sensors may return float values this.sensor.scale([0, 102.3]); this.sensor.once("change", function() { - test.equal(this.value, 1.2000000476837158); + // Code.org: Scaled sensor values are rounded + test.equal(this.value, 1); }); callback(12); this.clock.tick(25); From 0ccbb2c4231f51826ac1ec1dd90e699e55b4bca7 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Thu, 30 Mar 2017 17:58:54 -0700 Subject: [PATCH 02/33] Updated examples --- docs/accelerometer-LIS3DH.md | 2 +- docs/accelerometer-MMA8452.md | 2 +- docs/accelerometer-adxl335.md | 2 +- docs/accelerometer-adxl345.md | 2 +- docs/accelerometer-mma7361.md | 2 +- docs/accelerometer-mpu6050.md | 2 +- docs/accelerometer-pan-tilt.md | 2 +- docs/accelerometer.md | 2 +- docs/altimeter-BMP085.md | 2 +- docs/altimeter-BMP180.md | 2 +- docs/altimeter-MS5611.md | 2 +- docs/altimeter-mpl3115a2.md | 2 +- docs/barometer-BMP085.md | 2 +- docs/barometer-BMP180.md | 2 +- docs/barometer-MS5611.md | 2 +- docs/barometer-mpl115a2.md | 2 +- docs/barometer-mpl3115a2.md | 2 +- docs/board-cleanup.md | 2 +- docs/board-multi.md | 2 +- docs/board-sampling-interval.md | 2 +- docs/board-with-port.md | 2 +- docs/board.md | 2 +- docs/boe-test-servos.md | 2 +- docs/brat.md | 2 +- docs/bug.md | 2 +- docs/button-EVS_EV3.md | 2 +- docs/button-EVS_NXT.md | 2 +- docs/button-bumper.md | 2 +- docs/button-collection-AT42QT1070.md | 2 +- docs/button-options.md | 2 +- docs/button-pullup.md | 2 +- docs/button.md | 2 +- docs/classic-controller.md | 2 +- docs/claw.md | 2 +- docs/color-EVS_EV3.md | 2 +- docs/color-EVS_NXT.md | 2 +- docs/color-ISL29125.md | 2 +- docs/color-raw-EVS_EV3.md | 2 +- docs/compass-MAG3110-tessel.md | 2 +- docs/compass-MAG3110.md | 2 +- docs/compass-hmc5883l.md | 2 +- docs/compass-hmc6352.md | 2 +- docs/custom-properties.md | 2 +- docs/edison-io-arduino.md | 2 +- docs/edison-io-miniboard.md | 2 +- docs/esc-PCA9685.md | 2 +- docs/esc-array.md | 2 +- docs/esc-bidirectional-forward-reverse.md | 2 +- docs/esc-bidirectional.md | 2 +- docs/esc-dualshock.md | 2 +- docs/esc-keypress.md | 2 +- docs/expander-74HC595.md | 2 +- docs/expander-CD74HC4067_NANO_BACKPACK.md | 2 +- docs/expander-LIS3DH.md | 2 +- docs/expander-MCP23008.md | 2 +- docs/expander-MCP23017.md | 2 +- docs/expander-MUXSHIELD2-analog-read.md | 2 +- docs/expander-MUXSHIELD2-mixed.md | 2 +- docs/expander-PCA9685.md | 2 +- docs/expander-PCF8574.md | 2 +- docs/expander-PCF8575.md | 2 +- docs/expander-PCF8591.md | 2 +- docs/galileo-io.md | 2 +- docs/gps-adafruit.md | 2 +- docs/gps.md | 2 +- docs/grove-accelerometer-adxl345-edison.md | 2 +- docs/grove-accelerometer-mma7660-edison.md | 2 +- docs/grove-barometer-edison.md | 2 +- docs/grove-button-edison.md | 2 +- docs/grove-button.md | 2 +- docs/grove-compass-edison.md | 2 +- docs/grove-flame-sensor-edison.md | 2 +- docs/grove-gas-mq2-edison.md | 2 +- docs/grove-gas-tp401-edison.md | 2 +- docs/grove-humidity-temperature-edison.md | 2 +- docs/grove-i2c-motor-driver-edison.md | 2 +- docs/grove-i2c-motor-driver.md | 2 +- docs/grove-joystick-edison.md | 2 +- docs/grove-joystick.md | 2 +- docs/grove-lcd-rgb-bgcolor-previewer-edison.md | 2 +- docs/grove-lcd-rgb-edison.md | 2 +- docs/grove-lcd-rgb-temperature-display-edison.md | 2 +- docs/grove-lcd-rgb-temperature-display.md | 2 +- docs/grove-lcd-rgb.md | 2 +- docs/grove-led-edison.md | 2 +- docs/grove-led.md | 2 +- docs/grove-light-sensor-edison.md | 2 +- docs/grove-moisture-edison.md | 2 +- docs/grove-q-touch.md | 2 +- docs/grove-relay-edison.md | 2 +- docs/grove-rotary-potentiometer-edison.md | 2 +- docs/grove-rotary-potentiometer.md | 2 +- docs/grove-servo-edison.md | 2 +- docs/grove-servo.md | 2 +- docs/grove-touch-edison.md | 2 +- docs/grove-touch.md | 2 +- docs/gyro-lpr5150l.md | 2 +- docs/gyro-mpu6050.md | 2 +- docs/gyro.md | 2 +- docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-TH02.md | 2 +- docs/hygrometer-htu21d.md | 2 +- docs/hygrometer-sht31d.md | 2 +- docs/imp-io.md | 2 +- docs/imu-bno055-orientation.md | 2 +- docs/imu-bno055.md | 2 +- docs/imu-mpu6050.md | 2 +- docs/ir-motion.md | 2 +- docs/ir-proximity.md | 2 +- docs/ir-reflect-array.md | 2 +- docs/ir-reflect.md | 2 +- docs/joystick-esplora.md | 2 +- docs/joystick-pantilt.md | 2 +- docs/joystick-shield.md | 2 +- docs/joystick.md | 2 +- docs/keypad-3X4_I2C_NANO_BACKPACK.md | 2 +- docs/keypad-MPR121-sensitivity.md | 2 +- docs/keypad-MPR121.md | 2 +- docs/keypad-MPR121QR2_SHIELD.md | 2 +- docs/keypad-MPR121_KEYPAD.md | 2 +- docs/keypad-MPR121_SHIELD.md | 2 +- docs/keypad-QTOUCH.md | 2 +- docs/keypad-analog-ad.md | 2 +- docs/keypad-analog-vkey.md | 2 +- docs/kinect-arm-controller.md | 2 +- docs/laser-trip-wire.md | 2 +- docs/lcd-16x2-tessel.md | 2 +- docs/lcd-enumeratechars.md | 2 +- docs/lcd-i2c-PCF8574.md | 2 +- docs/lcd-i2c-runner.md | 2 +- docs/lcd-i2c.md | 2 +- docs/lcd-rgb-bgcolor-previewer-tessel.md | 2 +- docs/lcd-rgb-bgcolor-previewer.md | 2 +- docs/lcd-rgb-tessel-grove-JHD1313M1.md | 2 +- docs/lcd-runner-20x4.md | 2 +- docs/lcd-runner.md | 2 +- docs/lcd.md | 2 +- docs/led-PCA9685.md | 2 +- docs/led-array-controller.md | 2 +- docs/led-array.md | 2 +- docs/led-blink.md | 2 +- docs/led-chars-demo.md | 2 +- docs/led-demo-sequence.md | 2 +- docs/led-digits-clock-HT16K33.md | 2 +- docs/led-digits-clock-dual.md | 2 +- docs/led-digits-clock.md | 2 +- docs/led-enumeratechars.md | 2 +- docs/led-fade-animation.md | 2 +- docs/led-fade-callback.md | 2 +- docs/led-fade.md | 2 +- docs/led-matrix-HT16K33-16x8.md | 2 +- docs/led-matrix-HT16K33.md | 2 +- docs/led-matrix-tutorial.md | 2 +- docs/led-matrix.md | 2 +- docs/led-pulse-animation.md | 2 +- docs/led-pulse.md | 2 +- docs/led-rainbow.md | 2 +- docs/led-rgb-BLINKM.md | 2 +- docs/led-rgb-anode-PCA9685.md | 2 +- docs/led-rgb-anode.md | 2 +- docs/led-rgb-intensity.md | 2 +- docs/led-rgb.md | 2 +- docs/led-slider.md | 2 +- docs/led-tessel-servo-module.md | 2 +- docs/led.md | 2 +- docs/light-ambient-EVS_EV3.md | 2 +- docs/light-ambient-EVS_NXT.md | 2 +- docs/light-reflected-EVS_EV3.md | 2 +- docs/light-reflected-EVS_NXT.md | 2 +- docs/line-follower.md | 2 +- docs/magnetometer-log.md | 2 +- docs/magnetometer-north.md | 2 +- docs/magnetometer.md | 2 +- docs/micromagician-accelerometer.md | 2 +- docs/micromagician-motor.md | 2 +- docs/micromagician-servo.md | 2 +- docs/microphone.md | 2 +- docs/motion-GP2Y0A60SZLF.md | 2 +- docs/motion-gp2y0d805z0f.md | 2 +- docs/motion-gp2y0d810z0f.md | 2 +- docs/motion-gp2y0d815z0f.md | 2 +- docs/motion.md | 2 +- docs/motobot.md | 2 +- docs/motor-3-pin.md | 2 +- docs/motor-EVS_EV3.md | 2 +- docs/motor-EVS_NXT.md | 2 +- docs/motor-GROVE_I2C.md | 2 +- docs/motor-LUDUS.md | 2 +- docs/motor-PCA9685.md | 2 +- docs/motor-brake.md | 2 +- docs/motor-current.md | 2 +- docs/motor-directional.md | 2 +- docs/motor-enable.md | 2 +- docs/motor-hbridge.md | 2 +- docs/motor-sparkfun-edison-hbridge.md | 2 +- docs/motor.md | 2 +- docs/multi-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/multi-MS5611.md | 2 +- docs/multi-SI7020.md | 2 +- docs/multi-TH02.md | 2 +- docs/multi-bmp085.md | 2 +- docs/multi-bmp180.md | 2 +- docs/multi-htu21d.md | 2 +- docs/multi-mpl115a2.md | 2 +- docs/multi-mpl3115a2.md | 2 +- docs/multi-sht31d.md | 2 +- docs/navigator.md | 2 +- docs/nodebot.md | 2 +- docs/nunchuk.md | 2 +- docs/pcduino-io.md | 2 +- docs/phoenix.md | 2 +- docs/photoresistor.md | 2 +- docs/piezo.md | 2 +- docs/pin.md | 2 +- docs/plugin.md | 2 +- docs/potentiometer.md | 2 +- docs/proximity-EVS_EV3_IR-alert.md | 2 +- docs/proximity-EVS_EV3_IR.md | 2 +- docs/proximity-EVS_EV3_US-alert.md | 2 +- docs/proximity-EVS_EV3_US.md | 2 +- docs/proximity-GP2Y0A710K0F.md | 2 +- docs/proximity-hcsr04-analog.md | 2 +- docs/proximity-hcsr04-i2c.md | 2 +- docs/proximity-hcsr04.md | 2 +- docs/proximity-lidarlite.md | 2 +- docs/proximity-mb1000.md | 2 +- docs/proximity-mb1003.md | 2 +- docs/proximity-mb1010.md | 2 +- docs/proximity-mb1230.md | 2 +- docs/proximity-srf10.md | 2 +- docs/proximity.md | 2 +- docs/radar.md | 2 +- docs/raspi-io.md | 2 +- docs/relay-collection.md | 2 +- docs/relay.md | 2 +- docs/repl.md | 2 +- docs/sensor-fsr.md | 2 +- docs/sensor-photon-weather-shield-moisture.md | 2 +- docs/sensor-slider.md | 2 +- docs/sensor.md | 2 +- docs/servo-PCA9685.md | 2 +- docs/servo-animation-leg.md | 2 +- docs/servo-animation.md | 2 +- docs/servo-array.md | 2 +- docs/servo-continuous.md | 2 +- docs/servo-drive.md | 2 +- docs/servo-prompt.md | 2 +- docs/servo-slider.md | 2 +- docs/servo-sweep.md | 2 +- docs/servo-tessel-servo-module.md | 2 +- docs/servo.md | 2 +- docs/shift-register-daisy-chain-anode.md | 2 +- docs/shift-register-daisy-chain.md | 2 +- docs/shift-register-seven-segment-anode.md | 2 +- docs/shift-register-seven-segment.md | 2 +- docs/shift-register.md | 2 +- docs/spark-io.md | 2 +- docs/stepper-driver.md | 2 +- docs/stepper-sweep.md | 2 +- docs/switch-magnetic-door.md | 2 +- docs/switch-tilt-SW_200D.md | 2 +- docs/temperature-BMP180.md | 2 +- docs/temperature-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-MCP9808.md | 2 +- docs/temperature-MS5611.md | 2 +- docs/temperature-SI7020.md | 2 +- docs/temperature-TH02.md | 2 +- docs/temperature-bmp085.md | 2 +- docs/temperature-ds18b20.md | 2 +- docs/temperature-htu21d.md | 2 +- docs/temperature-lm335.md | 2 +- docs/temperature-lm35.md | 2 +- docs/temperature-max31850k.md | 2 +- docs/temperature-mpl115a2.md | 2 +- docs/temperature-mpl3115a2.md | 2 +- docs/temperature-mpu6050.md | 2 +- docs/temperature-sht31d.md | 2 +- docs/temperature-tmp102.md | 2 +- docs/temperature-tmp36.md | 2 +- docs/tinkerkit-accelerometer.md | 2 +- docs/tinkerkit-blink.md | 2 +- docs/tinkerkit-button.md | 2 +- docs/tinkerkit-combo.md | 2 +- docs/tinkerkit-continuous-servo.md | 2 +- docs/tinkerkit-gyroscope.md | 2 +- docs/tinkerkit-joystick.md | 2 +- docs/tinkerkit-linear-pot.md | 2 +- docs/tinkerkit-rotary.md | 2 +- docs/tinkerkit-thermistor.md | 2 +- docs/tinkerkit-tilt.md | 2 +- docs/tinkerkit-touch.md | 2 +- docs/toggle-switch.md | 2 +- docs/whisker.md | 2 +- 293 files changed, 293 insertions(+), 293 deletions(-) diff --git a/docs/accelerometer-LIS3DH.md b/docs/accelerometer-LIS3DH.md index 656fbe79d..4513b3f28 100644 --- a/docs/accelerometer-LIS3DH.md +++ b/docs/accelerometer-LIS3DH.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-MMA8452.md b/docs/accelerometer-MMA8452.md index bb9fb8a05..2dfd84d86 100644 --- a/docs/accelerometer-MMA8452.md +++ b/docs/accelerometer-MMA8452.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-adxl335.md b/docs/accelerometer-adxl335.md index 67c03fb16..3f9f2246c 100644 --- a/docs/accelerometer-adxl335.md +++ b/docs/accelerometer-adxl335.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-adxl345.md b/docs/accelerometer-adxl345.md index ca1153a82..2bd7ae309 100644 --- a/docs/accelerometer-adxl345.md +++ b/docs/accelerometer-adxl345.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-mma7361.md b/docs/accelerometer-mma7361.md index 9b5ba4b72..acc84ad1c 100644 --- a/docs/accelerometer-mma7361.md +++ b/docs/accelerometer-mma7361.md @@ -82,7 +82,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-mpu6050.md b/docs/accelerometer-mpu6050.md index ecee41f1d..1b3e0185b 100644 --- a/docs/accelerometer-mpu6050.md +++ b/docs/accelerometer-mpu6050.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-pan-tilt.md b/docs/accelerometer-pan-tilt.md index e10668394..1c3ee1e04 100644 --- a/docs/accelerometer-pan-tilt.md +++ b/docs/accelerometer-pan-tilt.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer.md b/docs/accelerometer.md index 688bd1d03..d47e35573 100644 --- a/docs/accelerometer.md +++ b/docs/accelerometer.md @@ -134,7 +134,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-BMP085.md b/docs/altimeter-BMP085.md index e3fd69c38..6cb2df92d 100644 --- a/docs/altimeter-BMP085.md +++ b/docs/altimeter-BMP085.md @@ -114,7 +114,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-BMP180.md b/docs/altimeter-BMP180.md index 9e96b0041..bb2601fa9 100644 --- a/docs/altimeter-BMP180.md +++ b/docs/altimeter-BMP180.md @@ -116,7 +116,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-MS5611.md b/docs/altimeter-MS5611.md index 7343d8920..783e100fa 100644 --- a/docs/altimeter-MS5611.md +++ b/docs/altimeter-MS5611.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-mpl3115a2.md b/docs/altimeter-mpl3115a2.md index 367ac9d1f..96c63c6c4 100644 --- a/docs/altimeter-mpl3115a2.md +++ b/docs/altimeter-mpl3115a2.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-BMP085.md b/docs/barometer-BMP085.md index 4551c2e29..e73f62583 100644 --- a/docs/barometer-BMP085.md +++ b/docs/barometer-BMP085.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-BMP180.md b/docs/barometer-BMP180.md index 197c088cc..fa4b5c8ed 100644 --- a/docs/barometer-BMP180.md +++ b/docs/barometer-BMP180.md @@ -80,7 +80,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-MS5611.md b/docs/barometer-MS5611.md index 1baac2e3c..0bbdf9587 100644 --- a/docs/barometer-MS5611.md +++ b/docs/barometer-MS5611.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-mpl115a2.md b/docs/barometer-mpl115a2.md index 343c4a2b3..8b4c1fd0e 100644 --- a/docs/barometer-mpl115a2.md +++ b/docs/barometer-mpl115a2.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-mpl3115a2.md b/docs/barometer-mpl3115a2.md index 7bacbe1c3..0ec6f2d8a 100644 --- a/docs/barometer-mpl3115a2.md +++ b/docs/barometer-mpl3115a2.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-cleanup.md b/docs/board-cleanup.md index 7aa4bb1c4..1890b3706 100644 --- a/docs/board-cleanup.md +++ b/docs/board-cleanup.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-multi.md b/docs/board-multi.md index fdeaf71e0..3fb1c2e8f 100644 --- a/docs/board-multi.md +++ b/docs/board-multi.md @@ -103,7 +103,7 @@ boards.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-sampling-interval.md b/docs/board-sampling-interval.md index 14bbfc8c4..89b58a08a 100644 --- a/docs/board-sampling-interval.md +++ b/docs/board-sampling-interval.md @@ -63,7 +63,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-with-port.md b/docs/board-with-port.md index 17fdfc544..b54b59641 100644 --- a/docs/board-with-port.md +++ b/docs/board-with-port.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board.md b/docs/board.md index e4da3b21c..e4de6210f 100644 --- a/docs/board.md +++ b/docs/board.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/boe-test-servos.md b/docs/boe-test-servos.md index 46d878f2b..fc0e9f687 100644 --- a/docs/boe-test-servos.md +++ b/docs/boe-test-servos.md @@ -286,7 +286,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/brat.md b/docs/brat.md index 24474ce15..fce5942b3 100644 --- a/docs/brat.md +++ b/docs/brat.md @@ -647,7 +647,7 @@ Example control of biped robot ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/bug.md b/docs/bug.md index 2a62220d6..c870e17d6 100644 --- a/docs/bug.md +++ b/docs/bug.md @@ -233,7 +233,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-EVS_EV3.md b/docs/button-EVS_EV3.md index 2378b6b66..bcd375591 100644 --- a/docs/button-EVS_EV3.md +++ b/docs/button-EVS_EV3.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-EVS_NXT.md b/docs/button-EVS_NXT.md index 32bd40982..5839b6e4f 100644 --- a/docs/button-EVS_NXT.md +++ b/docs/button-EVS_NXT.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-bumper.md b/docs/button-bumper.md index 3c7a3f0f0..69a217a41 100644 --- a/docs/button-bumper.md +++ b/docs/button-bumper.md @@ -64,7 +64,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-collection-AT42QT1070.md b/docs/button-collection-AT42QT1070.md index 88958ebcc..eb6102c13 100644 --- a/docs/button-collection-AT42QT1070.md +++ b/docs/button-collection-AT42QT1070.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-options.md b/docs/button-options.md index cda0be0ae..704212717 100644 --- a/docs/button-options.md +++ b/docs/button-options.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-pullup.md b/docs/button-pullup.md index 95220e401..d33d5f0dd 100644 --- a/docs/button-pullup.md +++ b/docs/button-pullup.md @@ -79,7 +79,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button.md b/docs/button.md index e7ebfd63d..df52f3d9b 100644 --- a/docs/button.md +++ b/docs/button.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/classic-controller.md b/docs/classic-controller.md index 4358921ad..683af2570 100644 --- a/docs/classic-controller.md +++ b/docs/classic-controller.md @@ -133,7 +133,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/claw.md b/docs/claw.md index 8dc1f8b26..b654a9ca1 100644 --- a/docs/claw.md +++ b/docs/claw.md @@ -78,7 +78,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-EVS_EV3.md b/docs/color-EVS_EV3.md index 574773da7..5f718a027 100644 --- a/docs/color-EVS_EV3.md +++ b/docs/color-EVS_EV3.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-EVS_NXT.md b/docs/color-EVS_NXT.md index 4402b0fbe..9d48b6605 100644 --- a/docs/color-EVS_NXT.md +++ b/docs/color-EVS_NXT.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-ISL29125.md b/docs/color-ISL29125.md index eb9612dca..66f674480 100644 --- a/docs/color-ISL29125.md +++ b/docs/color-ISL29125.md @@ -51,7 +51,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-raw-EVS_EV3.md b/docs/color-raw-EVS_EV3.md index a0f08329b..7fc9bb2d0 100644 --- a/docs/color-raw-EVS_EV3.md +++ b/docs/color-raw-EVS_EV3.md @@ -50,7 +50,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-MAG3110-tessel.md b/docs/compass-MAG3110-tessel.md index 81a758346..fd773724e 100644 --- a/docs/compass-MAG3110-tessel.md +++ b/docs/compass-MAG3110-tessel.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-MAG3110.md b/docs/compass-MAG3110.md index 112a44ac4..683260df7 100644 --- a/docs/compass-MAG3110.md +++ b/docs/compass-MAG3110.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-hmc5883l.md b/docs/compass-hmc5883l.md index bb611c5f4..2968e32ff 100644 --- a/docs/compass-hmc5883l.md +++ b/docs/compass-hmc5883l.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-hmc6352.md b/docs/compass-hmc6352.md index a49308c13..26c4f36f1 100644 --- a/docs/compass-hmc6352.md +++ b/docs/compass-hmc6352.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/custom-properties.md b/docs/custom-properties.md index 87d2d95a3..18372b65e 100644 --- a/docs/custom-properties.md +++ b/docs/custom-properties.md @@ -52,7 +52,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/edison-io-arduino.md b/docs/edison-io-arduino.md index 5dadd9948..71de79f4d 100644 --- a/docs/edison-io-arduino.md +++ b/docs/edison-io-arduino.md @@ -83,7 +83,7 @@ npm install johnny-five edison-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/edison-io-miniboard.md b/docs/edison-io-miniboard.md index f0379ecff..6e67302fe 100644 --- a/docs/edison-io-miniboard.md +++ b/docs/edison-io-miniboard.md @@ -83,7 +83,7 @@ npm install johnny-five edison-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-PCA9685.md b/docs/esc-PCA9685.md index 2d9b5f32d..da022d19b 100644 --- a/docs/esc-PCA9685.md +++ b/docs/esc-PCA9685.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-array.md b/docs/esc-array.md index 04a81074a..6ab4b4e72 100644 --- a/docs/esc-array.md +++ b/docs/esc-array.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-bidirectional-forward-reverse.md b/docs/esc-bidirectional-forward-reverse.md index 91f7a9efc..0d9fb91af 100644 --- a/docs/esc-bidirectional-forward-reverse.md +++ b/docs/esc-bidirectional-forward-reverse.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-bidirectional.md b/docs/esc-bidirectional.md index 90000036c..74d95eaeb 100644 --- a/docs/esc-bidirectional.md +++ b/docs/esc-bidirectional.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-dualshock.md b/docs/esc-dualshock.md index ea161604b..578d9db34 100644 --- a/docs/esc-dualshock.md +++ b/docs/esc-dualshock.md @@ -99,7 +99,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-keypress.md b/docs/esc-keypress.md index ed43ac308..994757ff6 100644 --- a/docs/esc-keypress.md +++ b/docs/esc-keypress.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-74HC595.md b/docs/expander-74HC595.md index ffe6ec763..1d0882907 100644 --- a/docs/expander-74HC595.md +++ b/docs/expander-74HC595.md @@ -69,7 +69,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-CD74HC4067_NANO_BACKPACK.md b/docs/expander-CD74HC4067_NANO_BACKPACK.md index de4cd7811..d5aaf2874 100644 --- a/docs/expander-CD74HC4067_NANO_BACKPACK.md +++ b/docs/expander-CD74HC4067_NANO_BACKPACK.md @@ -98,7 +98,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-LIS3DH.md b/docs/expander-LIS3DH.md index 89026740f..0dfa521ce 100644 --- a/docs/expander-LIS3DH.md +++ b/docs/expander-LIS3DH.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MCP23008.md b/docs/expander-MCP23008.md index 4abfc976c..e73231b74 100644 --- a/docs/expander-MCP23008.md +++ b/docs/expander-MCP23008.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MCP23017.md b/docs/expander-MCP23017.md index b794bdeec..5e51f6a7f 100644 --- a/docs/expander-MCP23017.md +++ b/docs/expander-MCP23017.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MUXSHIELD2-analog-read.md b/docs/expander-MUXSHIELD2-analog-read.md index ccc5e42b0..615d43081 100644 --- a/docs/expander-MUXSHIELD2-analog-read.md +++ b/docs/expander-MUXSHIELD2-analog-read.md @@ -83,7 +83,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MUXSHIELD2-mixed.md b/docs/expander-MUXSHIELD2-mixed.md index 0b2595c00..9e4684dde 100644 --- a/docs/expander-MUXSHIELD2-mixed.md +++ b/docs/expander-MUXSHIELD2-mixed.md @@ -118,7 +118,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCA9685.md b/docs/expander-PCA9685.md index 1d55c2260..f9b43c1b6 100644 --- a/docs/expander-PCA9685.md +++ b/docs/expander-PCA9685.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8574.md b/docs/expander-PCF8574.md index 1efb50f69..d647b1482 100644 --- a/docs/expander-PCF8574.md +++ b/docs/expander-PCF8574.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8575.md b/docs/expander-PCF8575.md index 065e8d12d..a756e2add 100644 --- a/docs/expander-PCF8575.md +++ b/docs/expander-PCF8575.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8591.md b/docs/expander-PCF8591.md index b324e3de0..9f29746fb 100644 --- a/docs/expander-PCF8591.md +++ b/docs/expander-PCF8591.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/galileo-io.md b/docs/galileo-io.md index 9b8edd331..7d0aba5f9 100644 --- a/docs/galileo-io.md +++ b/docs/galileo-io.md @@ -83,7 +83,7 @@ npm install johnny-five galileo-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps-adafruit.md b/docs/gps-adafruit.md index db8e12013..36bfa3723 100644 --- a/docs/gps-adafruit.md +++ b/docs/gps-adafruit.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps.md b/docs/gps.md index 304f0dd15..c29f6fb65 100644 --- a/docs/gps.md +++ b/docs/gps.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-accelerometer-adxl345-edison.md b/docs/grove-accelerometer-adxl345-edison.md index a0b2c02c0..bae5044d6 100644 --- a/docs/grove-accelerometer-adxl345-edison.md +++ b/docs/grove-accelerometer-adxl345-edison.md @@ -75,7 +75,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-accelerometer-mma7660-edison.md b/docs/grove-accelerometer-mma7660-edison.md index 8e0aa1224..b9ce4b695 100644 --- a/docs/grove-accelerometer-mma7660-edison.md +++ b/docs/grove-accelerometer-mma7660-edison.md @@ -75,7 +75,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-barometer-edison.md b/docs/grove-barometer-edison.md index e6d24075d..5e05dac34 100644 --- a/docs/grove-barometer-edison.md +++ b/docs/grove-barometer-edison.md @@ -69,7 +69,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-button-edison.md b/docs/grove-button-edison.md index bc1bb538c..fbe88a1a3 100644 --- a/docs/grove-button-edison.md +++ b/docs/grove-button-edison.md @@ -77,7 +77,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-button.md b/docs/grove-button.md index 79f4e44b8..78334faf4 100644 --- a/docs/grove-button.md +++ b/docs/grove-button.md @@ -70,7 +70,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-compass-edison.md b/docs/grove-compass-edison.md index f143fe060..d1fe2ae05 100644 --- a/docs/grove-compass-edison.md +++ b/docs/grove-compass-edison.md @@ -77,7 +77,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-flame-sensor-edison.md b/docs/grove-flame-sensor-edison.md index a47c87ed0..77de781b7 100644 --- a/docs/grove-flame-sensor-edison.md +++ b/docs/grove-flame-sensor-edison.md @@ -72,7 +72,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-gas-mq2-edison.md b/docs/grove-gas-mq2-edison.md index 4947ed6d7..19789d511 100644 --- a/docs/grove-gas-mq2-edison.md +++ b/docs/grove-gas-mq2-edison.md @@ -73,7 +73,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-gas-tp401-edison.md b/docs/grove-gas-tp401-edison.md index 07a88a022..060410708 100644 --- a/docs/grove-gas-tp401-edison.md +++ b/docs/grove-gas-tp401-edison.md @@ -113,7 +113,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-humidity-temperature-edison.md b/docs/grove-humidity-temperature-edison.md index b26fb7239..c8972500d 100644 --- a/docs/grove-humidity-temperature-edison.md +++ b/docs/grove-humidity-temperature-edison.md @@ -84,7 +84,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-i2c-motor-driver-edison.md b/docs/grove-i2c-motor-driver-edison.md index a68635940..41271da03 100644 --- a/docs/grove-i2c-motor-driver-edison.md +++ b/docs/grove-i2c-motor-driver-edison.md @@ -91,7 +91,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-i2c-motor-driver.md b/docs/grove-i2c-motor-driver.md index e1ec5a916..0c629cb9f 100644 --- a/docs/grove-i2c-motor-driver.md +++ b/docs/grove-i2c-motor-driver.md @@ -83,7 +83,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-joystick-edison.md b/docs/grove-joystick-edison.md index 484d03496..36c6962a4 100644 --- a/docs/grove-joystick-edison.md +++ b/docs/grove-joystick-edison.md @@ -71,7 +71,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-joystick.md b/docs/grove-joystick.md index 681de6371..8e0f08452 100644 --- a/docs/grove-joystick.md +++ b/docs/grove-joystick.md @@ -62,7 +62,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-bgcolor-previewer-edison.md b/docs/grove-lcd-rgb-bgcolor-previewer-edison.md index cceec55c2..f0a911379 100644 --- a/docs/grove-lcd-rgb-bgcolor-previewer-edison.md +++ b/docs/grove-lcd-rgb-bgcolor-previewer-edison.md @@ -73,7 +73,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-edison.md b/docs/grove-lcd-rgb-edison.md index 7e2b99811..67cdeaf10 100644 --- a/docs/grove-lcd-rgb-edison.md +++ b/docs/grove-lcd-rgb-edison.md @@ -88,7 +88,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-temperature-display-edison.md b/docs/grove-lcd-rgb-temperature-display-edison.md index 124ac37cd..a7581af00 100644 --- a/docs/grove-lcd-rgb-temperature-display-edison.md +++ b/docs/grove-lcd-rgb-temperature-display-edison.md @@ -106,7 +106,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-temperature-display.md b/docs/grove-lcd-rgb-temperature-display.md index f22d46197..f80fd3254 100644 --- a/docs/grove-lcd-rgb-temperature-display.md +++ b/docs/grove-lcd-rgb-temperature-display.md @@ -114,7 +114,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb.md b/docs/grove-lcd-rgb.md index ac32ead6d..9ff23d21a 100644 --- a/docs/grove-lcd-rgb.md +++ b/docs/grove-lcd-rgb.md @@ -92,7 +92,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-led-edison.md b/docs/grove-led-edison.md index f541adcd1..f3af1e506 100644 --- a/docs/grove-led-edison.md +++ b/docs/grove-led-edison.md @@ -78,7 +78,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-led.md b/docs/grove-led.md index 526127226..c50d0c2d1 100644 --- a/docs/grove-led.md +++ b/docs/grove-led.md @@ -71,7 +71,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-light-sensor-edison.md b/docs/grove-light-sensor-edison.md index fc3a659fd..c0a159383 100644 --- a/docs/grove-light-sensor-edison.md +++ b/docs/grove-light-sensor-edison.md @@ -67,7 +67,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-moisture-edison.md b/docs/grove-moisture-edison.md index 7c0f22f53..2d127bc9b 100644 --- a/docs/grove-moisture-edison.md +++ b/docs/grove-moisture-edison.md @@ -78,7 +78,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-q-touch.md b/docs/grove-q-touch.md index 2f98f3de0..1afc3f7dd 100644 --- a/docs/grove-q-touch.md +++ b/docs/grove-q-touch.md @@ -92,7 +92,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-relay-edison.md b/docs/grove-relay-edison.md index 70803339c..394ecaee2 100644 --- a/docs/grove-relay-edison.md +++ b/docs/grove-relay-edison.md @@ -68,7 +68,7 @@ Learn More At: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-rotary-potentiometer-edison.md b/docs/grove-rotary-potentiometer-edison.md index 78846e54b..30fce0ef6 100644 --- a/docs/grove-rotary-potentiometer-edison.md +++ b/docs/grove-rotary-potentiometer-edison.md @@ -95,7 +95,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-rotary-potentiometer.md b/docs/grove-rotary-potentiometer.md index 069d56553..20ab6c974 100644 --- a/docs/grove-rotary-potentiometer.md +++ b/docs/grove-rotary-potentiometer.md @@ -88,7 +88,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-servo-edison.md b/docs/grove-servo-edison.md index 0d8d38a7e..f8092ee63 100644 --- a/docs/grove-servo-edison.md +++ b/docs/grove-servo-edison.md @@ -75,7 +75,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-servo.md b/docs/grove-servo.md index 6f179fd20..719fb72ce 100644 --- a/docs/grove-servo.md +++ b/docs/grove-servo.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-touch-edison.md b/docs/grove-touch-edison.md index 7efafe896..8e3e56a33 100644 --- a/docs/grove-touch-edison.md +++ b/docs/grove-touch-edison.md @@ -79,7 +79,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-touch.md b/docs/grove-touch.md index a9514746d..a86ce1230 100644 --- a/docs/grove-touch.md +++ b/docs/grove-touch.md @@ -72,7 +72,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro-lpr5150l.md b/docs/gyro-lpr5150l.md index a62cd94d0..cb1c5545e 100644 --- a/docs/gyro-lpr5150l.md +++ b/docs/gyro-lpr5150l.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro-mpu6050.md b/docs/gyro-mpu6050.md index 06574335e..06b8e666e 100644 --- a/docs/gyro-mpu6050.md +++ b/docs/gyro-mpu6050.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro.md b/docs/gyro.md index aad2b79b8..5cd7d9995 100644 --- a/docs/gyro.md +++ b/docs/gyro.md @@ -113,7 +113,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md index dac51e164..a82b52e72 100644 --- a/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-TH02.md b/docs/hygrometer-TH02.md index 4352b91ea..ea4dc3d08 100644 --- a/docs/hygrometer-TH02.md +++ b/docs/hygrometer-TH02.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-htu21d.md b/docs/hygrometer-htu21d.md index 47a69cf39..b71e7491e 100644 --- a/docs/hygrometer-htu21d.md +++ b/docs/hygrometer-htu21d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-sht31d.md b/docs/hygrometer-sht31d.md index 31331e675..2bbee6bb3 100644 --- a/docs/hygrometer-sht31d.md +++ b/docs/hygrometer-sht31d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imp-io.md b/docs/imp-io.md index d75772a58..9e1f4a6b2 100644 --- a/docs/imp-io.md +++ b/docs/imp-io.md @@ -101,7 +101,7 @@ source ~/.imprc ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-bno055-orientation.md b/docs/imu-bno055-orientation.md index eee7468b8..002e0a10a 100644 --- a/docs/imu-bno055-orientation.md +++ b/docs/imu-bno055-orientation.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-bno055.md b/docs/imu-bno055.md index 57e69ab6d..436c02d30 100644 --- a/docs/imu-bno055.md +++ b/docs/imu-bno055.md @@ -110,7 +110,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-mpu6050.md b/docs/imu-mpu6050.md index 447fe9da9..c8342fd13 100644 --- a/docs/imu-mpu6050.md +++ b/docs/imu-mpu6050.md @@ -85,7 +85,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-motion.md b/docs/ir-motion.md index 974747c22..dd1d514dc 100644 --- a/docs/ir-motion.md +++ b/docs/ir-motion.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-proximity.md b/docs/ir-proximity.md index d022e1e10..69d0f27db 100644 --- a/docs/ir-proximity.md +++ b/docs/ir-proximity.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-reflect-array.md b/docs/ir-reflect-array.md index 967e92e6f..657ee02b2 100644 --- a/docs/ir-reflect-array.md +++ b/docs/ir-reflect-array.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-reflect.md b/docs/ir-reflect.md index ee0a063df..de54cdbd5 100644 --- a/docs/ir-reflect.md +++ b/docs/ir-reflect.md @@ -60,7 +60,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-esplora.md b/docs/joystick-esplora.md index 70dd77e4d..200f3f1a8 100644 --- a/docs/joystick-esplora.md +++ b/docs/joystick-esplora.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-pantilt.md b/docs/joystick-pantilt.md index 34bd4fed4..6ed84be3b 100644 --- a/docs/joystick-pantilt.md +++ b/docs/joystick-pantilt.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-shield.md b/docs/joystick-shield.md index c75e91dd9..2b28bcdde 100644 --- a/docs/joystick-shield.md +++ b/docs/joystick-shield.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick.md b/docs/joystick.md index a1d57a2ef..62edbf077 100644 --- a/docs/joystick.md +++ b/docs/joystick.md @@ -79,7 +79,7 @@ Fritzing diagram: [docs/breadboard/joystick-adafruit.fzz](breadboard/joystick-ad ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-3X4_I2C_NANO_BACKPACK.md b/docs/keypad-3X4_I2C_NANO_BACKPACK.md index 4cc292992..372a54492 100644 --- a/docs/keypad-3X4_I2C_NANO_BACKPACK.md +++ b/docs/keypad-3X4_I2C_NANO_BACKPACK.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121-sensitivity.md b/docs/keypad-MPR121-sensitivity.md index 459b19bf4..7eefbd9af 100644 --- a/docs/keypad-MPR121-sensitivity.md +++ b/docs/keypad-MPR121-sensitivity.md @@ -101,7 +101,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121.md b/docs/keypad-MPR121.md index 2a2f893f1..39fa32664 100644 --- a/docs/keypad-MPR121.md +++ b/docs/keypad-MPR121.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121QR2_SHIELD.md b/docs/keypad-MPR121QR2_SHIELD.md index 9207c5c78..e24a8956d 100644 --- a/docs/keypad-MPR121QR2_SHIELD.md +++ b/docs/keypad-MPR121QR2_SHIELD.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121_KEYPAD.md b/docs/keypad-MPR121_KEYPAD.md index 215a71ad3..1841204f1 100644 --- a/docs/keypad-MPR121_KEYPAD.md +++ b/docs/keypad-MPR121_KEYPAD.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121_SHIELD.md b/docs/keypad-MPR121_SHIELD.md index 8f46efdf0..b896866b2 100644 --- a/docs/keypad-MPR121_SHIELD.md +++ b/docs/keypad-MPR121_SHIELD.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-QTOUCH.md b/docs/keypad-QTOUCH.md index a5ba51cf7..8f8886e64 100644 --- a/docs/keypad-QTOUCH.md +++ b/docs/keypad-QTOUCH.md @@ -87,7 +87,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-analog-ad.md b/docs/keypad-analog-ad.md index 15fad8cc6..c998d9a14 100644 --- a/docs/keypad-analog-ad.md +++ b/docs/keypad-analog-ad.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-analog-vkey.md b/docs/keypad-analog-vkey.md index ed40cd210..42a4521b5 100644 --- a/docs/keypad-analog-vkey.md +++ b/docs/keypad-analog-vkey.md @@ -90,7 +90,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/kinect-arm-controller.md b/docs/kinect-arm-controller.md index 807496deb..b246ef215 100644 --- a/docs/kinect-arm-controller.md +++ b/docs/kinect-arm-controller.md @@ -425,7 +425,7 @@ Illustrates arm joint connections. ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/laser-trip-wire.md b/docs/laser-trip-wire.md index 2b5d6ff78..30b58e180 100644 --- a/docs/laser-trip-wire.md +++ b/docs/laser-trip-wire.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-16x2-tessel.md b/docs/lcd-16x2-tessel.md index 83fae81fc..bec777847 100644 --- a/docs/lcd-16x2-tessel.md +++ b/docs/lcd-16x2-tessel.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-enumeratechars.md b/docs/lcd-enumeratechars.md index 2fd1a1c4f..4f335cbc2 100644 --- a/docs/lcd-enumeratechars.md +++ b/docs/lcd-enumeratechars.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c-PCF8574.md b/docs/lcd-i2c-PCF8574.md index 72589da56..5ec12bc10 100644 --- a/docs/lcd-i2c-PCF8574.md +++ b/docs/lcd-i2c-PCF8574.md @@ -94,7 +94,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c-runner.md b/docs/lcd-i2c-runner.md index 00ad2a1a6..c8a6a8c18 100644 --- a/docs/lcd-i2c-runner.md +++ b/docs/lcd-i2c-runner.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c.md b/docs/lcd-i2c.md index 37221d85f..8921648ff 100644 --- a/docs/lcd-i2c.md +++ b/docs/lcd-i2c.md @@ -69,7 +69,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-bgcolor-previewer-tessel.md b/docs/lcd-rgb-bgcolor-previewer-tessel.md index 6b06314e7..f8c9530bb 100644 --- a/docs/lcd-rgb-bgcolor-previewer-tessel.md +++ b/docs/lcd-rgb-bgcolor-previewer-tessel.md @@ -82,7 +82,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-bgcolor-previewer.md b/docs/lcd-rgb-bgcolor-previewer.md index b178f279b..9f53d18dd 100644 --- a/docs/lcd-rgb-bgcolor-previewer.md +++ b/docs/lcd-rgb-bgcolor-previewer.md @@ -79,7 +79,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-tessel-grove-JHD1313M1.md b/docs/lcd-rgb-tessel-grove-JHD1313M1.md index 5041380c1..4ceb22cec 100644 --- a/docs/lcd-rgb-tessel-grove-JHD1313M1.md +++ b/docs/lcd-rgb-tessel-grove-JHD1313M1.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-runner-20x4.md b/docs/lcd-runner-20x4.md index 2936a8978..623837aad 100644 --- a/docs/lcd-runner-20x4.md +++ b/docs/lcd-runner-20x4.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-runner.md b/docs/lcd-runner.md index 62765dfd5..805e9d0e7 100644 --- a/docs/lcd-runner.md +++ b/docs/lcd-runner.md @@ -89,7 +89,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd.md b/docs/lcd.md index 9117f8f4d..6c3b2fcdd 100644 --- a/docs/lcd.md +++ b/docs/lcd.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-PCA9685.md b/docs/led-PCA9685.md index 65dc54bb2..7f9997996 100644 --- a/docs/led-PCA9685.md +++ b/docs/led-PCA9685.md @@ -71,7 +71,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-array-controller.md b/docs/led-array-controller.md index 68156325b..b0144db4e 100644 --- a/docs/led-array-controller.md +++ b/docs/led-array-controller.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-array.md b/docs/led-array.md index ed3674227..95ca280fb 100644 --- a/docs/led-array.md +++ b/docs/led-array.md @@ -64,7 +64,7 @@ as `pulse()` or `fade()` ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-blink.md b/docs/led-blink.md index 10793fbd3..8c66ae499 100644 --- a/docs/led-blink.md +++ b/docs/led-blink.md @@ -81,7 +81,7 @@ Fritzing diagram: [docs/breadboard/led-resistor.fzz](breadboard/led-resistor.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-chars-demo.md b/docs/led-chars-demo.md index 8979c8aa6..2aaa391d2 100644 --- a/docs/led-chars-demo.md +++ b/docs/led-chars-demo.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-demo-sequence.md b/docs/led-demo-sequence.md index baf10cf7f..fab313338 100644 --- a/docs/led-demo-sequence.md +++ b/docs/led-demo-sequence.md @@ -135,7 +135,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock-HT16K33.md b/docs/led-digits-clock-HT16K33.md index 9c9d9216d..3616b0ce5 100644 --- a/docs/led-digits-clock-HT16K33.md +++ b/docs/led-digits-clock-HT16K33.md @@ -75,7 +75,7 @@ Learn More: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock-dual.md b/docs/led-digits-clock-dual.md index 5e531f3d3..2d63da3c6 100644 --- a/docs/led-digits-clock-dual.md +++ b/docs/led-digits-clock-dual.md @@ -88,7 +88,7 @@ Learn More: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock.md b/docs/led-digits-clock.md index 9480708e3..38342c7e3 100644 --- a/docs/led-digits-clock.md +++ b/docs/led-digits-clock.md @@ -103,7 +103,7 @@ Fritzing diagram: [docs/breadboard/led-digits-clock-arduino.fzz](breadboard/led- ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-enumeratechars.md b/docs/led-enumeratechars.md index 908bf632e..9244ef9cf 100644 --- a/docs/led-enumeratechars.md +++ b/docs/led-enumeratechars.md @@ -83,7 +83,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade-animation.md b/docs/led-fade-animation.md index fab471c4f..746bdecc6 100644 --- a/docs/led-fade-animation.md +++ b/docs/led-fade-animation.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade-callback.md b/docs/led-fade-callback.md index 6bd48e645..e5b55b80b 100644 --- a/docs/led-fade-callback.md +++ b/docs/led-fade-callback.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade.md b/docs/led-fade.md index 37a7ff502..49224b10f 100644 --- a/docs/led-fade.md +++ b/docs/led-fade.md @@ -64,7 +64,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-HT16K33-16x8.md b/docs/led-matrix-HT16K33-16x8.md index bf109daaa..cf883491b 100644 --- a/docs/led-matrix-HT16K33-16x8.md +++ b/docs/led-matrix-HT16K33-16x8.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-HT16K33.md b/docs/led-matrix-HT16K33.md index a8e35c584..5950bde81 100644 --- a/docs/led-matrix-HT16K33.md +++ b/docs/led-matrix-HT16K33.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-tutorial.md b/docs/led-matrix-tutorial.md index 39d62765d..6c4cdba3d 100644 --- a/docs/led-matrix-tutorial.md +++ b/docs/led-matrix-tutorial.md @@ -154,7 +154,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix.md b/docs/led-matrix.md index cca7b006b..af549eec8 100644 --- a/docs/led-matrix.md +++ b/docs/led-matrix.md @@ -95,7 +95,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-pulse-animation.md b/docs/led-pulse-animation.md index 376cbf6a4..2dad6ace4 100644 --- a/docs/led-pulse-animation.md +++ b/docs/led-pulse-animation.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-pulse.md b/docs/led-pulse.md index 5d3bd9a43..eeee30c9b 100644 --- a/docs/led-pulse.md +++ b/docs/led-pulse.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rainbow.md b/docs/led-rainbow.md index f81a26a82..c4ccc762e 100644 --- a/docs/led-rainbow.md +++ b/docs/led-rainbow.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-BLINKM.md b/docs/led-rgb-BLINKM.md index 44db70522..1b20893b2 100644 --- a/docs/led-rgb-BLINKM.md +++ b/docs/led-rgb-BLINKM.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-anode-PCA9685.md b/docs/led-rgb-anode-PCA9685.md index 4d3e7124b..8771aed25 100644 --- a/docs/led-rgb-anode-PCA9685.md +++ b/docs/led-rgb-anode-PCA9685.md @@ -90,7 +90,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-anode.md b/docs/led-rgb-anode.md index f241e037b..ea2a654c3 100644 --- a/docs/led-rgb-anode.md +++ b/docs/led-rgb-anode.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-intensity.md b/docs/led-rgb-intensity.md index f7e906561..95cac7321 100644 --- a/docs/led-rgb-intensity.md +++ b/docs/led-rgb-intensity.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb.md b/docs/led-rgb.md index bfa3051ea..190728aec 100644 --- a/docs/led-rgb.md +++ b/docs/led-rgb.md @@ -86,7 +86,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-slider.md b/docs/led-slider.md index 6224b61d3..08e5b06ee 100644 --- a/docs/led-slider.md +++ b/docs/led-slider.md @@ -61,7 +61,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-tessel-servo-module.md b/docs/led-tessel-servo-module.md index e21894a87..9c430b588 100644 --- a/docs/led-tessel-servo-module.md +++ b/docs/led-tessel-servo-module.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led.md b/docs/led.md index 1463e94dc..b9191bbb6 100644 --- a/docs/led.md +++ b/docs/led.md @@ -111,7 +111,7 @@ Now you can try, e.g.: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-EVS_EV3.md b/docs/light-ambient-EVS_EV3.md index 25f1a746c..b340dcf9d 100644 --- a/docs/light-ambient-EVS_EV3.md +++ b/docs/light-ambient-EVS_EV3.md @@ -48,7 +48,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-EVS_NXT.md b/docs/light-ambient-EVS_NXT.md index 141e99961..2cf71e422 100644 --- a/docs/light-ambient-EVS_NXT.md +++ b/docs/light-ambient-EVS_NXT.md @@ -48,7 +48,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-reflected-EVS_EV3.md b/docs/light-reflected-EVS_EV3.md index 97c280408..0a8df13cf 100644 --- a/docs/light-reflected-EVS_EV3.md +++ b/docs/light-reflected-EVS_EV3.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-reflected-EVS_NXT.md b/docs/light-reflected-EVS_NXT.md index 5f52167f1..a56a5f919 100644 --- a/docs/light-reflected-EVS_NXT.md +++ b/docs/light-reflected-EVS_NXT.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/line-follower.md b/docs/line-follower.md index 3876c23c3..c0bf5cab6 100644 --- a/docs/line-follower.md +++ b/docs/line-follower.md @@ -217,7 +217,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer-log.md b/docs/magnetometer-log.md index 21a70e6ed..5eeac9eea 100644 --- a/docs/magnetometer-log.md +++ b/docs/magnetometer-log.md @@ -150,7 +150,7 @@ colors = { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer-north.md b/docs/magnetometer-north.md index 7ca28c1cf..f6901ada5 100644 --- a/docs/magnetometer-north.md +++ b/docs/magnetometer-north.md @@ -111,7 +111,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer.md b/docs/magnetometer.md index 14eaa10f0..5e1df6aa5 100644 --- a/docs/magnetometer.md +++ b/docs/magnetometer.md @@ -103,7 +103,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-accelerometer.md b/docs/micromagician-accelerometer.md index de927a050..f83f4060e 100644 --- a/docs/micromagician-accelerometer.md +++ b/docs/micromagician-accelerometer.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-motor.md b/docs/micromagician-motor.md index 1744b2296..92184e100 100644 --- a/docs/micromagician-motor.md +++ b/docs/micromagician-motor.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-servo.md b/docs/micromagician-servo.md index b8ed88916..5e4326689 100644 --- a/docs/micromagician-servo.md +++ b/docs/micromagician-servo.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/microphone.md b/docs/microphone.md index 97c6ee114..9266bb6f9 100644 --- a/docs/microphone.md +++ b/docs/microphone.md @@ -57,7 +57,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-GP2Y0A60SZLF.md b/docs/motion-GP2Y0A60SZLF.md index 007aa21db..26aa06548 100644 --- a/docs/motion-GP2Y0A60SZLF.md +++ b/docs/motion-GP2Y0A60SZLF.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d805z0f.md b/docs/motion-gp2y0d805z0f.md index 7b39c841a..822b099e0 100644 --- a/docs/motion-gp2y0d805z0f.md +++ b/docs/motion-gp2y0d805z0f.md @@ -82,7 +82,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d810z0f.md b/docs/motion-gp2y0d810z0f.md index 486d698c9..06b0438ee 100644 --- a/docs/motion-gp2y0d810z0f.md +++ b/docs/motion-gp2y0d810z0f.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d815z0f.md b/docs/motion-gp2y0d815z0f.md index bd4cfe75a..306272980 100644 --- a/docs/motion-gp2y0d815z0f.md +++ b/docs/motion-gp2y0d815z0f.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion.md b/docs/motion.md index 53f6faee7..6418aa630 100644 --- a/docs/motion.md +++ b/docs/motion.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motobot.md b/docs/motobot.md index 0a6a989ec..01930e85b 100644 --- a/docs/motobot.md +++ b/docs/motobot.md @@ -119,7 +119,7 @@ Motobot chassis before addings ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-3-pin.md b/docs/motor-3-pin.md index 1b30c51d5..9549278e0 100644 --- a/docs/motor-3-pin.md +++ b/docs/motor-3-pin.md @@ -127,7 +127,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-EVS_EV3.md b/docs/motor-EVS_EV3.md index 05c7d0c5d..2ace05637 100644 --- a/docs/motor-EVS_EV3.md +++ b/docs/motor-EVS_EV3.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-EVS_NXT.md b/docs/motor-EVS_NXT.md index 58b77c252..b3ad84a7d 100644 --- a/docs/motor-EVS_NXT.md +++ b/docs/motor-EVS_NXT.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-GROVE_I2C.md b/docs/motor-GROVE_I2C.md index 204aa4a1d..d74ccdad3 100644 --- a/docs/motor-GROVE_I2C.md +++ b/docs/motor-GROVE_I2C.md @@ -86,7 +86,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-LUDUS.md b/docs/motor-LUDUS.md index 0fd5504c0..eccb0ec2e 100644 --- a/docs/motor-LUDUS.md +++ b/docs/motor-LUDUS.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-PCA9685.md b/docs/motor-PCA9685.md index 81389effc..1f37645d8 100644 --- a/docs/motor-PCA9685.md +++ b/docs/motor-PCA9685.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-brake.md b/docs/motor-brake.md index ef83aa311..ddb7f8afa 100644 --- a/docs/motor-brake.md +++ b/docs/motor-brake.md @@ -112,7 +112,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-current.md b/docs/motor-current.md index 20de932ad..dae1f908e 100644 --- a/docs/motor-current.md +++ b/docs/motor-current.md @@ -125,7 +125,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-directional.md b/docs/motor-directional.md index 9bf537f3d..9c51bd934 100644 --- a/docs/motor-directional.md +++ b/docs/motor-directional.md @@ -137,7 +137,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-enable.md b/docs/motor-enable.md index 0843e16d3..071930353 100644 --- a/docs/motor-enable.md +++ b/docs/motor-enable.md @@ -113,7 +113,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-hbridge.md b/docs/motor-hbridge.md index f396b7b20..07a51b93d 100644 --- a/docs/motor-hbridge.md +++ b/docs/motor-hbridge.md @@ -110,7 +110,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-sparkfun-edison-hbridge.md b/docs/motor-sparkfun-edison-hbridge.md index cd77d8794..2a610283e 100644 --- a/docs/motor-sparkfun-edison-hbridge.md +++ b/docs/motor-sparkfun-edison-hbridge.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor.md b/docs/motor.md index 68bfd562a..71d43a039 100644 --- a/docs/motor.md +++ b/docs/motor.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT11_I2C_NANO_BACKPACK.md b/docs/multi-DHT11_I2C_NANO_BACKPACK.md index 18177c663..e39b12164 100644 --- a/docs/multi-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT11_I2C_NANO_BACKPACK.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-MS5611.md b/docs/multi-MS5611.md index 331c5b538..f00fc174a 100644 --- a/docs/multi-MS5611.md +++ b/docs/multi-MS5611.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-SI7020.md b/docs/multi-SI7020.md index db31c0eb6..cf2de9412 100644 --- a/docs/multi-SI7020.md +++ b/docs/multi-SI7020.md @@ -86,7 +86,7 @@ Fritzing diagram: [docs/breadboard/temperature-SI7020-uno.fzz](breadboard/temper ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-TH02.md b/docs/multi-TH02.md index 56c73db7a..a2dbd8127 100644 --- a/docs/multi-TH02.md +++ b/docs/multi-TH02.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-bmp085.md b/docs/multi-bmp085.md index 9313fa0de..3835c1929 100644 --- a/docs/multi-bmp085.md +++ b/docs/multi-bmp085.md @@ -89,7 +89,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-bmp180.md b/docs/multi-bmp180.md index 10d8922c5..921788205 100644 --- a/docs/multi-bmp180.md +++ b/docs/multi-bmp180.md @@ -91,7 +91,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-htu21d.md b/docs/multi-htu21d.md index 60f0a042c..007d5a0ed 100644 --- a/docs/multi-htu21d.md +++ b/docs/multi-htu21d.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-mpl115a2.md b/docs/multi-mpl115a2.md index 012f0e978..d15966303 100644 --- a/docs/multi-mpl115a2.md +++ b/docs/multi-mpl115a2.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-mpl3115a2.md b/docs/multi-mpl3115a2.md index ddafcc009..2111a078b 100644 --- a/docs/multi-mpl3115a2.md +++ b/docs/multi-mpl3115a2.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-sht31d.md b/docs/multi-sht31d.md index 7474e0f9a..b108325bf 100644 --- a/docs/multi-sht31d.md +++ b/docs/multi-sht31d.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/navigator.md b/docs/navigator.md index aabd5ef56..622b8be2b 100644 --- a/docs/navigator.md +++ b/docs/navigator.md @@ -570,7 +570,7 @@ Navigator.prototype.pivot = function(which, time) { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/nodebot.md b/docs/nodebot.md index c3deefc74..c1feb0fe3 100644 --- a/docs/nodebot.md +++ b/docs/nodebot.md @@ -122,7 +122,7 @@ Nodebots come in many flavors, but this is a typical setup. ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/nunchuk.md b/docs/nunchuk.md index 337a95cce..7ec3d810f 100644 --- a/docs/nunchuk.md +++ b/docs/nunchuk.md @@ -135,7 +135,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/pcduino-io.md b/docs/pcduino-io.md index ffa28aa55..036fcf96f 100644 --- a/docs/pcduino-io.md +++ b/docs/pcduino-io.md @@ -74,7 +74,7 @@ npm install johnny-five pcduino-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/phoenix.md b/docs/phoenix.md index 3c43884fe..55d13730e 100644 --- a/docs/phoenix.md +++ b/docs/phoenix.md @@ -457,7 +457,7 @@ board = new five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/photoresistor.md b/docs/photoresistor.md index c47794e3d..401179de2 100644 --- a/docs/photoresistor.md +++ b/docs/photoresistor.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/piezo.md b/docs/piezo.md index dd9e05049..6195d62a2 100644 --- a/docs/piezo.md +++ b/docs/piezo.md @@ -97,7 +97,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/pin.md b/docs/pin.md index 69ceed6d1..6bb5c514c 100644 --- a/docs/pin.md +++ b/docs/pin.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/plugin.md b/docs/plugin.md index 1654380a8..6ea510776 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -78,7 +78,7 @@ module.exports = function(five) { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/potentiometer.md b/docs/potentiometer.md index f15a597a6..912531063 100644 --- a/docs/potentiometer.md +++ b/docs/potentiometer.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_IR-alert.md b/docs/proximity-EVS_EV3_IR-alert.md index fbe3f02c3..d937050c8 100644 --- a/docs/proximity-EVS_EV3_IR-alert.md +++ b/docs/proximity-EVS_EV3_IR-alert.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_IR.md b/docs/proximity-EVS_EV3_IR.md index 3375f847f..8466a65db 100644 --- a/docs/proximity-EVS_EV3_IR.md +++ b/docs/proximity-EVS_EV3_IR.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_US-alert.md b/docs/proximity-EVS_EV3_US-alert.md index 01ec7390b..14263e207 100644 --- a/docs/proximity-EVS_EV3_US-alert.md +++ b/docs/proximity-EVS_EV3_US-alert.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_US.md b/docs/proximity-EVS_EV3_US.md index c49a4b88b..7e13cbb58 100644 --- a/docs/proximity-EVS_EV3_US.md +++ b/docs/proximity-EVS_EV3_US.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-GP2Y0A710K0F.md b/docs/proximity-GP2Y0A710K0F.md index 2748627fb..668660efb 100644 --- a/docs/proximity-GP2Y0A710K0F.md +++ b/docs/proximity-GP2Y0A710K0F.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04-analog.md b/docs/proximity-hcsr04-analog.md index b1e8014fd..d294186d2 100644 --- a/docs/proximity-hcsr04-analog.md +++ b/docs/proximity-hcsr04-analog.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04-i2c.md b/docs/proximity-hcsr04-i2c.md index cb8a2d0b5..1438d929c 100644 --- a/docs/proximity-hcsr04-i2c.md +++ b/docs/proximity-hcsr04-i2c.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04.md b/docs/proximity-hcsr04.md index fe4ce520c..128753c86 100644 --- a/docs/proximity-hcsr04.md +++ b/docs/proximity-hcsr04.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-lidarlite.md b/docs/proximity-lidarlite.md index dda2292b1..cf84786e0 100644 --- a/docs/proximity-lidarlite.md +++ b/docs/proximity-lidarlite.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1000.md b/docs/proximity-mb1000.md index acb672823..fa00739bd 100644 --- a/docs/proximity-mb1000.md +++ b/docs/proximity-mb1000.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1003.md b/docs/proximity-mb1003.md index 7df0195b3..527ca4532 100644 --- a/docs/proximity-mb1003.md +++ b/docs/proximity-mb1003.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1010.md b/docs/proximity-mb1010.md index c1942bff6..dc1e2aa69 100644 --- a/docs/proximity-mb1010.md +++ b/docs/proximity-mb1010.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1230.md b/docs/proximity-mb1230.md index eb357f5e6..9ffec4ae5 100644 --- a/docs/proximity-mb1230.md +++ b/docs/proximity-mb1230.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-srf10.md b/docs/proximity-srf10.md index 1a78d4a3f..adf2a300c 100644 --- a/docs/proximity-srf10.md +++ b/docs/proximity-srf10.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity.md b/docs/proximity.md index ab597cd98..24503d9ca 100644 --- a/docs/proximity.md +++ b/docs/proximity.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/radar.md b/docs/radar.md index b793af7c0..300578445 100644 --- a/docs/radar.md +++ b/docs/radar.md @@ -164,7 +164,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/raspi-io.md b/docs/raspi-io.md index 0431a1773..34ac51d13 100644 --- a/docs/raspi-io.md +++ b/docs/raspi-io.md @@ -75,7 +75,7 @@ npm install johnny-five raspi-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay-collection.md b/docs/relay-collection.md index 84625b6e6..1a1d8e00e 100644 --- a/docs/relay-collection.md +++ b/docs/relay-collection.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay.md b/docs/relay.md index 66f944acb..d35852645 100644 --- a/docs/relay.md +++ b/docs/relay.md @@ -83,7 +83,7 @@ Fritzing diagram: [docs/breadboard/relay-closed.fzz](breadboard/relay-closed.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/repl.md b/docs/repl.md index 7ce3074f6..6622f66a1 100644 --- a/docs/repl.md +++ b/docs/repl.md @@ -80,7 +80,7 @@ available in the REPL: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-fsr.md b/docs/sensor-fsr.md index c911f4f31..438a1e41b 100644 --- a/docs/sensor-fsr.md +++ b/docs/sensor-fsr.md @@ -68,7 +68,7 @@ var five = require("johnny-five"), ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-photon-weather-shield-moisture.md b/docs/sensor-photon-weather-shield-moisture.md index b7d30c90f..a9d27f87a 100644 --- a/docs/sensor-photon-weather-shield-moisture.md +++ b/docs/sensor-photon-weather-shield-moisture.md @@ -81,7 +81,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-slider.md b/docs/sensor-slider.md index 9be075528..2754efa51 100644 --- a/docs/sensor-slider.md +++ b/docs/sensor-slider.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor.md b/docs/sensor.md index 8e86c84d9..eff4ec464 100644 --- a/docs/sensor.md +++ b/docs/sensor.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-PCA9685.md b/docs/servo-PCA9685.md index abe988fa6..02ae469c3 100644 --- a/docs/servo-PCA9685.md +++ b/docs/servo-PCA9685.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-animation-leg.md b/docs/servo-animation-leg.md index aa2b8749d..9b625e2cb 100644 --- a/docs/servo-animation-leg.md +++ b/docs/servo-animation-leg.md @@ -140,7 +140,7 @@ var board = new five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-animation.md b/docs/servo-animation.md index dd2de63f4..f9a2abb53 100644 --- a/docs/servo-animation.md +++ b/docs/servo-animation.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-array.md b/docs/servo-array.md index 445638d6d..6f23bb5a0 100644 --- a/docs/servo-array.md +++ b/docs/servo-array.md @@ -112,7 +112,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-continuous.md b/docs/servo-continuous.md index 5533a51e8..230a882ac 100644 --- a/docs/servo-continuous.md +++ b/docs/servo-continuous.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-drive.md b/docs/servo-drive.md index 632b25c04..a446232a0 100644 --- a/docs/servo-drive.md +++ b/docs/servo-drive.md @@ -94,7 +94,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-prompt.md b/docs/servo-prompt.md index de6413593..e67e814e8 100644 --- a/docs/servo-prompt.md +++ b/docs/servo-prompt.md @@ -69,7 +69,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-slider.md b/docs/servo-slider.md index eac6056f9..b968a176c 100644 --- a/docs/servo-slider.md +++ b/docs/servo-slider.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-sweep.md b/docs/servo-sweep.md index 8c5a96247..3ef88f7a5 100644 --- a/docs/servo-sweep.md +++ b/docs/servo-sweep.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-tessel-servo-module.md b/docs/servo-tessel-servo-module.md index dc4ed8b90..f652ee85c 100644 --- a/docs/servo-tessel-servo-module.md +++ b/docs/servo-tessel-servo-module.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo.md b/docs/servo.md index 2db26affd..af6c0aecd 100644 --- a/docs/servo.md +++ b/docs/servo.md @@ -111,7 +111,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-daisy-chain-anode.md b/docs/shift-register-daisy-chain-anode.md index c38d2252a..933ebe02a 100644 --- a/docs/shift-register-daisy-chain-anode.md +++ b/docs/shift-register-daisy-chain-anode.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-daisy-chain.md b/docs/shift-register-daisy-chain.md index 0f97ef859..31723eb31 100644 --- a/docs/shift-register-daisy-chain.md +++ b/docs/shift-register-daisy-chain.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-seven-segment-anode.md b/docs/shift-register-seven-segment-anode.md index 99c212442..1d7590b4a 100644 --- a/docs/shift-register-seven-segment-anode.md +++ b/docs/shift-register-seven-segment-anode.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-seven-segment.md b/docs/shift-register-seven-segment.md index ec607adc9..1a98c8486 100644 --- a/docs/shift-register-seven-segment.md +++ b/docs/shift-register-seven-segment.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register.md b/docs/shift-register.md index ac2959ca7..f46033009 100644 --- a/docs/shift-register.md +++ b/docs/shift-register.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/spark-io.md b/docs/spark-io.md index 676758f69..4950fc877 100644 --- a/docs/spark-io.md +++ b/docs/spark-io.md @@ -106,7 +106,7 @@ Ensure your host computer (where you're running your Node application) and the S ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-driver.md b/docs/stepper-driver.md index 0537d9fef..f12bd0af5 100644 --- a/docs/stepper-driver.md +++ b/docs/stepper-driver.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-sweep.md b/docs/stepper-sweep.md index 9c5213e66..39072512f 100644 --- a/docs/stepper-sweep.md +++ b/docs/stepper-sweep.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch-magnetic-door.md b/docs/switch-magnetic-door.md index a38c7c63c..21a65ffad 100644 --- a/docs/switch-magnetic-door.md +++ b/docs/switch-magnetic-door.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch-tilt-SW_200D.md b/docs/switch-tilt-SW_200D.md index f2df96cde..baf21ea3f 100644 --- a/docs/switch-tilt-SW_200D.md +++ b/docs/switch-tilt-SW_200D.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-BMP180.md b/docs/temperature-BMP180.md index 1eecba467..806bdebb4 100644 --- a/docs/temperature-BMP180.md +++ b/docs/temperature-BMP180.md @@ -83,7 +83,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT11_I2C_NANO_BACKPACK.md b/docs/temperature-DHT11_I2C_NANO_BACKPACK.md index 55c3f2936..fa4529f8d 100644 --- a/docs/temperature-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT11_I2C_NANO_BACKPACK.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-MCP9808.md b/docs/temperature-MCP9808.md index 9e81d3a10..182a699d5 100644 --- a/docs/temperature-MCP9808.md +++ b/docs/temperature-MCP9808.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/temperature-MCP9808-tessel.fzz](breadboard/te ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-MS5611.md b/docs/temperature-MS5611.md index 64df68121..1eabc939d 100644 --- a/docs/temperature-MS5611.md +++ b/docs/temperature-MS5611.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-SI7020.md b/docs/temperature-SI7020.md index 94114c5e9..95b87319d 100644 --- a/docs/temperature-SI7020.md +++ b/docs/temperature-SI7020.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/temperature-SI7020-uno.fzz](breadboard/temper ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-TH02.md b/docs/temperature-TH02.md index 746d050c2..71bc2a2d9 100644 --- a/docs/temperature-TH02.md +++ b/docs/temperature-TH02.md @@ -56,7 +56,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-bmp085.md b/docs/temperature-bmp085.md index 1ddd5b86c..ebd708f87 100644 --- a/docs/temperature-bmp085.md +++ b/docs/temperature-bmp085.md @@ -80,7 +80,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-ds18b20.md b/docs/temperature-ds18b20.md index 1454a915b..473191b0d 100644 --- a/docs/temperature-ds18b20.md +++ b/docs/temperature-ds18b20.md @@ -64,7 +64,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-htu21d.md b/docs/temperature-htu21d.md index caf3f418d..f8874a83a 100644 --- a/docs/temperature-htu21d.md +++ b/docs/temperature-htu21d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-lm335.md b/docs/temperature-lm335.md index 62d48f722..791cf3992 100644 --- a/docs/temperature-lm335.md +++ b/docs/temperature-lm335.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-lm35.md b/docs/temperature-lm35.md index 931a95e25..73963de51 100644 --- a/docs/temperature-lm35.md +++ b/docs/temperature-lm35.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-max31850k.md b/docs/temperature-max31850k.md index 60070e961..66884fa32 100644 --- a/docs/temperature-max31850k.md +++ b/docs/temperature-max31850k.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpl115a2.md b/docs/temperature-mpl115a2.md index 0d9ae4220..4fa6edf20 100644 --- a/docs/temperature-mpl115a2.md +++ b/docs/temperature-mpl115a2.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpl3115a2.md b/docs/temperature-mpl3115a2.md index 022a7f5de..a77e553e2 100644 --- a/docs/temperature-mpl3115a2.md +++ b/docs/temperature-mpl3115a2.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpu6050.md b/docs/temperature-mpu6050.md index a057c6245..78a5f020d 100644 --- a/docs/temperature-mpu6050.md +++ b/docs/temperature-mpu6050.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-sht31d.md b/docs/temperature-sht31d.md index 004a8a555..ed2325e1e 100644 --- a/docs/temperature-sht31d.md +++ b/docs/temperature-sht31d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-tmp102.md b/docs/temperature-tmp102.md index 0bea9356e..8867c02ea 100644 --- a/docs/temperature-tmp102.md +++ b/docs/temperature-tmp102.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-tmp36.md b/docs/temperature-tmp36.md index 532bdaf0c..e55fa4c4b 100644 --- a/docs/temperature-tmp36.md +++ b/docs/temperature-tmp36.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-accelerometer.md b/docs/tinkerkit-accelerometer.md index f2575e292..9be34d3b7 100644 --- a/docs/tinkerkit-accelerometer.md +++ b/docs/tinkerkit-accelerometer.md @@ -78,7 +78,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-blink.md b/docs/tinkerkit-blink.md index e596e6f63..25226171d 100644 --- a/docs/tinkerkit-blink.md +++ b/docs/tinkerkit-blink.md @@ -56,7 +56,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-button.md b/docs/tinkerkit-button.md index b8760e64c..43c888214 100644 --- a/docs/tinkerkit-button.md +++ b/docs/tinkerkit-button.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-combo.md b/docs/tinkerkit-combo.md index 2a5cead76..1723ada5a 100644 --- a/docs/tinkerkit-combo.md +++ b/docs/tinkerkit-combo.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-continuous-servo.md b/docs/tinkerkit-continuous-servo.md index 9b0b1b537..18d0f38c1 100644 --- a/docs/tinkerkit-continuous-servo.md +++ b/docs/tinkerkit-continuous-servo.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-gyroscope.md b/docs/tinkerkit-gyroscope.md index 82dbb18c6..da403fe75 100644 --- a/docs/tinkerkit-gyroscope.md +++ b/docs/tinkerkit-gyroscope.md @@ -51,7 +51,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-joystick.md b/docs/tinkerkit-joystick.md index d8ecf6232..77880a325 100644 --- a/docs/tinkerkit-joystick.md +++ b/docs/tinkerkit-joystick.md @@ -57,7 +57,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-linear-pot.md b/docs/tinkerkit-linear-pot.md index 4f003db19..1e7b41575 100644 --- a/docs/tinkerkit-linear-pot.md +++ b/docs/tinkerkit-linear-pot.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-rotary.md b/docs/tinkerkit-rotary.md index 1b6c2f791..64703c798 100644 --- a/docs/tinkerkit-rotary.md +++ b/docs/tinkerkit-rotary.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-thermistor.md b/docs/tinkerkit-thermistor.md index b71213499..ddbe966ed 100644 --- a/docs/tinkerkit-thermistor.md +++ b/docs/tinkerkit-thermistor.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-tilt.md b/docs/tinkerkit-tilt.md index ed41cd3bf..61107ea63 100644 --- a/docs/tinkerkit-tilt.md +++ b/docs/tinkerkit-tilt.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-touch.md b/docs/tinkerkit-touch.md index f6151fa48..47ba1f951 100644 --- a/docs/tinkerkit-touch.md +++ b/docs/tinkerkit-touch.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/toggle-switch.md b/docs/toggle-switch.md index 35c96bd36..fe8d419d2 100644 --- a/docs/toggle-switch.md +++ b/docs/toggle-switch.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/whisker.md b/docs/whisker.md index 034826973..8e58d77ba 100644 --- a/docs/whisker.md +++ b/docs/whisker.md @@ -149,7 +149,7 @@ new five.Boards(["control", "nodebot"]).on("ready", function(boards) { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2016 The Johnny-Five Contributors +Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license. From d284f5ff67e0e287e543d6a483375cdaa8b3c41d Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Fri, 31 Mar 2017 09:37:27 -0700 Subject: [PATCH 03/33] Bump to -cdo.0 version under @code-dot-org namespace --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dfc749db4..f6c8ffa53 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "johnny-five", + "name": "@code-dot-org/johnny-five", "description": "The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.9.62", + "version": "0.9.62-cdo.0", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From d6896cf9b8f0e246b84d3850c2b887ffb63d7451 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 11 Apr 2017 13:49:30 -0700 Subject: [PATCH 04/33] Add support for CSS functional notation to Led.RGB.color Adds support for CSS functional notation (e.g. `"rgb(255, 255, 0)"`) to the `color()` method on the Led.RGB prototype. Supports: - `rgb(r, g, b)` - `rgba(r, g, b, a)` where the alpha value in the range 0-1 modifies the color as an intensity function using `RGB.ToScaledRGB()` - `rgba(r, g, b)` and `rgb(r, g, b, a)` to comply with the [CSS Color Module Level 4 Draft](https://drafts.csswg.org/css-color/#rgb-functions) --- lib/led/rgb.js | 10 ++++++++++ test/rgb.js | 44 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/lib/led/rgb.js b/lib/led/rgb.js index 3d4ffe0ce..5ade9aec2 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -312,6 +312,16 @@ RGB.ToRGB = function(red, green, blue) { green: parseInt(input.slice(2, 4), 16), blue: parseInt(input.slice(4, 6), 16) }; + } else if (/^rgb/.test(input)) { + var args = input.match(/^rgba?\(([^)]+)\)$/)[1].split(','); + update = { + red: parseInt(args[0], 10), + green: parseInt(args[1], 10), + blue: parseInt(args[2], 10) + }; + if (args.length > 3) { + update = RGB.ToScaledRGB(100 * parseFloat(args[3]), update); + } } else { // color name return RGB.ToRGB(converter.keyword.rgb(input.toLowerCase())); diff --git a/test/rgb.js b/test/rgb.js index 0a6030c5e..0f5cc1673 100644 --- a/test/rgb.js +++ b/test/rgb.js @@ -130,7 +130,7 @@ exports["RGB"] = { color: function(test) { var rgb = this.rgb; - test.expect(36); + test.expect(44); // returns this test.equal(this.rgb.color("#000000"), this.rgb); @@ -229,6 +229,48 @@ exports["RGB"] = { })); this.write.reset(); + // CSS functional notation + this.rgb.color('rgb(255, 100, 50)'); + test.ok(this.write.calledOnce); + test.ok(this.write.calledWith({ + red: 255, + green: 100, + blue: 50 + })); + this.write.reset(); + + // CSS functional notation with alpha + // Subtle bug: Alpha is translated to intensity using linear scaling + // when it should probably use logarithmic scaling. + this.rgb.color('rgba(255, 100, 50, 0.5)'); + test.ok(this.write.calledOnce); + test.ok(this.write.calledWith({ + red: 128, + green: 50, + blue: 25 + })); + this.write.reset(); + + // CSS4 functional notation (rgb and rgba become aliases) + this.rgb.color('rgba(255, 100, 50)'); + test.ok(this.write.calledOnce); + test.ok(this.write.calledWith({ + red: 255, + green: 100, + blue: 50 + })); + this.write.reset(); + + // CSS4 functional notation with alpha (rgb and rgba become aliases) + this.rgb.color('rgb(255, 100, 50, 0.5)'); + test.ok(this.write.calledOnce); + test.ok(this.write.calledWith({ + red: 128, + green: 50, + blue: 25 + })); + this.write.reset(); + // bad values test.throws(function() { rgb.color(null); From 24f53a8bd979794954340d881b7a296a04694631 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 11 Apr 2017 13:57:48 -0700 Subject: [PATCH 05/33] Add support for functional notation without commas Also part of the CSS color level 4 spec. --- lib/led/rgb.js | 2 +- test/rgb.js | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/lib/led/rgb.js b/lib/led/rgb.js index 5ade9aec2..f397adf0e 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -313,7 +313,7 @@ RGB.ToRGB = function(red, green, blue) { blue: parseInt(input.slice(4, 6), 16) }; } else if (/^rgb/.test(input)) { - var args = input.match(/^rgba?\(([^)]+)\)$/)[1].split(','); + var args = input.match(/^rgba?\(([^)]+)\)$/)[1].split(/[\s,]+/); update = { red: parseInt(args[0], 10), green: parseInt(args[1], 10), diff --git a/test/rgb.js b/test/rgb.js index 0f5cc1673..152ed3a30 100644 --- a/test/rgb.js +++ b/test/rgb.js @@ -130,7 +130,7 @@ exports["RGB"] = { color: function(test) { var rgb = this.rgb; - test.expect(44); + test.expect(46); // returns this test.equal(this.rgb.color("#000000"), this.rgb); @@ -262,7 +262,8 @@ exports["RGB"] = { this.write.reset(); // CSS4 functional notation with alpha (rgb and rgba become aliases) - this.rgb.color('rgb(255, 100, 50, 0.5)'); + // Also testing with no spaces to make sure that's supported. + this.rgb.color('rgb(255,100,50,0.5)'); test.ok(this.write.calledOnce); test.ok(this.write.calledWith({ red: 128, @@ -271,6 +272,16 @@ exports["RGB"] = { })); this.write.reset(); + // CSS4 functional notation without commas + this.rgb.color('rgb(255 100 50)'); + test.ok(this.write.calledOnce); + test.ok(this.write.calledWith({ + red: 255, + green: 100, + blue: 50 + })); + this.write.reset(); + // bad values test.throws(function() { rgb.color(null); From ada07440c2a173db23e496829e64ecee3a9004cd Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 11 Apr 2017 13:59:22 -0700 Subject: [PATCH 06/33] Fix lint errors --- test/rgb.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/rgb.js b/test/rgb.js index 152ed3a30..ff9dd180d 100644 --- a/test/rgb.js +++ b/test/rgb.js @@ -230,7 +230,7 @@ exports["RGB"] = { this.write.reset(); // CSS functional notation - this.rgb.color('rgb(255, 100, 50)'); + this.rgb.color("rgb(255, 100, 50)"); test.ok(this.write.calledOnce); test.ok(this.write.calledWith({ red: 255, @@ -242,7 +242,7 @@ exports["RGB"] = { // CSS functional notation with alpha // Subtle bug: Alpha is translated to intensity using linear scaling // when it should probably use logarithmic scaling. - this.rgb.color('rgba(255, 100, 50, 0.5)'); + this.rgb.color("rgba(255, 100, 50, 0.5)"); test.ok(this.write.calledOnce); test.ok(this.write.calledWith({ red: 128, @@ -252,7 +252,7 @@ exports["RGB"] = { this.write.reset(); // CSS4 functional notation (rgb and rgba become aliases) - this.rgb.color('rgba(255, 100, 50)'); + this.rgb.color("rgba(255, 100, 50)"); test.ok(this.write.calledOnce); test.ok(this.write.calledWith({ red: 255, @@ -263,7 +263,7 @@ exports["RGB"] = { // CSS4 functional notation with alpha (rgb and rgba become aliases) // Also testing with no spaces to make sure that's supported. - this.rgb.color('rgb(255,100,50,0.5)'); + this.rgb.color("rgb(255,100,50,0.5)"); test.ok(this.write.calledOnce); test.ok(this.write.calledWith({ red: 128, @@ -273,7 +273,7 @@ exports["RGB"] = { this.write.reset(); // CSS4 functional notation without commas - this.rgb.color('rgb(255 100 50)'); + this.rgb.color("rgb(255 100 50)"); test.ok(this.write.calledOnce); test.ok(this.write.calledWith({ red: 255, From b80b5c6ac33546b5a0b9b07a97de4eae0a4a2200 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 11 Apr 2017 16:10:03 -0700 Subject: [PATCH 07/33] 0.9.62-cdo.1 --- package.json | 136 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 134 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f6c8ffa53..f8ad6843e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.9.62-cdo.0", + "version": "0.9.62-cdo.1", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", @@ -109,7 +109,139 @@ "eiji.ienaga " ], "keywords": [ - "arduino", "raspberry pi", "raspberrypi", "usb", "serial", "serialport", "firmata", "robot", "spark", "spark core", "spark-io", "particle", "photon", "i2c", "raspberry pi", "rpi", "raspi-io", "intel galileo", "galileo", "galileo-io", "intel edison", "edison", "tessel 2", "pcduino", "MPU6050", "ADXL345", "ADXL335", "MMA8462Q", "MPL3115A2", "Weather Shield Arduino", "Weather Shield Photon", "BMP180", "Edison Arduino Block", "Edison GPIO Block", "Edison I2C Block", "Edison PWM Block", "RedBoard", "Ludus Protoshield", "Ludus Protoshield Wireless", "Ardumoto", "HMC5883L", "Speed controller", "PCF8575", "HTU21D", "Joystick", "Thumb Joystick", "Joystick", "16x2 LCD", "20x4 LCD", "LED", "Diffused LED", "RGB LED", "Infrared Sensor", "PIR Motion Sensor", "Hobby Motor", "Infrared Proximity Sensor", "LIDAR-Lite v2", "Ultrasonic Range Finder", "LV-MaxSonar-EZ0", "LV-MaxSonar-EZ3", "HRLV-MaxSonar-EZ0", "SparkFun Sensor Kit", "SparkFun Essential Sensor Kit", "Servo", "Continuous Rotation", "Metal Gear", "High Torque", "Hitec HS-805BB", "Hitec HS-425BB", "Hitec HS-422", "Hitec HS-646WP", "Hitec HS-85MG", "Hitec HS-625MG", "Hitec HS-35HD", "Hitec HS-755HB", "Temperature", "DS18B20", "TMP36", "ANALOG", "MMA7361", "MMA7660", "ESPLORA", "MPU-6050", "TINKERKIT", "MPL115A2", "DEFAULT", "EV3", "NXT", "ISL29125", "HMC6352", "GP2Y0A21YK", "GP2D120XJ00F", "GP2Y0A02YK0F", "GP2Y0A41SK0F", "2Y0A21", "2D120X", "2Y0A02", "OA41SK", "0A21", "0A02", "MCP23017", "MCP23008", "PCF8574", "PCA9685", "PCF8591", "MUXSHIELD2", "PCF8574A", "SI7020", "GY-521", "GY521", "MPR121QR2", "VKEY", "AT42QT1070", "MPR121", "QTOUCH", "JHD1313M1", "PARALLEL", "HD44780", "PCF8574T", "PCF8574AT", "LCD2004", "LCD1602", "LCM1602", "MJKDZ", "BLINKM", "HT16K33", "TSL2561", "ALS-PT19", "ALSPT19", "Shift Register", "74HC595", "Shift Register 8-Bit SN74HC595", "MCP9808" + "arduino", + "raspberry pi", + "raspberrypi", + "usb", + "serial", + "serialport", + "firmata", + "robot", + "spark", + "spark core", + "spark-io", + "particle", + "photon", + "i2c", + "raspberry pi", + "rpi", + "raspi-io", + "intel galileo", + "galileo", + "galileo-io", + "intel edison", + "edison", + "tessel 2", + "pcduino", + "MPU6050", + "ADXL345", + "ADXL335", + "MMA8462Q", + "MPL3115A2", + "Weather Shield Arduino", + "Weather Shield Photon", + "BMP180", + "Edison Arduino Block", + "Edison GPIO Block", + "Edison I2C Block", + "Edison PWM Block", + "RedBoard", + "Ludus Protoshield", + "Ludus Protoshield Wireless", + "Ardumoto", + "HMC5883L", + "Speed controller", + "PCF8575", + "HTU21D", + "Joystick", + "Thumb Joystick", + "Joystick", + "16x2 LCD", + "20x4 LCD", + "LED", + "Diffused LED", + "RGB LED", + "Infrared Sensor", + "PIR Motion Sensor", + "Hobby Motor", + "Infrared Proximity Sensor", + "LIDAR-Lite v2", + "Ultrasonic Range Finder", + "LV-MaxSonar-EZ0", + "LV-MaxSonar-EZ3", + "HRLV-MaxSonar-EZ0", + "SparkFun Sensor Kit", + "SparkFun Essential Sensor Kit", + "Servo", + "Continuous Rotation", + "Metal Gear", + "High Torque", + "Hitec HS-805BB", + "Hitec HS-425BB", + "Hitec HS-422", + "Hitec HS-646WP", + "Hitec HS-85MG", + "Hitec HS-625MG", + "Hitec HS-35HD", + "Hitec HS-755HB", + "Temperature", + "DS18B20", + "TMP36", + "ANALOG", + "MMA7361", + "MMA7660", + "ESPLORA", + "MPU-6050", + "TINKERKIT", + "MPL115A2", + "DEFAULT", + "EV3", + "NXT", + "ISL29125", + "HMC6352", + "GP2Y0A21YK", + "GP2D120XJ00F", + "GP2Y0A02YK0F", + "GP2Y0A41SK0F", + "2Y0A21", + "2D120X", + "2Y0A02", + "OA41SK", + "0A21", + "0A02", + "MCP23017", + "MCP23008", + "PCF8574", + "PCA9685", + "PCF8591", + "MUXSHIELD2", + "PCF8574A", + "SI7020", + "GY-521", + "GY521", + "MPR121QR2", + "VKEY", + "AT42QT1070", + "MPR121", + "QTOUCH", + "JHD1313M1", + "PARALLEL", + "HD44780", + "PCF8574T", + "PCF8574AT", + "LCD2004", + "LCD1602", + "LCM1602", + "MJKDZ", + "BLINKM", + "HT16K33", + "TSL2561", + "ALS-PT19", + "ALSPT19", + "Shift Register", + "74HC595", + "Shift Register 8-Bit SN74HC595", + "MCP9808" ], "repository": { "type": "git", From 4651e958939cf57decac645fc4a1ec1274e6221f Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Thu, 13 Apr 2017 10:39:09 -0700 Subject: [PATCH 08/33] Fix Piezo.prototype.note() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit applies upstream fix https://github.com/rwaldron/johnny-five/pull/1324 for issue https://github.com/rwaldron/johnny-five/issues/1323 to code-dot-org/johnny-five early, even though we're behind. This should merge trivially when we catch up. The `note()` method was passing a frequency (Hz) to the `tone()` method, which is expecting to receive a duty cycle (μs), leading to the wrong note being played. The solution is for `note()` to call `frequency()` instead, which will do the appropriate conversion. Since it took me a while to understand the relationships between `tone`, `frequency` and `note` I've added some documentation to those methods to clear things up for the next person. I've also made some unit tests more aggressive about checking that values are converted appropriately as they're passed around, and commented note-frequency-duty equivalencies to help the test read nicer. Includes squashed fixups: - Fix lint error. - Address review feedback: - Test that `note()` is case-insensitive - Better description of default octave - One-line Piezo.prototype.note - s/frequncy/frequency - Note tests demonstrate the difference between note letter and octave number better --- lib/piezo.js | 27 ++++++++++++++++-- test/piezo.js | 79 ++++++++++++++++++++++++++++++++++++++++++--------- 2 files changed, 90 insertions(+), 16 deletions(-) diff --git a/lib/piezo.js b/lib/piezo.js index fa33bbd72..6f0e29e31 100644 --- a/lib/piezo.js +++ b/lib/piezo.js @@ -401,16 +401,37 @@ Piezo.ToSong = function(stringSong, beats) { return song; }; +/** + * Play a note for a duration. + * @param {string} note - see Piezo.Notes. Case-insensitive. + * If a note name without an octave number is given (e.g. "C#" instead of + * "C#4") then the configured default octave will be used. + * @see Piezo.prototype.defaultOctave + * @param {number} duration - in milliseconds. + */ Piezo.prototype.note = function(note, duration) { - var tone = Piezo.Parsers.hzFromInput(note); - - return this.tone(tone, duration); + return this.frequency(Piezo.Parsers.hzFromInput(note), duration); }; +/** + * Play a tone for a duration. + * This is a lower-level method than frequency (which does + * the translation from frequency to tone for you). Most of + * the time you likely want to use frequency. + * @param {number} tone - Given as a computed duty-cycle, + * in microseconds. Larger values produce lower tones. + * See https://en.wikipedia.org/wiki/Duty_cycle + * @param {number} duration - in milliseconds. + */ Piezo.prototype.tone = function(tone, duration) { return this.frequency(Piezo.ToFrequency(tone), duration); }; +/** + * Play a frequency for a duration. + * @param {number} frequency - in Hz + * @param {number} duration - in milliseconds + */ Piezo.prototype.frequency = function(frequency, duration) { return this.tone(Piezo.ToTone(frequency), duration); }; diff --git a/test/piezo.js b/test/piezo.js index 1a9f93ebf..5632e00c2 100644 --- a/test/piezo.js +++ b/test/piezo.js @@ -276,18 +276,58 @@ exports["Piezo"] = { }, note: function(test) { - test.expect(4); + test.expect(10); - // note delegates to tone; + // note delegates to frequency, which delegates to tone; var toneSpy = this.sandbox.spy(this.piezo, "tone"); + var frequencySpy = this.sandbox.spy(this.piezo, "frequency"); + + // Accepts an octave number as part of the note name (the "4" in "a4") + // A4 = 440Hz = 1136μs duty cycle (half-period) + var returnValue = this.piezo.note("a4", 100); + test.deepEqual(frequencySpy.getCall(0).args, [440, 100]); + test.deepEqual(toneSpy.getCall(0).args, [1136, 100]); + test.equal(returnValue, this.piezo); + + // Changing the note letter plays a different note + // C4 = 262Hz = 1908μs duty + this.piezo.note("c4", 100); + test.deepEqual(frequencySpy.getCall(1).args, [262, 100]); + test.deepEqual(toneSpy.getCall(1).args, [1908, 100]); + + // Changing the octave number also plays a different note + // C2 = 65Hz = 7692μs duty + this.piezo.note("c2", 100); + test.deepEqual(frequencySpy.getCall(2).args, [65, 100]); + test.deepEqual(toneSpy.getCall(2).args, [7692, 100]); + + // If no octave number is provided, the default octave will be + // assumed - and by default, the default octave is 4. + // A4 = 440Hz = 1136μs duty + this.piezo.note("a", 100); + test.equal(Piezo.defaultOctave(), 4); + test.deepEqual(frequencySpy.getCall(3).args, [440, 100]); + test.deepEqual(toneSpy.getCall(3).args, [1136, 100]); + + test.done(); + }, + + noteIsCaseInsensitive: function(test) { + var noteNames = Object.keys(Piezo.Notes); + test.expect(2 * noteNames.length); + + var frequencySpy = this.sandbox.spy(this.piezo, "frequency"); + + // Test every supported note in lowercase (a4) and uppercase (A4) + noteNames.forEach(function(note) { + var expectedFrequency = Piezo.Notes[note]; - // accepts octave. - test.equal(this.piezo.note("c4", 100), this.piezo); - test.ok(toneSpy.calledWith(262, 100)); + this.piezo.note(note.toLowerCase(), 100); + test.equal(frequencySpy.getCall(frequencySpy.callCount-1).args[0], expectedFrequency); - // or not. - test.equal(this.piezo.note("c#", 100), this.piezo); - test.ok(toneSpy.calledWith(277, 100)); + this.piezo.note(note.toUpperCase(), 100); + test.equal(frequencySpy.getCall(frequencySpy.callCount-1).args[0], expectedFrequency); + }.bind(this)); test.done(); }, @@ -348,12 +388,24 @@ exports["Piezo"] = { }, frequency: function(test) { - test.expect(2); + test.expect(6); var toneSpy = this.sandbox.spy(this.piezo, "tone"); - var returned = this.piezo.frequency(440, 100); - test.ok(toneSpy.calledWith(1136, 100)); + // C4 = 262Hz = 1908μs duty cycle (half-period) + var returned = this.piezo.frequency(262, 100); + test.deepEqual(toneSpy.getCall(0).args, [1908, 100]); + test.equal(returned, this.piezo); + + // A4 = 440Hz = 1136μs duty + returned = this.piezo.frequency(440, 100); + test.deepEqual(toneSpy.getCall(1).args, [1136, 100]); + test.equal(returned, this.piezo); + + // C2 = 65Hz = 7692μs duty + returned = this.piezo.frequency(65, 100); + test.deepEqual(toneSpy.getCall(2).args, [7692, 100]); test.equal(returned, this.piezo); + test.done(); }, @@ -781,10 +833,11 @@ exports["Piezo - I2C Backpack"] = { tone: function(test) { test.expect(3); - this.piezo.tone(262, 1000); + // C4 = 262Hz = 1908μs duty cycle (half-period) + this.piezo.tone(1908, 1000); test.equal(this.i2cWrite.callCount, 1); test.equal(this.i2cWrite.lastCall.args[0], 0xFF); - test.deepEqual(this.i2cWrite.lastCall.args[1], [ 1, 3, 1, 6, 0, 0, 3, 232 ]); + test.deepEqual(this.i2cWrite.lastCall.args[1], [ 1, 3, 7, 116, 0, 0, 3, 232 ]); // ... test.done(); From 8fb5dd7aa6a10a5e04f053c43fe6e97034463cab Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 18 Apr 2017 11:08:32 -0700 Subject: [PATCH 09/33] 0.9.62-cdo.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f8ad6843e..816868d53 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.9.62-cdo.1", + "version": "0.9.62-cdo.2", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From afec7716a92b36b6d6a33d0c2a56dfe19237fac5 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Fri, 21 Apr 2017 11:09:49 -0700 Subject: [PATCH 10/33] Correct bad merge --- lib/led/rgb.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/led/rgb.js b/lib/led/rgb.js index 47c7fab97..f7262daa0 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -311,16 +311,6 @@ RGB.ToRGB = function(red, green, blue) { green: parseInt(input.slice(2, 4), 16), blue: parseInt(input.slice(4, 6), 16) }; - } else if (/^rgb/.test(input)) { - var args = input.match(/^rgba?\(([^)]+)\)$/)[1].split(/[\s,]+/); - update = { - red: parseInt(args[0], 10), - green: parseInt(args[1], 10), - blue: parseInt(args[2], 10) - }; - if (args.length > 3) { - update = RGB.ToScaledRGB(100 * parseFloat(args[3]), update); - } } else { // color("rgba(r, g, b, a)") or color("rgb(r, g, b)") // color("rgba(r g b a)") or color("rgb(r g b)") From 7f95c273d20721303ff570fcd6a60326fcb8534d Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Fri, 21 Apr 2017 13:10:18 -0700 Subject: [PATCH 11/33] Customize package.json and README for Code.org Adds a note near the top of the README that this is our fork, and linking to the original repo. Hides badges not relevant to our repo, updates Travis badge to point at our builds. Adjusts package name and repo links in package.json for better metadata on npmjs.org. --- README.md | 9 +++++---- package.json | 6 +++--- tpl/.readme.md | 9 +++++---- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5186d4120..a434dd897 100644 --- a/README.md +++ b/README.md @@ -59,11 +59,12 @@ _Artwork by [Mike Sgier](http://msgierillustration.com)_ -[![Travis Build Status](https://travis-ci.org/rwaldron/johnny-five.svg?branch=master)](https://travis-ci.org/rwaldron/johnny-five) -[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/hmke71k7uemtnami/branch/master?svg=true)](https://ci.appveyor.com/project/rwaldron/johnny-five) -[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/rwaldron/johnny-five?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) - + +[![Travis Build Status](https://travis-ci.org/code-dot-org/johnny-five.svg?branch=master)](https://travis-ci.org/code-dot-org/johnny-five) + +_This is the [Code.org](https://code.org) fork of johnny-five. Please [check out the main project here!](https://github.com/rwaldron/johnny-five)_ + **Johnny-Five is an Open Source, Firmata Protocol based, IoT and Robotics programming framework, developed at [Bocoup](http://bocoup.com). Johnny-Five programs can be written for Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!** diff --git a/package.json b/package.json index 3e246e231..4fed4d41b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@code-dot-org/johnny-five", - "description": "The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", + "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", "version": "0.10.10-cdo.0", "homepage": "https://johnny-five.io", "author": { @@ -249,10 +249,10 @@ ], "repository": { "type": "git", - "url": "git://github.com/rwaldron/johnny-five.git" + "url": "git://github.com/code-dot-org/johnny-five.git" }, "bugs": { - "url": "https://github.com/rwaldron/johnny-five/issues" + "url": "https://github.com/code-dot-org/johnny-five/issues" }, "license": "MIT", "main": "lib/johnny-five", diff --git a/tpl/.readme.md b/tpl/.readme.md index 724a10e57..2d6d9b89b 100644 --- a/tpl/.readme.md +++ b/tpl/.readme.md @@ -7,11 +7,12 @@ _Artwork by [Mike Sgier](http://msgierillustration.com)_ -[![Travis Build Status](https://travis-ci.org/rwaldron/johnny-five.svg?branch=master)](https://travis-ci.org/rwaldron/johnny-five) -[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/hmke71k7uemtnami/branch/master?svg=true)](https://ci.appveyor.com/project/rwaldron/johnny-five) -[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/rwaldron/johnny-five?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) - + +[![Travis Build Status](https://travis-ci.org/code-dot-org/johnny-five.svg?branch=master)](https://travis-ci.org/code-dot-org/johnny-five) + +_This is the [Code.org](https://code.org) fork of johnny-five. Please [check out the main project here!](https://github.com/rwaldron/johnny-five)_ + **Johnny-Five is an Open Source, Firmata Protocol based, IoT and Robotics programming framework, developed at [Bocoup](http://bocoup.com). Johnny-Five programs can be written for Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!** From 599ee48af47c80335a5918f9f16dfcf29ccaae65 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 25 Apr 2017 10:50:50 -0700 Subject: [PATCH 12/33] Switch to edge version in package.json so I cna properly publish cdo.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4fed4d41b..78ae18f51 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.10.10-cdo.0", + "version": "0.10.10-cdo.edge", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From e872eb78559531d5b1c7d01a92444a622ed26fac Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Tue, 25 Apr 2017 10:51:04 -0700 Subject: [PATCH 13/33] 0.10.10-cdo.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 78ae18f51..4fed4d41b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.10.10-cdo.edge", + "version": "0.10.10-cdo.0", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From 205abc4b4d833b048518d8d37caeb2531c0835b0 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Fri, 2 Jun 2017 13:20:57 -0700 Subject: [PATCH 14/33] 0.11.1-cdo.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 820f5ba47..d82f68091 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.10.10-cdo.0", + "version": "0.11.1-cdo.0", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From d4cc1baa45d7db1bd1cd532c9023e159a9bb6b9f Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Thu, 26 Oct 2017 12:57:37 -0700 Subject: [PATCH 15/33] Animation uses fallback timer immediately The 'temporal' library being used for animation in johnny-five, while great for robotics, is too CPU-intensive for use in Maker Lab. There's already a mechanism for falling back on a setInterval-based solution for animations that run longer than 5 seconds. By tuning that fallback timeout down to zero we can use the setInterval fallback immediately and avoid the performance impact of temporal. Animation is the only place in johnny-five that temporal is used, so we don't have to do this anywhere else. If upstream ever makes this fallback officially configurable, we won't need this customization anymore. --- lib/animation.js | 5 ++++- test/servo.js | 18 ++++++++++++------ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/lib/animation.js b/lib/animation.js index fd038dff9..9c99c47e3 100644 --- a/lib/animation.js +++ b/lib/animation.js @@ -17,7 +17,10 @@ var temporal; * time (in ms) is reached we will fall back to setInterval which is less * accurate (by nanoseconds) but perfectly serviceable. **/ -var temporalTTL = 5000; +// Code.org: Temporal is too CPU-intensive for our purposes. We set this +// value to zero so that Animation switches to a setInterval fallback mode +// immediately, which works better for our purposes. +var temporalTTL = 0; /** * Placeholders for Symbol diff --git a/test/servo.js b/test/servo.js index 5de7782da..a926b3bc1 100644 --- a/test/servo.js +++ b/test/servo.js @@ -602,7 +602,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1000); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1000); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", function() { @@ -672,7 +673,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", function() { @@ -742,7 +744,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", function() { @@ -812,7 +815,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1000); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1000); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", function() { @@ -884,7 +888,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1000); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1000); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", function() { @@ -913,7 +918,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); test.done(); From 863e922f8170e670088d3dfe6132060293749ba5 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Fri, 27 Oct 2017 10:03:26 -0700 Subject: [PATCH 16/33] 0.11.1-cdo.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d82f68091..04d2971f1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.11.1-cdo.0", + "version": "0.11.1-cdo.1", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From f1b1a55634ab068ca9abef8c60f7236a26045643 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Wed, 10 Jan 2018 13:34:13 -0800 Subject: [PATCH 17/33] Add RGB.pulse method --- lib/led/rgb.js | 88 +++++++++++++++++++++++++++++++---------- test/rgb.collection.js | 21 ++++++++-- test/rgb.js | 89 +++++++++++++++++++++++++++++++++++++++--- 3 files changed, 168 insertions(+), 30 deletions(-) diff --git a/lib/led/rgb.js b/lib/led/rgb.js index f7262daa0..10d81b3a8 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -182,7 +182,8 @@ function RGB(opts) { blue: 255, intensity: 100, isAnode: opts.isAnode || false, - interval: null + interval: null, + isRunning: false }; // red, green, and blue store the raw color set via .color() @@ -193,6 +194,14 @@ function RGB(opts) { blue: state.blue }; + // state.prev records the last color set using color(), + // and is used to determine the new color when calling on() or pulse(). + state.prev = { + red: 255, + green: 255, + blue: 255 + }; + priv.set(this, state); Board.Controller.call(this, controller, opts); @@ -207,7 +216,7 @@ function RGB(opts) { }, isRunning: { get: function() { - return !!state.interval; + return !!(state.interval || state.isRunning); } }, isAnode: { @@ -399,40 +408,27 @@ RGB.prototype.color = function(red, green, blue) { this.update(update); + // Store colors to state.prev for future use by on() or pulse() + state.prev = update; + return this; }; RGB.prototype.on = function() { var state = priv.get(this); - var colors; // If it's not already on, we set them to the previous color if (!this.isOn) { - /* istanbul ignore next */ - colors = state.prev || { - red: 255, - green: 255, - blue: 255 - }; - - state.prev = null; - - this.update(colors); + this.update(state.prev); } return this; }; RGB.prototype.off = function() { - var state = priv.get(this); - - // If it's already off, do nothing so the pervious state stays intact + // If it's already off, do nothing so the previous state stays intact /* istanbul ignore else */ if (this.isOn) { - state.prev = RGB.colors.reduce(function(current, color) { - return (current[color] = state[color], current); - }.bind(this), {}); - this.update({ red: 0, green: 0, @@ -475,6 +471,55 @@ RGB.prototype.toggle = function() { return this[this.isOn ? "off" : "on"](); }; +/** + * pulse Fade the Led in and out in a loop with specified time + * @param {number} duration Time in ms that a fade in/out will elapse + * @return {Led} + * + * - or - + * + * @param {Object} val An Animation() segment config object + */ + +RGB.prototype.pulse = function(duration, callback) { + var state = priv.get(this); + + var currentColor = state.prev; + + this.stop(); + + var options = { + duration: typeof duration === "number" ? duration : 1000, + keyFrames: [ + {intensity: 0, color: currentColor}, + {intensity: 100, color: currentColor} + ], + metronomic: true, + loop: true, + easing: "inOutSine", + onloop: function() { + /* istanbul ignore else */ + if (typeof callback === "function") { + callback(); + } + } + }; + + if (typeof duration === "object") { + Object.assign(options, duration); + } + + if (typeof duration === "function") { + callback = duration; + } + + state.isRunning = true; + + state.animation = state.animation || new Animation(this); + state.animation.enqueue(options); + return this; +}; + RGB.prototype.stop = function() { var state = priv.get(this); @@ -488,6 +533,7 @@ RGB.prototype.stop = function() { } state.interval = null; + state.isRunning = false; return this; }; @@ -573,7 +619,7 @@ RGB.prototype[Animation.normalize] = function(keyFrames) { */ RGB.prototype[Animation.render] = function(frames) { - return this.color(frames[0]); + return this.update(frames[0]); }; /** diff --git a/test/rgb.collection.js b/test/rgb.collection.js index 4ab8e724c..7f67c3d91 100644 --- a/test/rgb.collection.js +++ b/test/rgb.collection.js @@ -291,21 +291,36 @@ exports["RGB.Collection"] = { "Animation.render": function(test) { - test.expect(1); + test.expect(4); var rgbs = new RGB.Collection([ [1, 2, 3], [4, 5, 6], ]); - this.color = this.sandbox.stub(RGB.prototype, "color"); + rgbs.each(function(rgb) { + this.sandbox.stub(rgb, "write"); + }.bind(this)); rgbs[Animation.render]([ { red: 0xff, green: 0x00, blue: 0x00 }, { red: 0x00, green: 0xff, blue: 0x00 }, ]); - test.equal(this.color.callCount, 2); + test.equal(rgbs[0].write.callCount, 1); + test.deepEqual(rgbs[0].write.firstCall.args[0], { + red: 0xff, + green: 0x00, + blue: 0x00 + }); + + test.equal(rgbs[1].write.callCount, 1); + test.deepEqual(rgbs[1].write.firstCall.args[0], { + red: 0x00, + green: 0xff, + blue: 0x00 + }); + test.done(); }, }; diff --git a/test/rgb.js b/test/rgb.js index f0df8a450..ed8cde9d5 100644 --- a/test/rgb.js +++ b/test/rgb.js @@ -12,6 +12,8 @@ var rgbProtoProperties = [{ name: "strobe" }, { name: "blink" +}, { + name: "pulse" }, { name: "stop" }]; @@ -39,6 +41,7 @@ exports["RGB"] = { this.board = newBoard(); this.sandbox = sinon.sandbox.create(); this.analogWrite = this.sandbox.spy(MockFirmata.prototype, "analogWrite"); + this.enqueue = this.sandbox.stub(Animation.prototype, "enqueue"); this.rgb = new RGB({ pins: { @@ -550,6 +553,76 @@ exports["RGB"] = { test.done(); }, + + + pulse: function(test) { + test.expect(1); + + this.rgb.pulse(); + + test.equal(this.enqueue.callCount, 1); + test.done(); + }, + + pulseDuration: function(test) { + test.expect(2); + + this.rgb.pulse(1010); + + test.equal(this.enqueue.callCount, 1); + + var duration = this.enqueue.lastCall.args[0].duration; + + test.equal(duration, 1010); + test.done(); + }, + + + pulseCallback: function(test) { + test.expect(2); + + var spy = this.sandbox.spy(); + + this.rgb.pulse(spy); + + test.equal(this.enqueue.callCount, 1); + + var onloop = this.enqueue.lastCall.args[0].onloop; + + onloop(); + + test.equal(spy.callCount, 1); + test.done(); + }, + + pulseDurationCallback: function(test) { + test.expect(3); + + var spy = this.sandbox.spy(); + + this.rgb.pulse(1010, spy); + + test.equal(this.enqueue.callCount, 1); + + var duration = this.enqueue.lastCall.args[0].duration; + var onloop = this.enqueue.lastCall.args[0].onloop; + + onloop(); + + + test.equal(duration, 1010); + test.equal(spy.callCount, 1); + test.done(); + }, + + pulseObject: function(test) { + test.expect(1); + + this.rgb.pulse({}); + test.equal(this.enqueue.callCount, 1); + test.done(); + }, + intensity: function(test) { test.expect(24); @@ -754,10 +827,11 @@ exports["RGB"] = { }, "Animation.render": function(test) { - test.expect(1); - this.color = this.sandbox.stub(this.rgb, "color"); - this.rgb[Animation.render]([0]); - test.equal(this.color.callCount, 1); + test.expect(2); + // rgb.write() is already wrapped + this.rgb[Animation.render]([{red: 0, green: 0, blue: 0}]); + test.equal(this.rgb.write.callCount, 1); + test.deepEqual(this.rgb.write.firstCall.args[0], {red: 0, green: 0, blue: 0}); test.done(); }, @@ -786,11 +860,14 @@ exports["RGB - Cycling Operations"] = { }, rgbCallsStopBeforeNextCyclingOperation: function(test) { - test.expect(1); + test.expect(2); this.rgb.blink(); + this.rgb.pulse(); - test.equal(this.stop.callCount, 1); + test.equal(this.stop.callCount, 2); + // pulse is an animation + test.equal(this.enqueue.callCount, 1); // Ensure that the interval is cleared. this.rgb.stop(); From 2e8a074b63493a27cdd503dffd2890c6e4cdb12e Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Wed, 10 Jan 2018 13:53:15 -0800 Subject: [PATCH 18/33] Updated examples --- docs/accelerometer-LIS3DH.md | 2 +- docs/accelerometer-MMA8452.md | 2 +- docs/accelerometer-adxl335.md | 2 +- docs/accelerometer-adxl345.md | 2 +- docs/accelerometer-mma7361.md | 2 +- docs/accelerometer-mpu6050.md | 2 +- docs/accelerometer-pan-tilt.md | 2 +- docs/accelerometer.md | 2 +- docs/altimeter-BMP085.md | 2 +- docs/altimeter-BMP180.md | 2 +- docs/altimeter-MS5611.md | 2 +- docs/altimeter-mpl3115a2.md | 2 +- docs/barometer-BMP085.md | 2 +- docs/barometer-BMP180.md | 2 +- docs/barometer-MS5611.md | 2 +- docs/barometer-mpl115a2.md | 2 +- docs/barometer-mpl3115a2.md | 2 +- docs/board-cleanup.md | 2 +- docs/board-multi.md | 2 +- docs/board-sampling-interval.md | 2 +- docs/board-with-port.md | 2 +- docs/board.md | 2 +- docs/boe-test-servos.md | 2 +- docs/brat.md | 2 +- docs/bug.md | 2 +- docs/button-EVS_EV3.md | 2 +- docs/button-EVS_NXT.md | 2 +- docs/button-bumper.md | 2 +- docs/button-collection-AT42QT1070.md | 2 +- docs/button-options.md | 2 +- docs/button-pullup.md | 2 +- docs/button.md | 2 +- docs/classic-controller.md | 2 +- docs/claw.md | 2 +- docs/color-EVS_EV3.md | 2 +- docs/color-EVS_NXT.md | 2 +- docs/color-ISL29125.md | 2 +- docs/color-raw-EVS_EV3.md | 2 +- docs/compass-MAG3110-tessel.md | 2 +- docs/compass-MAG3110.md | 2 +- docs/compass-hmc5883l.md | 2 +- docs/compass-hmc6352.md | 2 +- docs/custom-properties.md | 2 +- docs/edison-io-arduino.md | 2 +- docs/edison-io-miniboard.md | 2 +- docs/esc-PCA9685.md | 2 +- docs/esc-array.md | 2 +- docs/esc-bidirectional-forward-reverse.md | 2 +- docs/esc-bidirectional.md | 2 +- docs/esc-dualshock.md | 2 +- docs/esc-keypress.md | 2 +- docs/expander-74HC595.md | 2 +- docs/expander-CD74HC4067_NANO_BACKPACK.md | 2 +- docs/expander-LIS3DH.md | 2 +- docs/expander-MCP23008.md | 2 +- docs/expander-MCP23017.md | 2 +- docs/expander-MUXSHIELD2-analog-read.md | 2 +- docs/expander-MUXSHIELD2-mixed.md | 2 +- docs/expander-PCA9685.md | 2 +- docs/expander-PCF8574.md | 2 +- docs/expander-PCF8575.md | 2 +- docs/expander-PCF8591.md | 2 +- docs/galileo-io.md | 2 +- docs/gps-GP-20U7.md | 2 +- docs/gps-adafruit.md | 2 +- docs/gps.md | 2 +- docs/grove-accelerometer-adxl345-edison.md | 2 +- docs/grove-accelerometer-mma7660-edison.md | 2 +- docs/grove-barometer-edison.md | 2 +- docs/grove-button-edison.md | 2 +- docs/grove-button.md | 2 +- docs/grove-compass-edison.md | 2 +- docs/grove-flame-sensor-edison.md | 2 +- docs/grove-gas-mq2-edison.md | 2 +- docs/grove-gas-tp401-edison.md | 2 +- docs/grove-humidity-temperature-edison.md | 2 +- docs/grove-i2c-motor-driver-edison.md | 2 +- docs/grove-i2c-motor-driver.md | 2 +- docs/grove-joystick-edison.md | 2 +- docs/grove-joystick.md | 2 +- docs/grove-lcd-rgb-bgcolor-previewer-edison.md | 2 +- docs/grove-lcd-rgb-edison.md | 2 +- docs/grove-lcd-rgb-temperature-display-edison.md | 2 +- docs/grove-lcd-rgb-temperature-display.md | 2 +- docs/grove-lcd-rgb.md | 2 +- docs/grove-led-edison.md | 2 +- docs/grove-led.md | 2 +- docs/grove-light-sensor-edison.md | 2 +- docs/grove-moisture-edison.md | 2 +- docs/grove-q-touch.md | 2 +- docs/grove-relay-edison.md | 2 +- docs/grove-rotary-potentiometer-edison.md | 2 +- docs/grove-rotary-potentiometer.md | 2 +- docs/grove-servo-edison.md | 2 +- docs/grove-servo.md | 2 +- docs/grove-touch-edison.md | 2 +- docs/grove-touch.md | 2 +- docs/gyro-lpr5150l.md | 2 +- docs/gyro-mpu6050.md | 2 +- docs/gyro.md | 2 +- docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-HIH6130.md | 2 +- docs/hygrometer-SI7021.md | 2 +- docs/hygrometer-TH02.md | 2 +- docs/hygrometer-htu21d.md | 2 +- docs/hygrometer-sht31d.md | 2 +- docs/imp-io.md | 2 +- docs/imu-bno055-orientation.md | 2 +- docs/imu-bno055.md | 2 +- docs/imu-mpu6050.md | 2 +- docs/ir-motion.md | 2 +- docs/ir-proximity.md | 2 +- docs/ir-reflect-array.md | 2 +- docs/ir-reflect.md | 2 +- docs/joystick-esplora.md | 2 +- docs/joystick-pantilt.md | 2 +- docs/joystick-shield.md | 2 +- docs/joystick.md | 2 +- docs/keypad-3X4_I2C_NANO_BACKPACK.md | 2 +- docs/keypad-MPR121-sensitivity.md | 2 +- docs/keypad-MPR121.md | 2 +- docs/keypad-MPR121QR2_SHIELD.md | 2 +- docs/keypad-MPR121_KEYPAD.md | 2 +- docs/keypad-MPR121_SHIELD.md | 2 +- docs/keypad-QTOUCH.md | 2 +- docs/keypad-analog-ad.md | 2 +- docs/keypad-analog-vkey.md | 2 +- docs/kinect-arm-controller.md | 2 +- docs/laser-trip-wire.md | 2 +- docs/lcd-16x2-tessel.md | 2 +- docs/lcd-enumeratechars.md | 2 +- docs/lcd-i2c-PCF8574.md | 2 +- docs/lcd-i2c-runner.md | 2 +- docs/lcd-i2c.md | 2 +- docs/lcd-rgb-bgcolor-previewer-tessel.md | 2 +- docs/lcd-rgb-bgcolor-previewer.md | 2 +- docs/lcd-rgb-tessel-grove-JHD1313M1.md | 2 +- docs/lcd-runner-20x4.md | 2 +- docs/lcd-runner.md | 2 +- docs/lcd.md | 2 +- docs/led-PCA9685.md | 2 +- docs/led-array-controller.md | 2 +- docs/led-array.md | 2 +- docs/led-blink.md | 2 +- docs/led-chars-demo.md | 2 +- docs/led-demo-sequence.md | 2 +- docs/led-digits-clock-HT16K33.md | 2 +- docs/led-digits-clock-dual.md | 2 +- docs/led-digits-clock.md | 2 +- docs/led-enumeratechars.md | 2 +- docs/led-fade-animation.md | 2 +- docs/led-fade-callback.md | 2 +- docs/led-fade.md | 2 +- docs/led-matrix-HT16K33-16x8.md | 2 +- docs/led-matrix-HT16K33.md | 2 +- docs/led-matrix-tutorial.md | 2 +- docs/led-matrix.md | 2 +- docs/led-pulse-animation.md | 2 +- docs/led-pulse.md | 2 +- docs/led-rainbow.md | 2 +- docs/led-rgb-BLINKM.md | 2 +- docs/led-rgb-anode-PCA9685.md | 2 +- docs/led-rgb-anode.md | 2 +- docs/led-rgb-intensity.md | 2 +- docs/led-rgb.md | 2 +- docs/led-slider.md | 2 +- docs/led-tessel-servo-module.md | 2 +- docs/led.md | 2 +- docs/light-ambient-EVS_EV3.md | 2 +- docs/light-ambient-EVS_NXT.md | 2 +- docs/light-reflected-EVS_EV3.md | 2 +- docs/light-reflected-EVS_NXT.md | 2 +- docs/line-follower.md | 2 +- docs/magnetometer-log.md | 2 +- docs/magnetometer-north.md | 2 +- docs/magnetometer.md | 2 +- docs/micromagician-accelerometer.md | 2 +- docs/micromagician-motor.md | 2 +- docs/micromagician-servo.md | 2 +- docs/microphone.md | 2 +- docs/motion-GP2Y0A60SZLF.md | 2 +- docs/motion-gp2y0d805z0f.md | 2 +- docs/motion-gp2y0d810z0f.md | 2 +- docs/motion-gp2y0d815z0f.md | 2 +- docs/motion.md | 2 +- docs/motobot.md | 2 +- docs/motor-3-pin.md | 2 +- docs/motor-EVS_EV3.md | 2 +- docs/motor-EVS_NXT.md | 2 +- docs/motor-GROVE_I2C.md | 2 +- docs/motor-LUDUS.md | 2 +- docs/motor-PCA9685.md | 2 +- docs/motor-TB6612FNG.md | 2 +- docs/motor-brake.md | 2 +- docs/motor-current.md | 2 +- docs/motor-directional.md | 2 +- docs/motor-enable.md | 2 +- docs/motor-hbridge-dual.md | 2 +- docs/motor-hbridge.md | 2 +- docs/motor-sparkfun-edison-hbridge.md | 2 +- docs/motor.md | 2 +- docs/multi-BME280.md | 2 +- docs/multi-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/multi-DHT21_I2C_NANO_BACKPACK.md | 2 +- docs/multi-DHT22_I2C_NANO_BACKPACK.md | 2 +- docs/multi-HIH6130.md | 2 +- docs/multi-MS5611.md | 2 +- docs/multi-SI7020.md | 2 +- docs/multi-SI7021.md | 2 +- docs/multi-TH02.md | 2 +- docs/multi-bmp085.md | 2 +- docs/multi-bmp180.md | 2 +- docs/multi-htu21d.md | 2 +- docs/multi-mpl115a2.md | 2 +- docs/multi-mpl3115a2.md | 2 +- docs/multi-sht31d.md | 2 +- docs/navigator.md | 2 +- docs/nodebot.md | 2 +- docs/nunchuk.md | 2 +- docs/pcduino-io.md | 2 +- docs/phoenix.md | 2 +- docs/photoresistor.md | 2 +- docs/piezo.md | 2 +- docs/pin.md | 2 +- docs/plugin.md | 2 +- docs/potentiometer.md | 2 +- docs/proximity-EVS_EV3_IR-alert.md | 2 +- docs/proximity-EVS_EV3_IR.md | 2 +- docs/proximity-EVS_EV3_US-alert.md | 2 +- docs/proximity-EVS_EV3_US.md | 2 +- docs/proximity-GP2Y0A710K0F.md | 2 +- docs/proximity-hcsr04-analog.md | 2 +- docs/proximity-hcsr04-i2c.md | 2 +- docs/proximity-hcsr04.md | 2 +- docs/proximity-lidarlite.md | 2 +- docs/proximity-mb1000.md | 2 +- docs/proximity-mb1003.md | 2 +- docs/proximity-mb1010.md | 2 +- docs/proximity-mb1230.md | 2 +- docs/proximity-srf10.md | 2 +- docs/proximity.md | 2 +- docs/radar.md | 2 +- docs/raspi-io.md | 2 +- docs/relay-collection.md | 2 +- docs/relay.md | 2 +- docs/repl.md | 2 +- docs/sensor-digital-microwave.md | 2 +- docs/sensor-fsr.md | 2 +- docs/sensor-photon-weather-shield-moisture.md | 2 +- docs/sensor-slider.md | 2 +- docs/sensor.md | 2 +- docs/servo-PCA9685.md | 2 +- docs/servo-animation-leg.md | 2 +- docs/servo-animation.md | 2 +- docs/servo-array.md | 2 +- docs/servo-continuous.md | 2 +- docs/servo-drive.md | 2 +- docs/servo-prompt.md | 2 +- docs/servo-slider.md | 2 +- docs/servo-sweep.md | 2 +- docs/servo-tessel-servo-module.md | 2 +- docs/servo.md | 2 +- docs/shift-register-daisy-chain-anode.md | 2 +- docs/shift-register-daisy-chain.md | 2 +- docs/shift-register-seven-segment-anode.md | 2 +- docs/shift-register-seven-segment.md | 2 +- docs/shift-register.md | 2 +- docs/spark-io.md | 2 +- docs/stepper-driver.md | 2 +- docs/stepper-sweep.md | 2 +- docs/switch-magnetic-door.md | 2 +- docs/switch-tilt-SW_200D.md | 2 +- docs/temperature-BMP180.md | 2 +- docs/temperature-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-DHT21_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-DHT22_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-HIH6130.md | 2 +- docs/temperature-MCP9808.md | 2 +- docs/temperature-MS5611.md | 2 +- docs/temperature-SI7020.md | 2 +- docs/temperature-SI7021.md | 2 +- docs/temperature-TH02.md | 2 +- docs/temperature-bmp085.md | 2 +- docs/temperature-ds18b20.md | 2 +- docs/temperature-htu21d.md | 2 +- docs/temperature-lm335.md | 2 +- docs/temperature-lm35.md | 2 +- docs/temperature-max31850k.md | 2 +- docs/temperature-mpl115a2.md | 2 +- docs/temperature-mpl3115a2.md | 2 +- docs/temperature-mpu6050.md | 2 +- docs/temperature-sht31d.md | 2 +- docs/temperature-tmp102.md | 2 +- docs/temperature-tmp36.md | 2 +- docs/tinkerkit-accelerometer.md | 2 +- docs/tinkerkit-blink.md | 2 +- docs/tinkerkit-button.md | 2 +- docs/tinkerkit-combo.md | 2 +- docs/tinkerkit-continuous-servo.md | 2 +- docs/tinkerkit-gyroscope.md | 2 +- docs/tinkerkit-joystick.md | 2 +- docs/tinkerkit-linear-pot.md | 2 +- docs/tinkerkit-rotary.md | 2 +- docs/tinkerkit-thermistor.md | 2 +- docs/tinkerkit-tilt.md | 2 +- docs/tinkerkit-touch.md | 2 +- docs/toggle-switch.md | 2 +- docs/whisker.md | 2 +- 310 files changed, 310 insertions(+), 310 deletions(-) diff --git a/docs/accelerometer-LIS3DH.md b/docs/accelerometer-LIS3DH.md index 4513b3f28..41f9a3ec2 100644 --- a/docs/accelerometer-LIS3DH.md +++ b/docs/accelerometer-LIS3DH.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-MMA8452.md b/docs/accelerometer-MMA8452.md index 2dfd84d86..d40cae67e 100644 --- a/docs/accelerometer-MMA8452.md +++ b/docs/accelerometer-MMA8452.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-adxl335.md b/docs/accelerometer-adxl335.md index 3f9f2246c..3a1a79897 100644 --- a/docs/accelerometer-adxl335.md +++ b/docs/accelerometer-adxl335.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-adxl345.md b/docs/accelerometer-adxl345.md index 2bd7ae309..8747c31c7 100644 --- a/docs/accelerometer-adxl345.md +++ b/docs/accelerometer-adxl345.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-mma7361.md b/docs/accelerometer-mma7361.md index acc84ad1c..ce50193db 100644 --- a/docs/accelerometer-mma7361.md +++ b/docs/accelerometer-mma7361.md @@ -82,7 +82,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-mpu6050.md b/docs/accelerometer-mpu6050.md index 1b3e0185b..4fee35b07 100644 --- a/docs/accelerometer-mpu6050.md +++ b/docs/accelerometer-mpu6050.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-pan-tilt.md b/docs/accelerometer-pan-tilt.md index 1c3ee1e04..f26458c53 100644 --- a/docs/accelerometer-pan-tilt.md +++ b/docs/accelerometer-pan-tilt.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer.md b/docs/accelerometer.md index d710d878c..17af3f688 100644 --- a/docs/accelerometer.md +++ b/docs/accelerometer.md @@ -131,7 +131,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-BMP085.md b/docs/altimeter-BMP085.md index af1d62158..a88fe598e 100644 --- a/docs/altimeter-BMP085.md +++ b/docs/altimeter-BMP085.md @@ -114,7 +114,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-BMP180.md b/docs/altimeter-BMP180.md index c9a18efea..2a6528ea2 100644 --- a/docs/altimeter-BMP180.md +++ b/docs/altimeter-BMP180.md @@ -116,7 +116,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-MS5611.md b/docs/altimeter-MS5611.md index 1c328690f..db59ea7d5 100644 --- a/docs/altimeter-MS5611.md +++ b/docs/altimeter-MS5611.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-mpl3115a2.md b/docs/altimeter-mpl3115a2.md index 96c63c6c4..bbc6187a5 100644 --- a/docs/altimeter-mpl3115a2.md +++ b/docs/altimeter-mpl3115a2.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-BMP085.md b/docs/barometer-BMP085.md index e455ea8ac..e1ed649f4 100644 --- a/docs/barometer-BMP085.md +++ b/docs/barometer-BMP085.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-BMP180.md b/docs/barometer-BMP180.md index 0bdfb5bc8..4bc19568d 100644 --- a/docs/barometer-BMP180.md +++ b/docs/barometer-BMP180.md @@ -80,7 +80,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-MS5611.md b/docs/barometer-MS5611.md index 852ade61f..3dcd51e84 100644 --- a/docs/barometer-MS5611.md +++ b/docs/barometer-MS5611.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-mpl115a2.md b/docs/barometer-mpl115a2.md index 57f8d5aca..7178a50cf 100644 --- a/docs/barometer-mpl115a2.md +++ b/docs/barometer-mpl115a2.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-mpl3115a2.md b/docs/barometer-mpl3115a2.md index f019062d0..6c907ad00 100644 --- a/docs/barometer-mpl3115a2.md +++ b/docs/barometer-mpl3115a2.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-cleanup.md b/docs/board-cleanup.md index 1890b3706..9675f254c 100644 --- a/docs/board-cleanup.md +++ b/docs/board-cleanup.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-multi.md b/docs/board-multi.md index 3fb1c2e8f..baba97536 100644 --- a/docs/board-multi.md +++ b/docs/board-multi.md @@ -103,7 +103,7 @@ boards.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-sampling-interval.md b/docs/board-sampling-interval.md index 89b58a08a..e3b099523 100644 --- a/docs/board-sampling-interval.md +++ b/docs/board-sampling-interval.md @@ -63,7 +63,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-with-port.md b/docs/board-with-port.md index b54b59641..688168131 100644 --- a/docs/board-with-port.md +++ b/docs/board-with-port.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board.md b/docs/board.md index e4de6210f..e6bfab583 100644 --- a/docs/board.md +++ b/docs/board.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/boe-test-servos.md b/docs/boe-test-servos.md index fc0e9f687..eacca29db 100644 --- a/docs/boe-test-servos.md +++ b/docs/boe-test-servos.md @@ -286,7 +286,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/brat.md b/docs/brat.md index fce5942b3..e49f43f32 100644 --- a/docs/brat.md +++ b/docs/brat.md @@ -647,7 +647,7 @@ Example control of biped robot ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/bug.md b/docs/bug.md index c870e17d6..b086f7ab5 100644 --- a/docs/bug.md +++ b/docs/bug.md @@ -233,7 +233,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-EVS_EV3.md b/docs/button-EVS_EV3.md index bcd375591..e040cccc3 100644 --- a/docs/button-EVS_EV3.md +++ b/docs/button-EVS_EV3.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-EVS_NXT.md b/docs/button-EVS_NXT.md index 5839b6e4f..c251d6893 100644 --- a/docs/button-EVS_NXT.md +++ b/docs/button-EVS_NXT.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-bumper.md b/docs/button-bumper.md index 69a217a41..6ad051671 100644 --- a/docs/button-bumper.md +++ b/docs/button-bumper.md @@ -64,7 +64,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-collection-AT42QT1070.md b/docs/button-collection-AT42QT1070.md index eb6102c13..d48fa4e64 100644 --- a/docs/button-collection-AT42QT1070.md +++ b/docs/button-collection-AT42QT1070.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-options.md b/docs/button-options.md index 704212717..388369ed3 100644 --- a/docs/button-options.md +++ b/docs/button-options.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-pullup.md b/docs/button-pullup.md index d33d5f0dd..b282cdac4 100644 --- a/docs/button-pullup.md +++ b/docs/button-pullup.md @@ -79,7 +79,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button.md b/docs/button.md index df52f3d9b..4a391f740 100644 --- a/docs/button.md +++ b/docs/button.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/classic-controller.md b/docs/classic-controller.md index 683af2570..e3a134bdb 100644 --- a/docs/classic-controller.md +++ b/docs/classic-controller.md @@ -133,7 +133,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/claw.md b/docs/claw.md index 47b738dee..6b7951555 100644 --- a/docs/claw.md +++ b/docs/claw.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-EVS_EV3.md b/docs/color-EVS_EV3.md index 5f718a027..c5dbb5753 100644 --- a/docs/color-EVS_EV3.md +++ b/docs/color-EVS_EV3.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-EVS_NXT.md b/docs/color-EVS_NXT.md index 9d48b6605..b0475832d 100644 --- a/docs/color-EVS_NXT.md +++ b/docs/color-EVS_NXT.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-ISL29125.md b/docs/color-ISL29125.md index 66f674480..eed6d4b8f 100644 --- a/docs/color-ISL29125.md +++ b/docs/color-ISL29125.md @@ -51,7 +51,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-raw-EVS_EV3.md b/docs/color-raw-EVS_EV3.md index 7fc9bb2d0..6d2874da1 100644 --- a/docs/color-raw-EVS_EV3.md +++ b/docs/color-raw-EVS_EV3.md @@ -50,7 +50,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-MAG3110-tessel.md b/docs/compass-MAG3110-tessel.md index fd773724e..5b0b2f047 100644 --- a/docs/compass-MAG3110-tessel.md +++ b/docs/compass-MAG3110-tessel.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-MAG3110.md b/docs/compass-MAG3110.md index 683260df7..b6268d83e 100644 --- a/docs/compass-MAG3110.md +++ b/docs/compass-MAG3110.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-hmc5883l.md b/docs/compass-hmc5883l.md index 2968e32ff..bd6cde592 100644 --- a/docs/compass-hmc5883l.md +++ b/docs/compass-hmc5883l.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-hmc6352.md b/docs/compass-hmc6352.md index 26c4f36f1..5ceda8507 100644 --- a/docs/compass-hmc6352.md +++ b/docs/compass-hmc6352.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/custom-properties.md b/docs/custom-properties.md index 18372b65e..536fa86fe 100644 --- a/docs/custom-properties.md +++ b/docs/custom-properties.md @@ -52,7 +52,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/edison-io-arduino.md b/docs/edison-io-arduino.md index 2b01f7288..54a5dafd9 100644 --- a/docs/edison-io-arduino.md +++ b/docs/edison-io-arduino.md @@ -79,7 +79,7 @@ npm install johnny-five edison-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/edison-io-miniboard.md b/docs/edison-io-miniboard.md index 3962233e1..cda4d0af6 100644 --- a/docs/edison-io-miniboard.md +++ b/docs/edison-io-miniboard.md @@ -79,7 +79,7 @@ npm install johnny-five edison-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-PCA9685.md b/docs/esc-PCA9685.md index da022d19b..85a0a152e 100644 --- a/docs/esc-PCA9685.md +++ b/docs/esc-PCA9685.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-array.md b/docs/esc-array.md index 6ab4b4e72..83be53030 100644 --- a/docs/esc-array.md +++ b/docs/esc-array.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-bidirectional-forward-reverse.md b/docs/esc-bidirectional-forward-reverse.md index 0d9fb91af..2d226ad4f 100644 --- a/docs/esc-bidirectional-forward-reverse.md +++ b/docs/esc-bidirectional-forward-reverse.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-bidirectional.md b/docs/esc-bidirectional.md index 74d95eaeb..4a7c50304 100644 --- a/docs/esc-bidirectional.md +++ b/docs/esc-bidirectional.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-dualshock.md b/docs/esc-dualshock.md index 578d9db34..f244232fa 100644 --- a/docs/esc-dualshock.md +++ b/docs/esc-dualshock.md @@ -99,7 +99,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-keypress.md b/docs/esc-keypress.md index 994757ff6..74b3e40eb 100644 --- a/docs/esc-keypress.md +++ b/docs/esc-keypress.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-74HC595.md b/docs/expander-74HC595.md index 1d0882907..bde9e48ab 100644 --- a/docs/expander-74HC595.md +++ b/docs/expander-74HC595.md @@ -69,7 +69,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-CD74HC4067_NANO_BACKPACK.md b/docs/expander-CD74HC4067_NANO_BACKPACK.md index d5aaf2874..6dd5ddcc8 100644 --- a/docs/expander-CD74HC4067_NANO_BACKPACK.md +++ b/docs/expander-CD74HC4067_NANO_BACKPACK.md @@ -98,7 +98,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-LIS3DH.md b/docs/expander-LIS3DH.md index 0dfa521ce..1cee0bc69 100644 --- a/docs/expander-LIS3DH.md +++ b/docs/expander-LIS3DH.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MCP23008.md b/docs/expander-MCP23008.md index e73231b74..5c089bb9f 100644 --- a/docs/expander-MCP23008.md +++ b/docs/expander-MCP23008.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MCP23017.md b/docs/expander-MCP23017.md index 5e51f6a7f..9cd0b07b6 100644 --- a/docs/expander-MCP23017.md +++ b/docs/expander-MCP23017.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MUXSHIELD2-analog-read.md b/docs/expander-MUXSHIELD2-analog-read.md index 615d43081..394d55427 100644 --- a/docs/expander-MUXSHIELD2-analog-read.md +++ b/docs/expander-MUXSHIELD2-analog-read.md @@ -83,7 +83,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MUXSHIELD2-mixed.md b/docs/expander-MUXSHIELD2-mixed.md index 9e4684dde..93d4d8db6 100644 --- a/docs/expander-MUXSHIELD2-mixed.md +++ b/docs/expander-MUXSHIELD2-mixed.md @@ -118,7 +118,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCA9685.md b/docs/expander-PCA9685.md index f9b43c1b6..5190f0cd7 100644 --- a/docs/expander-PCA9685.md +++ b/docs/expander-PCA9685.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8574.md b/docs/expander-PCF8574.md index d647b1482..2a4f3ec3a 100644 --- a/docs/expander-PCF8574.md +++ b/docs/expander-PCF8574.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8575.md b/docs/expander-PCF8575.md index a756e2add..f31b5d987 100644 --- a/docs/expander-PCF8575.md +++ b/docs/expander-PCF8575.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8591.md b/docs/expander-PCF8591.md index 9f29746fb..84cfd6742 100644 --- a/docs/expander-PCF8591.md +++ b/docs/expander-PCF8591.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/galileo-io.md b/docs/galileo-io.md index 66a15d5ff..0eaf2ce89 100644 --- a/docs/galileo-io.md +++ b/docs/galileo-io.md @@ -79,7 +79,7 @@ npm install johnny-five galileo-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps-GP-20U7.md b/docs/gps-GP-20U7.md index 8046c0e16..57f45aec6 100644 --- a/docs/gps-GP-20U7.md +++ b/docs/gps-GP-20U7.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps-adafruit.md b/docs/gps-adafruit.md index 36bfa3723..faad7063a 100644 --- a/docs/gps-adafruit.md +++ b/docs/gps-adafruit.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps.md b/docs/gps.md index c29f6fb65..fafbd3822 100644 --- a/docs/gps.md +++ b/docs/gps.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-accelerometer-adxl345-edison.md b/docs/grove-accelerometer-adxl345-edison.md index e50317880..dceffb139 100644 --- a/docs/grove-accelerometer-adxl345-edison.md +++ b/docs/grove-accelerometer-adxl345-edison.md @@ -70,7 +70,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-accelerometer-mma7660-edison.md b/docs/grove-accelerometer-mma7660-edison.md index 709530edc..f4846f383 100644 --- a/docs/grove-accelerometer-mma7660-edison.md +++ b/docs/grove-accelerometer-mma7660-edison.md @@ -70,7 +70,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-barometer-edison.md b/docs/grove-barometer-edison.md index 77f2e1ae2..417e731d6 100644 --- a/docs/grove-barometer-edison.md +++ b/docs/grove-barometer-edison.md @@ -64,7 +64,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-button-edison.md b/docs/grove-button-edison.md index 387ca1d48..0339c39fb 100644 --- a/docs/grove-button-edison.md +++ b/docs/grove-button-edison.md @@ -72,7 +72,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-button.md b/docs/grove-button.md index 1dbc99385..66bca63ed 100644 --- a/docs/grove-button.md +++ b/docs/grove-button.md @@ -66,7 +66,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-compass-edison.md b/docs/grove-compass-edison.md index 375b38d30..79883f8a3 100644 --- a/docs/grove-compass-edison.md +++ b/docs/grove-compass-edison.md @@ -71,7 +71,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-flame-sensor-edison.md b/docs/grove-flame-sensor-edison.md index 7aecbb9e9..2134470ed 100644 --- a/docs/grove-flame-sensor-edison.md +++ b/docs/grove-flame-sensor-edison.md @@ -67,7 +67,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-gas-mq2-edison.md b/docs/grove-gas-mq2-edison.md index 881bcc8d5..fdd678ed5 100644 --- a/docs/grove-gas-mq2-edison.md +++ b/docs/grove-gas-mq2-edison.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-gas-tp401-edison.md b/docs/grove-gas-tp401-edison.md index 4336c4083..81b259d76 100644 --- a/docs/grove-gas-tp401-edison.md +++ b/docs/grove-gas-tp401-edison.md @@ -107,7 +107,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-humidity-temperature-edison.md b/docs/grove-humidity-temperature-edison.md index c58b1c4d0..84f151b99 100644 --- a/docs/grove-humidity-temperature-edison.md +++ b/docs/grove-humidity-temperature-edison.md @@ -79,7 +79,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-i2c-motor-driver-edison.md b/docs/grove-i2c-motor-driver-edison.md index 8b316a03e..b252e296c 100644 --- a/docs/grove-i2c-motor-driver-edison.md +++ b/docs/grove-i2c-motor-driver-edison.md @@ -85,7 +85,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-i2c-motor-driver.md b/docs/grove-i2c-motor-driver.md index 78b2e635b..f5d56c1c5 100644 --- a/docs/grove-i2c-motor-driver.md +++ b/docs/grove-i2c-motor-driver.md @@ -79,7 +79,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-joystick-edison.md b/docs/grove-joystick-edison.md index 95e579557..feefafc7f 100644 --- a/docs/grove-joystick-edison.md +++ b/docs/grove-joystick-edison.md @@ -66,7 +66,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-joystick.md b/docs/grove-joystick.md index bb1a6aa92..65e230966 100644 --- a/docs/grove-joystick.md +++ b/docs/grove-joystick.md @@ -59,7 +59,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-bgcolor-previewer-edison.md b/docs/grove-lcd-rgb-bgcolor-previewer-edison.md index f0a911379..73c182adb 100644 --- a/docs/grove-lcd-rgb-bgcolor-previewer-edison.md +++ b/docs/grove-lcd-rgb-bgcolor-previewer-edison.md @@ -73,7 +73,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-edison.md b/docs/grove-lcd-rgb-edison.md index 4525138e4..bda9db500 100644 --- a/docs/grove-lcd-rgb-edison.md +++ b/docs/grove-lcd-rgb-edison.md @@ -83,7 +83,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-temperature-display-edison.md b/docs/grove-lcd-rgb-temperature-display-edison.md index 776474bfe..deaf9e114 100644 --- a/docs/grove-lcd-rgb-temperature-display-edison.md +++ b/docs/grove-lcd-rgb-temperature-display-edison.md @@ -101,7 +101,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-temperature-display.md b/docs/grove-lcd-rgb-temperature-display.md index 650fb062e..fbf189d03 100644 --- a/docs/grove-lcd-rgb-temperature-display.md +++ b/docs/grove-lcd-rgb-temperature-display.md @@ -108,7 +108,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb.md b/docs/grove-lcd-rgb.md index e9f900d0b..69c91078f 100644 --- a/docs/grove-lcd-rgb.md +++ b/docs/grove-lcd-rgb.md @@ -88,7 +88,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-led-edison.md b/docs/grove-led-edison.md index d31515f03..794ad0429 100644 --- a/docs/grove-led-edison.md +++ b/docs/grove-led-edison.md @@ -74,7 +74,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-led.md b/docs/grove-led.md index ef98ddf8f..b505b5e5e 100644 --- a/docs/grove-led.md +++ b/docs/grove-led.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-light-sensor-edison.md b/docs/grove-light-sensor-edison.md index a013f38d7..72e400fd5 100644 --- a/docs/grove-light-sensor-edison.md +++ b/docs/grove-light-sensor-edison.md @@ -62,7 +62,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-moisture-edison.md b/docs/grove-moisture-edison.md index 7d5017eae..e9a9cdf0b 100644 --- a/docs/grove-moisture-edison.md +++ b/docs/grove-moisture-edison.md @@ -73,7 +73,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-q-touch.md b/docs/grove-q-touch.md index 8b50ef7c8..35ed4cd8c 100644 --- a/docs/grove-q-touch.md +++ b/docs/grove-q-touch.md @@ -87,7 +87,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-relay-edison.md b/docs/grove-relay-edison.md index 2140345af..7c4b1ee29 100644 --- a/docs/grove-relay-edison.md +++ b/docs/grove-relay-edison.md @@ -63,7 +63,7 @@ Learn More At: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-rotary-potentiometer-edison.md b/docs/grove-rotary-potentiometer-edison.md index 22c52cf00..f3dc19997 100644 --- a/docs/grove-rotary-potentiometer-edison.md +++ b/docs/grove-rotary-potentiometer-edison.md @@ -90,7 +90,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-rotary-potentiometer.md b/docs/grove-rotary-potentiometer.md index d12270036..4aa227236 100644 --- a/docs/grove-rotary-potentiometer.md +++ b/docs/grove-rotary-potentiometer.md @@ -84,7 +84,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-servo-edison.md b/docs/grove-servo-edison.md index 8c7c65309..2256302e8 100644 --- a/docs/grove-servo-edison.md +++ b/docs/grove-servo-edison.md @@ -70,7 +70,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-servo.md b/docs/grove-servo.md index c2d6aa682..fec49f192 100644 --- a/docs/grove-servo.md +++ b/docs/grove-servo.md @@ -64,7 +64,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-touch-edison.md b/docs/grove-touch-edison.md index bc7afe28a..22fb7f3d2 100644 --- a/docs/grove-touch-edison.md +++ b/docs/grove-touch-edison.md @@ -74,7 +74,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-touch.md b/docs/grove-touch.md index 4c24af069..033d4c480 100644 --- a/docs/grove-touch.md +++ b/docs/grove-touch.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro-lpr5150l.md b/docs/gyro-lpr5150l.md index cb1c5545e..25aef94c1 100644 --- a/docs/gyro-lpr5150l.md +++ b/docs/gyro-lpr5150l.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro-mpu6050.md b/docs/gyro-mpu6050.md index 06b8e666e..ef97b7874 100644 --- a/docs/gyro-mpu6050.md +++ b/docs/gyro-mpu6050.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro.md b/docs/gyro.md index 5cd7d9995..67527f74f 100644 --- a/docs/gyro.md +++ b/docs/gyro.md @@ -113,7 +113,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md index d5381ee37..e2c8838d0 100644 --- a/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md index 90670e39d..0e6f540e3 100644 --- a/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md index 8c9e954e6..8813fd19b 100644 --- a/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-HIH6130.md b/docs/hygrometer-HIH6130.md index b43598783..a00c1eb52 100644 --- a/docs/hygrometer-HIH6130.md +++ b/docs/hygrometer-HIH6130.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-SI7021.md b/docs/hygrometer-SI7021.md index 37d50f4d4..e64550cae 100644 --- a/docs/hygrometer-SI7021.md +++ b/docs/hygrometer-SI7021.md @@ -63,7 +63,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-TH02.md b/docs/hygrometer-TH02.md index 6614de915..53f629dd2 100644 --- a/docs/hygrometer-TH02.md +++ b/docs/hygrometer-TH02.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-htu21d.md b/docs/hygrometer-htu21d.md index b71e7491e..3e5c75873 100644 --- a/docs/hygrometer-htu21d.md +++ b/docs/hygrometer-htu21d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-sht31d.md b/docs/hygrometer-sht31d.md index 2bbee6bb3..de478a32e 100644 --- a/docs/hygrometer-sht31d.md +++ b/docs/hygrometer-sht31d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imp-io.md b/docs/imp-io.md index 76ee54421..fea7c1768 100644 --- a/docs/imp-io.md +++ b/docs/imp-io.md @@ -95,7 +95,7 @@ source ~/.imprc ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-bno055-orientation.md b/docs/imu-bno055-orientation.md index 002e0a10a..39b5afc7b 100644 --- a/docs/imu-bno055-orientation.md +++ b/docs/imu-bno055-orientation.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-bno055.md b/docs/imu-bno055.md index 3ce3cb8af..c67e81ce4 100644 --- a/docs/imu-bno055.md +++ b/docs/imu-bno055.md @@ -110,7 +110,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-mpu6050.md b/docs/imu-mpu6050.md index 8b34a6e96..8d61360ad 100644 --- a/docs/imu-mpu6050.md +++ b/docs/imu-mpu6050.md @@ -85,7 +85,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-motion.md b/docs/ir-motion.md index dd1d514dc..f7c6b778d 100644 --- a/docs/ir-motion.md +++ b/docs/ir-motion.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-proximity.md b/docs/ir-proximity.md index 69d0f27db..f1a7e7b85 100644 --- a/docs/ir-proximity.md +++ b/docs/ir-proximity.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-reflect-array.md b/docs/ir-reflect-array.md index 657ee02b2..6ab8ede28 100644 --- a/docs/ir-reflect-array.md +++ b/docs/ir-reflect-array.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-reflect.md b/docs/ir-reflect.md index de54cdbd5..8f4be3259 100644 --- a/docs/ir-reflect.md +++ b/docs/ir-reflect.md @@ -60,7 +60,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-esplora.md b/docs/joystick-esplora.md index 200f3f1a8..5f389be83 100644 --- a/docs/joystick-esplora.md +++ b/docs/joystick-esplora.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-pantilt.md b/docs/joystick-pantilt.md index 6ed84be3b..7e687d230 100644 --- a/docs/joystick-pantilt.md +++ b/docs/joystick-pantilt.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-shield.md b/docs/joystick-shield.md index 2b28bcdde..8b3d0d655 100644 --- a/docs/joystick-shield.md +++ b/docs/joystick-shield.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick.md b/docs/joystick.md index 62edbf077..7a94060b0 100644 --- a/docs/joystick.md +++ b/docs/joystick.md @@ -79,7 +79,7 @@ Fritzing diagram: [docs/breadboard/joystick-adafruit.fzz](breadboard/joystick-ad ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-3X4_I2C_NANO_BACKPACK.md b/docs/keypad-3X4_I2C_NANO_BACKPACK.md index 372a54492..60404d308 100644 --- a/docs/keypad-3X4_I2C_NANO_BACKPACK.md +++ b/docs/keypad-3X4_I2C_NANO_BACKPACK.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121-sensitivity.md b/docs/keypad-MPR121-sensitivity.md index 7eefbd9af..dbf0dacd4 100644 --- a/docs/keypad-MPR121-sensitivity.md +++ b/docs/keypad-MPR121-sensitivity.md @@ -101,7 +101,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121.md b/docs/keypad-MPR121.md index 39fa32664..ebe7d4314 100644 --- a/docs/keypad-MPR121.md +++ b/docs/keypad-MPR121.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121QR2_SHIELD.md b/docs/keypad-MPR121QR2_SHIELD.md index e24a8956d..6728341e9 100644 --- a/docs/keypad-MPR121QR2_SHIELD.md +++ b/docs/keypad-MPR121QR2_SHIELD.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121_KEYPAD.md b/docs/keypad-MPR121_KEYPAD.md index 1841204f1..f96ccaa74 100644 --- a/docs/keypad-MPR121_KEYPAD.md +++ b/docs/keypad-MPR121_KEYPAD.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121_SHIELD.md b/docs/keypad-MPR121_SHIELD.md index b896866b2..c7548e26a 100644 --- a/docs/keypad-MPR121_SHIELD.md +++ b/docs/keypad-MPR121_SHIELD.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-QTOUCH.md b/docs/keypad-QTOUCH.md index b15749a39..aa54855e4 100644 --- a/docs/keypad-QTOUCH.md +++ b/docs/keypad-QTOUCH.md @@ -83,7 +83,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-analog-ad.md b/docs/keypad-analog-ad.md index c998d9a14..61f7acd31 100644 --- a/docs/keypad-analog-ad.md +++ b/docs/keypad-analog-ad.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-analog-vkey.md b/docs/keypad-analog-vkey.md index 42a4521b5..42ffd61ca 100644 --- a/docs/keypad-analog-vkey.md +++ b/docs/keypad-analog-vkey.md @@ -90,7 +90,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/kinect-arm-controller.md b/docs/kinect-arm-controller.md index b246ef215..18b4bd1b0 100644 --- a/docs/kinect-arm-controller.md +++ b/docs/kinect-arm-controller.md @@ -425,7 +425,7 @@ Illustrates arm joint connections. ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/laser-trip-wire.md b/docs/laser-trip-wire.md index 30b58e180..bf2f81553 100644 --- a/docs/laser-trip-wire.md +++ b/docs/laser-trip-wire.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-16x2-tessel.md b/docs/lcd-16x2-tessel.md index bec777847..b8ba1fc16 100644 --- a/docs/lcd-16x2-tessel.md +++ b/docs/lcd-16x2-tessel.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-enumeratechars.md b/docs/lcd-enumeratechars.md index 04341f906..35696b586 100644 --- a/docs/lcd-enumeratechars.md +++ b/docs/lcd-enumeratechars.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c-PCF8574.md b/docs/lcd-i2c-PCF8574.md index 5ec12bc10..639fe7eb5 100644 --- a/docs/lcd-i2c-PCF8574.md +++ b/docs/lcd-i2c-PCF8574.md @@ -94,7 +94,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c-runner.md b/docs/lcd-i2c-runner.md index c8a6a8c18..1acb119bb 100644 --- a/docs/lcd-i2c-runner.md +++ b/docs/lcd-i2c-runner.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c.md b/docs/lcd-i2c.md index 8921648ff..0548f2b6f 100644 --- a/docs/lcd-i2c.md +++ b/docs/lcd-i2c.md @@ -69,7 +69,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-bgcolor-previewer-tessel.md b/docs/lcd-rgb-bgcolor-previewer-tessel.md index f8c9530bb..f80cff977 100644 --- a/docs/lcd-rgb-bgcolor-previewer-tessel.md +++ b/docs/lcd-rgb-bgcolor-previewer-tessel.md @@ -82,7 +82,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-bgcolor-previewer.md b/docs/lcd-rgb-bgcolor-previewer.md index 9f53d18dd..99234c56f 100644 --- a/docs/lcd-rgb-bgcolor-previewer.md +++ b/docs/lcd-rgb-bgcolor-previewer.md @@ -79,7 +79,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-tessel-grove-JHD1313M1.md b/docs/lcd-rgb-tessel-grove-JHD1313M1.md index 4ceb22cec..c21bc3176 100644 --- a/docs/lcd-rgb-tessel-grove-JHD1313M1.md +++ b/docs/lcd-rgb-tessel-grove-JHD1313M1.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-runner-20x4.md b/docs/lcd-runner-20x4.md index 623837aad..5b01893c2 100644 --- a/docs/lcd-runner-20x4.md +++ b/docs/lcd-runner-20x4.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-runner.md b/docs/lcd-runner.md index 805e9d0e7..202eea1a7 100644 --- a/docs/lcd-runner.md +++ b/docs/lcd-runner.md @@ -89,7 +89,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd.md b/docs/lcd.md index 6c3b2fcdd..a8f722671 100644 --- a/docs/lcd.md +++ b/docs/lcd.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-PCA9685.md b/docs/led-PCA9685.md index 7f9997996..762af4da2 100644 --- a/docs/led-PCA9685.md +++ b/docs/led-PCA9685.md @@ -71,7 +71,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-array-controller.md b/docs/led-array-controller.md index b0144db4e..e026046f3 100644 --- a/docs/led-array-controller.md +++ b/docs/led-array-controller.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-array.md b/docs/led-array.md index 2f9406100..6ddecf494 100644 --- a/docs/led-array.md +++ b/docs/led-array.md @@ -62,7 +62,7 @@ as `pulse()` or `fade()` ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-blink.md b/docs/led-blink.md index 8c66ae499..24c53c250 100644 --- a/docs/led-blink.md +++ b/docs/led-blink.md @@ -81,7 +81,7 @@ Fritzing diagram: [docs/breadboard/led-resistor.fzz](breadboard/led-resistor.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-chars-demo.md b/docs/led-chars-demo.md index 2aaa391d2..77c92b12f 100644 --- a/docs/led-chars-demo.md +++ b/docs/led-chars-demo.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-demo-sequence.md b/docs/led-demo-sequence.md index fab313338..ff8f6e2b5 100644 --- a/docs/led-demo-sequence.md +++ b/docs/led-demo-sequence.md @@ -135,7 +135,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock-HT16K33.md b/docs/led-digits-clock-HT16K33.md index 76afb5b4a..9332d198a 100644 --- a/docs/led-digits-clock-HT16K33.md +++ b/docs/led-digits-clock-HT16K33.md @@ -72,7 +72,7 @@ Learn More: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock-dual.md b/docs/led-digits-clock-dual.md index 13d9a07a8..d50c96799 100644 --- a/docs/led-digits-clock-dual.md +++ b/docs/led-digits-clock-dual.md @@ -85,7 +85,7 @@ Learn More: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock.md b/docs/led-digits-clock.md index 38342c7e3..72a687345 100644 --- a/docs/led-digits-clock.md +++ b/docs/led-digits-clock.md @@ -103,7 +103,7 @@ Fritzing diagram: [docs/breadboard/led-digits-clock-arduino.fzz](breadboard/led- ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-enumeratechars.md b/docs/led-enumeratechars.md index 9244ef9cf..f27ae5ecf 100644 --- a/docs/led-enumeratechars.md +++ b/docs/led-enumeratechars.md @@ -83,7 +83,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade-animation.md b/docs/led-fade-animation.md index 746bdecc6..5ad1f6738 100644 --- a/docs/led-fade-animation.md +++ b/docs/led-fade-animation.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade-callback.md b/docs/led-fade-callback.md index e5b55b80b..d9b47160c 100644 --- a/docs/led-fade-callback.md +++ b/docs/led-fade-callback.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade.md b/docs/led-fade.md index 49224b10f..e0a37bd70 100644 --- a/docs/led-fade.md +++ b/docs/led-fade.md @@ -64,7 +64,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-HT16K33-16x8.md b/docs/led-matrix-HT16K33-16x8.md index cf883491b..5c907db3c 100644 --- a/docs/led-matrix-HT16K33-16x8.md +++ b/docs/led-matrix-HT16K33-16x8.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-HT16K33.md b/docs/led-matrix-HT16K33.md index 5950bde81..0c42616ee 100644 --- a/docs/led-matrix-HT16K33.md +++ b/docs/led-matrix-HT16K33.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-tutorial.md b/docs/led-matrix-tutorial.md index 6c4cdba3d..ef960226d 100644 --- a/docs/led-matrix-tutorial.md +++ b/docs/led-matrix-tutorial.md @@ -154,7 +154,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix.md b/docs/led-matrix.md index af549eec8..84bfdb095 100644 --- a/docs/led-matrix.md +++ b/docs/led-matrix.md @@ -95,7 +95,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-pulse-animation.md b/docs/led-pulse-animation.md index 2dad6ace4..90236a3a0 100644 --- a/docs/led-pulse-animation.md +++ b/docs/led-pulse-animation.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-pulse.md b/docs/led-pulse.md index eeee30c9b..0762922af 100644 --- a/docs/led-pulse.md +++ b/docs/led-pulse.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rainbow.md b/docs/led-rainbow.md index bc1caf5be..e29597828 100644 --- a/docs/led-rainbow.md +++ b/docs/led-rainbow.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-BLINKM.md b/docs/led-rgb-BLINKM.md index 1b20893b2..a7e802581 100644 --- a/docs/led-rgb-BLINKM.md +++ b/docs/led-rgb-BLINKM.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-anode-PCA9685.md b/docs/led-rgb-anode-PCA9685.md index 8771aed25..5e2bc2581 100644 --- a/docs/led-rgb-anode-PCA9685.md +++ b/docs/led-rgb-anode-PCA9685.md @@ -90,7 +90,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-anode.md b/docs/led-rgb-anode.md index ea2a654c3..715fd5031 100644 --- a/docs/led-rgb-anode.md +++ b/docs/led-rgb-anode.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-intensity.md b/docs/led-rgb-intensity.md index 95cac7321..a7b2fe2e4 100644 --- a/docs/led-rgb-intensity.md +++ b/docs/led-rgb-intensity.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb.md b/docs/led-rgb.md index 190728aec..611825759 100644 --- a/docs/led-rgb.md +++ b/docs/led-rgb.md @@ -86,7 +86,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-slider.md b/docs/led-slider.md index 08e5b06ee..bb239ec0a 100644 --- a/docs/led-slider.md +++ b/docs/led-slider.md @@ -61,7 +61,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-tessel-servo-module.md b/docs/led-tessel-servo-module.md index 9c430b588..57776fca8 100644 --- a/docs/led-tessel-servo-module.md +++ b/docs/led-tessel-servo-module.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led.md b/docs/led.md index ac69f2799..a6464cdc0 100644 --- a/docs/led.md +++ b/docs/led.md @@ -109,7 +109,7 @@ then ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-EVS_EV3.md b/docs/light-ambient-EVS_EV3.md index b340dcf9d..5ebd66223 100644 --- a/docs/light-ambient-EVS_EV3.md +++ b/docs/light-ambient-EVS_EV3.md @@ -48,7 +48,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-EVS_NXT.md b/docs/light-ambient-EVS_NXT.md index 2cf71e422..2eb71b67b 100644 --- a/docs/light-ambient-EVS_NXT.md +++ b/docs/light-ambient-EVS_NXT.md @@ -48,7 +48,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-reflected-EVS_EV3.md b/docs/light-reflected-EVS_EV3.md index 0a8df13cf..c4e2f2d42 100644 --- a/docs/light-reflected-EVS_EV3.md +++ b/docs/light-reflected-EVS_EV3.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-reflected-EVS_NXT.md b/docs/light-reflected-EVS_NXT.md index a56a5f919..8814329c5 100644 --- a/docs/light-reflected-EVS_NXT.md +++ b/docs/light-reflected-EVS_NXT.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/line-follower.md b/docs/line-follower.md index c0bf5cab6..0fd92facf 100644 --- a/docs/line-follower.md +++ b/docs/line-follower.md @@ -217,7 +217,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer-log.md b/docs/magnetometer-log.md index 5eeac9eea..8b6a89a9f 100644 --- a/docs/magnetometer-log.md +++ b/docs/magnetometer-log.md @@ -150,7 +150,7 @@ colors = { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer-north.md b/docs/magnetometer-north.md index f6901ada5..685f4c63c 100644 --- a/docs/magnetometer-north.md +++ b/docs/magnetometer-north.md @@ -111,7 +111,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer.md b/docs/magnetometer.md index 5e1df6aa5..bf5825630 100644 --- a/docs/magnetometer.md +++ b/docs/magnetometer.md @@ -103,7 +103,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-accelerometer.md b/docs/micromagician-accelerometer.md index f83f4060e..2c8797d13 100644 --- a/docs/micromagician-accelerometer.md +++ b/docs/micromagician-accelerometer.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-motor.md b/docs/micromagician-motor.md index 92184e100..0589b9848 100644 --- a/docs/micromagician-motor.md +++ b/docs/micromagician-motor.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-servo.md b/docs/micromagician-servo.md index 5e4326689..aa8705ceb 100644 --- a/docs/micromagician-servo.md +++ b/docs/micromagician-servo.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/microphone.md b/docs/microphone.md index 9266bb6f9..35b5bf96d 100644 --- a/docs/microphone.md +++ b/docs/microphone.md @@ -57,7 +57,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-GP2Y0A60SZLF.md b/docs/motion-GP2Y0A60SZLF.md index 26aa06548..833aa0a27 100644 --- a/docs/motion-GP2Y0A60SZLF.md +++ b/docs/motion-GP2Y0A60SZLF.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d805z0f.md b/docs/motion-gp2y0d805z0f.md index 822b099e0..5c1eeefad 100644 --- a/docs/motion-gp2y0d805z0f.md +++ b/docs/motion-gp2y0d805z0f.md @@ -82,7 +82,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d810z0f.md b/docs/motion-gp2y0d810z0f.md index 06b0438ee..7a8a41ae8 100644 --- a/docs/motion-gp2y0d810z0f.md +++ b/docs/motion-gp2y0d810z0f.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d815z0f.md b/docs/motion-gp2y0d815z0f.md index 306272980..3c0ff389b 100644 --- a/docs/motion-gp2y0d815z0f.md +++ b/docs/motion-gp2y0d815z0f.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion.md b/docs/motion.md index 6418aa630..0877d1e01 100644 --- a/docs/motion.md +++ b/docs/motion.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motobot.md b/docs/motobot.md index 322c5b5d8..e2db8ea78 100644 --- a/docs/motobot.md +++ b/docs/motobot.md @@ -116,7 +116,7 @@ Motobot chassis before addings ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-3-pin.md b/docs/motor-3-pin.md index 9549278e0..3bd06a919 100644 --- a/docs/motor-3-pin.md +++ b/docs/motor-3-pin.md @@ -127,7 +127,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-EVS_EV3.md b/docs/motor-EVS_EV3.md index 2ace05637..3ed954203 100644 --- a/docs/motor-EVS_EV3.md +++ b/docs/motor-EVS_EV3.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-EVS_NXT.md b/docs/motor-EVS_NXT.md index b3ad84a7d..9c2039b48 100644 --- a/docs/motor-EVS_NXT.md +++ b/docs/motor-EVS_NXT.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-GROVE_I2C.md b/docs/motor-GROVE_I2C.md index bab65f7ea..0cd45e652 100644 --- a/docs/motor-GROVE_I2C.md +++ b/docs/motor-GROVE_I2C.md @@ -80,7 +80,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-LUDUS.md b/docs/motor-LUDUS.md index eccb0ec2e..7c9798111 100644 --- a/docs/motor-LUDUS.md +++ b/docs/motor-LUDUS.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-PCA9685.md b/docs/motor-PCA9685.md index 1f37645d8..bce6c5f77 100644 --- a/docs/motor-PCA9685.md +++ b/docs/motor-PCA9685.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-TB6612FNG.md b/docs/motor-TB6612FNG.md index 4ef176172..c5d6c61db 100644 --- a/docs/motor-TB6612FNG.md +++ b/docs/motor-TB6612FNG.md @@ -80,7 +80,7 @@ Here's a breakdown of the pins used by these motor drivers, their corresponding ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-brake.md b/docs/motor-brake.md index ddb7f8afa..a45b4149b 100644 --- a/docs/motor-brake.md +++ b/docs/motor-brake.md @@ -112,7 +112,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-current.md b/docs/motor-current.md index dae1f908e..ee8f0a9f0 100644 --- a/docs/motor-current.md +++ b/docs/motor-current.md @@ -125,7 +125,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-directional.md b/docs/motor-directional.md index 9c51bd934..46a8856d1 100644 --- a/docs/motor-directional.md +++ b/docs/motor-directional.md @@ -137,7 +137,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-enable.md b/docs/motor-enable.md index 071930353..e7511a7d5 100644 --- a/docs/motor-enable.md +++ b/docs/motor-enable.md @@ -113,7 +113,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-hbridge-dual.md b/docs/motor-hbridge-dual.md index 698ed34c1..5bda4f2e8 100644 --- a/docs/motor-hbridge-dual.md +++ b/docs/motor-hbridge-dual.md @@ -104,7 +104,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-hbridge.md b/docs/motor-hbridge.md index 07a51b93d..d0e67a50e 100644 --- a/docs/motor-hbridge.md +++ b/docs/motor-hbridge.md @@ -110,7 +110,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-sparkfun-edison-hbridge.md b/docs/motor-sparkfun-edison-hbridge.md index 2a610283e..9afa4ea6c 100644 --- a/docs/motor-sparkfun-edison-hbridge.md +++ b/docs/motor-sparkfun-edison-hbridge.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor.md b/docs/motor.md index 71d43a039..ce801e56b 100644 --- a/docs/motor.md +++ b/docs/motor.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-BME280.md b/docs/multi-BME280.md index d5207df9a..424e1b815 100644 --- a/docs/multi-BME280.md +++ b/docs/multi-BME280.md @@ -93,7 +93,7 @@ Fritzing diagram: [docs/breadboard/multi-BME280-arduino.fzz](breadboard/multi-BM ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT11_I2C_NANO_BACKPACK.md b/docs/multi-DHT11_I2C_NANO_BACKPACK.md index f452f7551..146a0a72a 100644 --- a/docs/multi-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT11_I2C_NANO_BACKPACK.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT21_I2C_NANO_BACKPACK.md b/docs/multi-DHT21_I2C_NANO_BACKPACK.md index b6a7ff075..b11dc2eb6 100644 --- a/docs/multi-DHT21_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT21_I2C_NANO_BACKPACK.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT22_I2C_NANO_BACKPACK.md b/docs/multi-DHT22_I2C_NANO_BACKPACK.md index 005922733..ddd2c1fcf 100644 --- a/docs/multi-DHT22_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT22_I2C_NANO_BACKPACK.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-HIH6130.md b/docs/multi-HIH6130.md index 39c405e29..bfc2531f2 100644 --- a/docs/multi-HIH6130.md +++ b/docs/multi-HIH6130.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-MS5611.md b/docs/multi-MS5611.md index d7f75c886..833cb2be0 100644 --- a/docs/multi-MS5611.md +++ b/docs/multi-MS5611.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-SI7020.md b/docs/multi-SI7020.md index 17ab5a308..01f15b50a 100644 --- a/docs/multi-SI7020.md +++ b/docs/multi-SI7020.md @@ -86,7 +86,7 @@ Fritzing diagram: [docs/breadboard/temperature-SI7020-uno.fzz](breadboard/temper ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-SI7021.md b/docs/multi-SI7021.md index 88c04ab1a..dd6b32b45 100644 --- a/docs/multi-SI7021.md +++ b/docs/multi-SI7021.md @@ -82,7 +82,7 @@ Fritzing diagram: [docs/breadboard/multi-SI7021-uno.fzz](breadboard/multi-SI7021 ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-TH02.md b/docs/multi-TH02.md index dbf7f9e26..47bab0fa9 100644 --- a/docs/multi-TH02.md +++ b/docs/multi-TH02.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-bmp085.md b/docs/multi-bmp085.md index 7191fe7ec..0231ee611 100644 --- a/docs/multi-bmp085.md +++ b/docs/multi-bmp085.md @@ -89,7 +89,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-bmp180.md b/docs/multi-bmp180.md index e57e14922..fc3f4ff3e 100644 --- a/docs/multi-bmp180.md +++ b/docs/multi-bmp180.md @@ -91,7 +91,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-htu21d.md b/docs/multi-htu21d.md index 2d9338565..1bfde5b9a 100644 --- a/docs/multi-htu21d.md +++ b/docs/multi-htu21d.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-mpl115a2.md b/docs/multi-mpl115a2.md index a25acf4c3..0bfb56c26 100644 --- a/docs/multi-mpl115a2.md +++ b/docs/multi-mpl115a2.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-mpl3115a2.md b/docs/multi-mpl3115a2.md index bf0f191d0..df31d0ce2 100644 --- a/docs/multi-mpl3115a2.md +++ b/docs/multi-mpl3115a2.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-sht31d.md b/docs/multi-sht31d.md index ddf6db5d6..09b4e4500 100644 --- a/docs/multi-sht31d.md +++ b/docs/multi-sht31d.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/navigator.md b/docs/navigator.md index 622b8be2b..99e7ffbea 100644 --- a/docs/navigator.md +++ b/docs/navigator.md @@ -570,7 +570,7 @@ Navigator.prototype.pivot = function(which, time) { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/nodebot.md b/docs/nodebot.md index c1feb0fe3..7506abb37 100644 --- a/docs/nodebot.md +++ b/docs/nodebot.md @@ -122,7 +122,7 @@ Nodebots come in many flavors, but this is a typical setup. ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/nunchuk.md b/docs/nunchuk.md index 7ec3d810f..3e177b6f7 100644 --- a/docs/nunchuk.md +++ b/docs/nunchuk.md @@ -135,7 +135,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/pcduino-io.md b/docs/pcduino-io.md index 9b116c5c2..e37e2feeb 100644 --- a/docs/pcduino-io.md +++ b/docs/pcduino-io.md @@ -69,7 +69,7 @@ npm install johnny-five pcduino-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/phoenix.md b/docs/phoenix.md index 55d13730e..99bad3d34 100644 --- a/docs/phoenix.md +++ b/docs/phoenix.md @@ -457,7 +457,7 @@ board = new five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/photoresistor.md b/docs/photoresistor.md index 401179de2..ce556ac54 100644 --- a/docs/photoresistor.md +++ b/docs/photoresistor.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/piezo.md b/docs/piezo.md index 6195d62a2..1a8d4acc0 100644 --- a/docs/piezo.md +++ b/docs/piezo.md @@ -97,7 +97,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/pin.md b/docs/pin.md index 6bb5c514c..37aec8fe4 100644 --- a/docs/pin.md +++ b/docs/pin.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/plugin.md b/docs/plugin.md index 6ea510776..5ed225128 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -78,7 +78,7 @@ module.exports = function(five) { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/potentiometer.md b/docs/potentiometer.md index 912531063..953214efc 100644 --- a/docs/potentiometer.md +++ b/docs/potentiometer.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_IR-alert.md b/docs/proximity-EVS_EV3_IR-alert.md index d937050c8..be77a356e 100644 --- a/docs/proximity-EVS_EV3_IR-alert.md +++ b/docs/proximity-EVS_EV3_IR-alert.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_IR.md b/docs/proximity-EVS_EV3_IR.md index 8466a65db..133306bd9 100644 --- a/docs/proximity-EVS_EV3_IR.md +++ b/docs/proximity-EVS_EV3_IR.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_US-alert.md b/docs/proximity-EVS_EV3_US-alert.md index 14263e207..922438875 100644 --- a/docs/proximity-EVS_EV3_US-alert.md +++ b/docs/proximity-EVS_EV3_US-alert.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_US.md b/docs/proximity-EVS_EV3_US.md index 7e13cbb58..6f7cd56e8 100644 --- a/docs/proximity-EVS_EV3_US.md +++ b/docs/proximity-EVS_EV3_US.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-GP2Y0A710K0F.md b/docs/proximity-GP2Y0A710K0F.md index 668660efb..609490daa 100644 --- a/docs/proximity-GP2Y0A710K0F.md +++ b/docs/proximity-GP2Y0A710K0F.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04-analog.md b/docs/proximity-hcsr04-analog.md index d294186d2..0c8d02c92 100644 --- a/docs/proximity-hcsr04-analog.md +++ b/docs/proximity-hcsr04-analog.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04-i2c.md b/docs/proximity-hcsr04-i2c.md index 1438d929c..c949153ec 100644 --- a/docs/proximity-hcsr04-i2c.md +++ b/docs/proximity-hcsr04-i2c.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04.md b/docs/proximity-hcsr04.md index 128753c86..13476c59f 100644 --- a/docs/proximity-hcsr04.md +++ b/docs/proximity-hcsr04.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-lidarlite.md b/docs/proximity-lidarlite.md index cf84786e0..36a0be0de 100644 --- a/docs/proximity-lidarlite.md +++ b/docs/proximity-lidarlite.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1000.md b/docs/proximity-mb1000.md index fa00739bd..04d7de44f 100644 --- a/docs/proximity-mb1000.md +++ b/docs/proximity-mb1000.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1003.md b/docs/proximity-mb1003.md index 527ca4532..66064d514 100644 --- a/docs/proximity-mb1003.md +++ b/docs/proximity-mb1003.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1010.md b/docs/proximity-mb1010.md index dc1e2aa69..9c73997eb 100644 --- a/docs/proximity-mb1010.md +++ b/docs/proximity-mb1010.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1230.md b/docs/proximity-mb1230.md index 9ffec4ae5..3928ba940 100644 --- a/docs/proximity-mb1230.md +++ b/docs/proximity-mb1230.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-srf10.md b/docs/proximity-srf10.md index adf2a300c..60e0c6535 100644 --- a/docs/proximity-srf10.md +++ b/docs/proximity-srf10.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity.md b/docs/proximity.md index 24503d9ca..adcb3c897 100644 --- a/docs/proximity.md +++ b/docs/proximity.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/radar.md b/docs/radar.md index 300578445..b5b354940 100644 --- a/docs/radar.md +++ b/docs/radar.md @@ -164,7 +164,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/raspi-io.md b/docs/raspi-io.md index c5cd50dc2..255cfe222 100644 --- a/docs/raspi-io.md +++ b/docs/raspi-io.md @@ -71,7 +71,7 @@ npm install johnny-five raspi-io ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay-collection.md b/docs/relay-collection.md index 1a1d8e00e..923ac9e04 100644 --- a/docs/relay-collection.md +++ b/docs/relay-collection.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay.md b/docs/relay.md index efdf7b259..309917d57 100644 --- a/docs/relay.md +++ b/docs/relay.md @@ -81,7 +81,7 @@ Fritzing diagram: [docs/breadboard/relay-closed.fzz](breadboard/relay-closed.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/repl.md b/docs/repl.md index 1e6f38d09..4264096a2 100644 --- a/docs/repl.md +++ b/docs/repl.md @@ -78,7 +78,7 @@ or ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-digital-microwave.md b/docs/sensor-digital-microwave.md index ac14ab688..30a0f8159 100644 --- a/docs/sensor-digital-microwave.md +++ b/docs/sensor-digital-microwave.md @@ -56,7 +56,7 @@ board.on("ready", () => { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-fsr.md b/docs/sensor-fsr.md index 438a1e41b..cb771ac85 100644 --- a/docs/sensor-fsr.md +++ b/docs/sensor-fsr.md @@ -68,7 +68,7 @@ var five = require("johnny-five"), ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-photon-weather-shield-moisture.md b/docs/sensor-photon-weather-shield-moisture.md index b31dc471f..d2ea3a0d2 100644 --- a/docs/sensor-photon-weather-shield-moisture.md +++ b/docs/sensor-photon-weather-shield-moisture.md @@ -77,7 +77,7 @@ For this program, you'll need: ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-slider.md b/docs/sensor-slider.md index 2754efa51..722b6d578 100644 --- a/docs/sensor-slider.md +++ b/docs/sensor-slider.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor.md b/docs/sensor.md index eff4ec464..1c33a3ed9 100644 --- a/docs/sensor.md +++ b/docs/sensor.md @@ -49,7 +49,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-PCA9685.md b/docs/servo-PCA9685.md index 02ae469c3..cb731bd96 100644 --- a/docs/servo-PCA9685.md +++ b/docs/servo-PCA9685.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-animation-leg.md b/docs/servo-animation-leg.md index 9b625e2cb..ac7680cde 100644 --- a/docs/servo-animation-leg.md +++ b/docs/servo-animation-leg.md @@ -140,7 +140,7 @@ var board = new five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-animation.md b/docs/servo-animation.md index f9a2abb53..862c325a7 100644 --- a/docs/servo-animation.md +++ b/docs/servo-animation.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-array.md b/docs/servo-array.md index 6f23bb5a0..5517c46b6 100644 --- a/docs/servo-array.md +++ b/docs/servo-array.md @@ -112,7 +112,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-continuous.md b/docs/servo-continuous.md index 230a882ac..e3c09b98a 100644 --- a/docs/servo-continuous.md +++ b/docs/servo-continuous.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-drive.md b/docs/servo-drive.md index a446232a0..7b42149e7 100644 --- a/docs/servo-drive.md +++ b/docs/servo-drive.md @@ -94,7 +94,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-prompt.md b/docs/servo-prompt.md index e67e814e8..0a1ea82a0 100644 --- a/docs/servo-prompt.md +++ b/docs/servo-prompt.md @@ -69,7 +69,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-slider.md b/docs/servo-slider.md index b968a176c..7e648067f 100644 --- a/docs/servo-slider.md +++ b/docs/servo-slider.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-sweep.md b/docs/servo-sweep.md index 3ef88f7a5..43966a660 100644 --- a/docs/servo-sweep.md +++ b/docs/servo-sweep.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-tessel-servo-module.md b/docs/servo-tessel-servo-module.md index f652ee85c..885c63fbc 100644 --- a/docs/servo-tessel-servo-module.md +++ b/docs/servo-tessel-servo-module.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo.md b/docs/servo.md index ef6c113c0..149fc33da 100644 --- a/docs/servo.md +++ b/docs/servo.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-daisy-chain-anode.md b/docs/shift-register-daisy-chain-anode.md index 933ebe02a..08447a92c 100644 --- a/docs/shift-register-daisy-chain-anode.md +++ b/docs/shift-register-daisy-chain-anode.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-daisy-chain.md b/docs/shift-register-daisy-chain.md index 31723eb31..38a185693 100644 --- a/docs/shift-register-daisy-chain.md +++ b/docs/shift-register-daisy-chain.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-seven-segment-anode.md b/docs/shift-register-seven-segment-anode.md index 1d7590b4a..5d8b5f7ad 100644 --- a/docs/shift-register-seven-segment-anode.md +++ b/docs/shift-register-seven-segment-anode.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-seven-segment.md b/docs/shift-register-seven-segment.md index 1a98c8486..93622f744 100644 --- a/docs/shift-register-seven-segment.md +++ b/docs/shift-register-seven-segment.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register.md b/docs/shift-register.md index f46033009..2f61505ce 100644 --- a/docs/shift-register.md +++ b/docs/shift-register.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/spark-io.md b/docs/spark-io.md index 229992bb5..aacbb3e52 100644 --- a/docs/spark-io.md +++ b/docs/spark-io.md @@ -99,7 +99,7 @@ Ensure your host computer (where you're running your Node application) and the S ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-driver.md b/docs/stepper-driver.md index 4e8311412..08df7ba2d 100644 --- a/docs/stepper-driver.md +++ b/docs/stepper-driver.md @@ -91,7 +91,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-sweep.md b/docs/stepper-sweep.md index 39072512f..fe1ea1db1 100644 --- a/docs/stepper-sweep.md +++ b/docs/stepper-sweep.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch-magnetic-door.md b/docs/switch-magnetic-door.md index 21a65ffad..cf2f642bb 100644 --- a/docs/switch-magnetic-door.md +++ b/docs/switch-magnetic-door.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch-tilt-SW_200D.md b/docs/switch-tilt-SW_200D.md index baf21ea3f..c8589f5f3 100644 --- a/docs/switch-tilt-SW_200D.md +++ b/docs/switch-tilt-SW_200D.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-BMP180.md b/docs/temperature-BMP180.md index 193f17040..49b001c7a 100644 --- a/docs/temperature-BMP180.md +++ b/docs/temperature-BMP180.md @@ -83,7 +83,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT11_I2C_NANO_BACKPACK.md b/docs/temperature-DHT11_I2C_NANO_BACKPACK.md index d88538c51..b92e152f1 100644 --- a/docs/temperature-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT11_I2C_NANO_BACKPACK.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT21_I2C_NANO_BACKPACK.md b/docs/temperature-DHT21_I2C_NANO_BACKPACK.md index 09a565cbe..f2e3ae001 100644 --- a/docs/temperature-DHT21_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT21_I2C_NANO_BACKPACK.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT22_I2C_NANO_BACKPACK.md b/docs/temperature-DHT22_I2C_NANO_BACKPACK.md index 854c144f3..864abeba2 100644 --- a/docs/temperature-DHT22_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT22_I2C_NANO_BACKPACK.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-HIH6130.md b/docs/temperature-HIH6130.md index c5ca5edbb..5bc40fcb1 100644 --- a/docs/temperature-HIH6130.md +++ b/docs/temperature-HIH6130.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-MCP9808.md b/docs/temperature-MCP9808.md index 122753be6..cde618ad4 100644 --- a/docs/temperature-MCP9808.md +++ b/docs/temperature-MCP9808.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/temperature-MCP9808-tessel.fzz](breadboard/te ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-MS5611.md b/docs/temperature-MS5611.md index 991ef0937..73b038f14 100644 --- a/docs/temperature-MS5611.md +++ b/docs/temperature-MS5611.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-SI7020.md b/docs/temperature-SI7020.md index 95b87319d..224dcc326 100644 --- a/docs/temperature-SI7020.md +++ b/docs/temperature-SI7020.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/temperature-SI7020-uno.fzz](breadboard/temper ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-SI7021.md b/docs/temperature-SI7021.md index f11ef465e..fad110f8c 100644 --- a/docs/temperature-SI7021.md +++ b/docs/temperature-SI7021.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/multi-SI7021-uno.fzz](breadboard/multi-SI7021 ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-TH02.md b/docs/temperature-TH02.md index dd31e6eb7..138f425e1 100644 --- a/docs/temperature-TH02.md +++ b/docs/temperature-TH02.md @@ -56,7 +56,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-bmp085.md b/docs/temperature-bmp085.md index 7510ca038..7c496ecc0 100644 --- a/docs/temperature-bmp085.md +++ b/docs/temperature-bmp085.md @@ -80,7 +80,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-ds18b20.md b/docs/temperature-ds18b20.md index 2b2c7e8f9..711a7b0fd 100644 --- a/docs/temperature-ds18b20.md +++ b/docs/temperature-ds18b20.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-htu21d.md b/docs/temperature-htu21d.md index f321be42f..cc66463f1 100644 --- a/docs/temperature-htu21d.md +++ b/docs/temperature-htu21d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-lm335.md b/docs/temperature-lm335.md index 81fadac0d..160c404b9 100644 --- a/docs/temperature-lm335.md +++ b/docs/temperature-lm335.md @@ -63,7 +63,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-lm35.md b/docs/temperature-lm35.md index 73963de51..838d11e31 100644 --- a/docs/temperature-lm35.md +++ b/docs/temperature-lm35.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-max31850k.md b/docs/temperature-max31850k.md index 66884fa32..262eca4e6 100644 --- a/docs/temperature-max31850k.md +++ b/docs/temperature-max31850k.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpl115a2.md b/docs/temperature-mpl115a2.md index 34be216bf..33921f24b 100644 --- a/docs/temperature-mpl115a2.md +++ b/docs/temperature-mpl115a2.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpl3115a2.md b/docs/temperature-mpl3115a2.md index d37764f40..43bb6c447 100644 --- a/docs/temperature-mpl3115a2.md +++ b/docs/temperature-mpl3115a2.md @@ -74,7 +74,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpu6050.md b/docs/temperature-mpu6050.md index 2a7eb5d81..574ec864a 100644 --- a/docs/temperature-mpu6050.md +++ b/docs/temperature-mpu6050.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-sht31d.md b/docs/temperature-sht31d.md index ed2325e1e..b69d478b9 100644 --- a/docs/temperature-sht31d.md +++ b/docs/temperature-sht31d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-tmp102.md b/docs/temperature-tmp102.md index 8867c02ea..69dc57824 100644 --- a/docs/temperature-tmp102.md +++ b/docs/temperature-tmp102.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-tmp36.md b/docs/temperature-tmp36.md index e55fa4c4b..c633c0248 100644 --- a/docs/temperature-tmp36.md +++ b/docs/temperature-tmp36.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-accelerometer.md b/docs/tinkerkit-accelerometer.md index 9be34d3b7..d15a881ce 100644 --- a/docs/tinkerkit-accelerometer.md +++ b/docs/tinkerkit-accelerometer.md @@ -78,7 +78,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-blink.md b/docs/tinkerkit-blink.md index 25226171d..1e4ab9dd7 100644 --- a/docs/tinkerkit-blink.md +++ b/docs/tinkerkit-blink.md @@ -56,7 +56,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-button.md b/docs/tinkerkit-button.md index 43c888214..3dadde4bb 100644 --- a/docs/tinkerkit-button.md +++ b/docs/tinkerkit-button.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-combo.md b/docs/tinkerkit-combo.md index 1723ada5a..afeb04012 100644 --- a/docs/tinkerkit-combo.md +++ b/docs/tinkerkit-combo.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-continuous-servo.md b/docs/tinkerkit-continuous-servo.md index 18d0f38c1..aeadc4c06 100644 --- a/docs/tinkerkit-continuous-servo.md +++ b/docs/tinkerkit-continuous-servo.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-gyroscope.md b/docs/tinkerkit-gyroscope.md index da403fe75..cd4a356c6 100644 --- a/docs/tinkerkit-gyroscope.md +++ b/docs/tinkerkit-gyroscope.md @@ -51,7 +51,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-joystick.md b/docs/tinkerkit-joystick.md index 77880a325..a1cd25748 100644 --- a/docs/tinkerkit-joystick.md +++ b/docs/tinkerkit-joystick.md @@ -57,7 +57,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-linear-pot.md b/docs/tinkerkit-linear-pot.md index 1e7b41575..1b15074b2 100644 --- a/docs/tinkerkit-linear-pot.md +++ b/docs/tinkerkit-linear-pot.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-rotary.md b/docs/tinkerkit-rotary.md index 64703c798..ef6b9b276 100644 --- a/docs/tinkerkit-rotary.md +++ b/docs/tinkerkit-rotary.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-thermistor.md b/docs/tinkerkit-thermistor.md index ddbe966ed..9e9aef2a6 100644 --- a/docs/tinkerkit-thermistor.md +++ b/docs/tinkerkit-thermistor.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-tilt.md b/docs/tinkerkit-tilt.md index 61107ea63..dcd902c7a 100644 --- a/docs/tinkerkit-tilt.md +++ b/docs/tinkerkit-tilt.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-touch.md b/docs/tinkerkit-touch.md index 47ba1f951..d8b0f03ad 100644 --- a/docs/tinkerkit-touch.md +++ b/docs/tinkerkit-touch.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/toggle-switch.md b/docs/toggle-switch.md index fe8d419d2..4c5d9620f 100644 --- a/docs/toggle-switch.md +++ b/docs/toggle-switch.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/whisker.md b/docs/whisker.md index 8e58d77ba..d3df7b79b 100644 --- a/docs/whisker.md +++ b/docs/whisker.md @@ -149,7 +149,7 @@ new five.Boards(["control", "nodebot"]).on("ready", function(boards) { ## License Copyright (c) 2012, 2013, 2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2017 The Johnny-Five Contributors +Copyright (c) 2018 The Johnny-Five Contributors Licensed under the MIT license. From 153aaf68c79b29f57d9c6bc91a468ef3d8206bd9 Mon Sep 17 00:00:00 2001 From: Brad Buchanan Date: Thu, 11 Jan 2018 14:54:34 -0800 Subject: [PATCH 19/33] 0.11.1-cdo.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 04d2971f1..47201c133 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.11.1-cdo.1", + "version": "0.11.1-cdo.2", "homepage": "https://johnny-five.io", "author": { "name": "Rick Waldron ", From 03cbeabd9ef8083387573d1d18066c08b09f1bce Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 28 Sep 2022 14:44:45 -0500 Subject: [PATCH 20/33] used code.org customizations in readme and package.json --- package.json | 10 +++++----- tpl/.readme.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 1fe860bcd..e80313277 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "johnny-five", - "description": "The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "2.1.0", + "name": "@code-dot-org/johnny-five", + "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", + "version": "0.11.1-cdo.2", "homepage": "https://johnny-five.io", "author": "Rick Waldron ", "keywords": [ @@ -142,10 +142,10 @@ ], "repository": { "type": "git", - "url": "git://github.com/rwaldron/johnny-five.git" + "url": "git://github.com/code-dot-org/johnny-five.git" }, "bugs": { - "url": "https://github.com/rwaldron/johnny-five/issues" + "url": "https://github.com/code-dot-org/johnny-five/issues" }, "license": "MIT", "main": "lib/johnny-five", diff --git a/tpl/.readme.md b/tpl/.readme.md index 25a1ade29..3617ee2da 100644 --- a/tpl/.readme.md +++ b/tpl/.readme.md @@ -7,13 +7,13 @@ _Artwork by [Mike Sgier](http://msgierillustration.com)_ -[![Travis Build Status](https://travis-ci.com/rwaldron/johnny-five.svg?branch=main)](https://travis-ci.com/rwaldron/johnny-five) -[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/hmke71k7uemtnami/branch/main?svg=true)](https://ci.appveyor.com/project/rwaldron/johnny-five) -[![Coverage Status](https://coveralls.io/repos/github/rwaldron/johnny-five/badge.svg?branch=main)](https://coveralls.io/github/rwaldron/johnny-five?branch=main) -[![Install Size](https://packagephobia.now.sh/badge?p=johnny-five)](https://packagephobia.now.sh/result?p=johnny-five) -[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/rwaldron/johnny-five) + +[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/hmke71k7uemtnami/branch/master?svg=true)](https://ci.appveyor.com/project/rwaldron/johnny-five) [![Travis Build Status](https://travis-ci.org/code-dot-org/johnny-five.svg?branch=master)](https://travis-ci.org/code-dot-org/johnny-five) +[![Coverage Status](https://coveralls.io/repos/github/rwaldron/johnny-five/badge.svg?branch=master)](https://coveralls.io/github/rwaldron/johnny-five?branch=master) +_This is the [Code.org](https://code.org) fork of johnny-five. Please [check out the main project here!](https://github.com/rwaldron/johnny-five)_ + **Johnny-Five is an Open Source, Firmata Protocol based, IoT and Robotics programming framework, developed by the [Nodebots](https://twitter.com/nodebots) Community. Johnny-Five programs can be written for Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!** From dd51326ac5f8b4c7a30ba87c67356d7df627b4c9 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 28 Sep 2022 15:09:29 -0500 Subject: [PATCH 21/33] edits to .readme.md --- tpl/.readme.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tpl/.readme.md b/tpl/.readme.md index 3617ee2da..a421f6dd1 100644 --- a/tpl/.readme.md +++ b/tpl/.readme.md @@ -8,9 +8,8 @@ _Artwork by [Mike Sgier](http://msgierillustration.com)_ -[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/hmke71k7uemtnami/branch/master?svg=true)](https://ci.appveyor.com/project/rwaldron/johnny-five) [![Travis Build Status](https://travis-ci.org/code-dot-org/johnny-five.svg?branch=master)](https://travis-ci.org/code-dot-org/johnny-five) -[![Coverage Status](https://coveralls.io/repos/github/rwaldron/johnny-five/badge.svg?branch=master)](https://coveralls.io/github/rwaldron/johnny-five?branch=master) - +[![Travis Build Status](https://travis-ci.org/code-dot-org/johnny-five.svg?branch=main)](https://travis-ci.org/code-dot-org/johnny-five) + _This is the [Code.org](https://code.org) fork of johnny-five. Please [check out the main project here!](https://github.com/rwaldron/johnny-five)_ From 1d5a02cf04b45950815b27707cfde453956b734f Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 28 Sep 2022 17:14:09 -0500 Subject: [PATCH 22/33] ran grunt examples to update README and other files --- README.md | 11 +++++------ docs/accelerometer-LIS3DH.md | 2 +- docs/accelerometer-MMA8452.md | 2 +- docs/accelerometer-adxl335.md | 2 +- docs/accelerometer-adxl345.md | 2 +- docs/accelerometer-mma7361.md | 2 +- docs/accelerometer-mpu6050.md | 2 +- docs/accelerometer-pan-tilt.md | 2 +- docs/accelerometer.md | 2 +- docs/altimeter-BMP085.md | 2 +- docs/altimeter-BMP180.md | 2 +- docs/altimeter-MS5611.md | 2 +- docs/altimeter-mpl3115a2.md | 2 +- docs/barometer-BMP085.md | 2 +- docs/barometer-BMP180.md | 2 +- docs/barometer-MS5611.md | 2 +- docs/barometer-mpl115a2.md | 2 +- docs/barometer-mpl3115a2.md | 2 +- docs/board-cleanup.md | 2 +- docs/board-multi.md | 2 +- docs/board-sampling-interval.md | 2 +- docs/board-with-port.md | 2 +- docs/board.md | 2 +- docs/brat.md | 2 +- docs/bug.md | 2 +- docs/button-EVS_EV3.md | 2 +- docs/button-EVS_NXT.md | 2 +- docs/button-bumper.md | 2 +- docs/button-collection-AT42QT1070.md | 2 +- docs/button-options.md | 2 +- docs/button-pullup.md | 2 +- docs/button.md | 2 +- docs/classic-controller.md | 2 +- docs/claw.md | 2 +- docs/color-EVS_EV3.md | 2 +- docs/color-EVS_NXT.md | 2 +- docs/color-ISL29125.md | 2 +- docs/color-raw-EVS_EV3.md | 2 +- docs/compass-MAG3110-tessel.md | 2 +- docs/compass-MAG3110.md | 2 +- docs/compass-hmc5883l.md | 2 +- docs/compass-hmc6352.md | 2 +- docs/custom-properties.md | 2 +- docs/edison-io-arduino.md | 2 +- docs/edison-io-miniboard.md | 2 +- docs/esc-PCA9685.md | 2 +- docs/esc-bidirectional.md | 2 +- docs/esc-keypress.md | 2 +- docs/expander-74HC595.md | 2 +- docs/expander-CD74HC4067_NANO_BACKPACK.md | 2 +- docs/expander-LIS3DH.md | 2 +- docs/expander-MCP23008.md | 2 +- docs/expander-MCP23017.md | 2 +- docs/expander-MUXSHIELD2-analog-read.md | 2 +- docs/expander-MUXSHIELD2-mixed.md | 2 +- docs/expander-PCA9685.md | 2 +- docs/expander-PCF8574.md | 2 +- docs/expander-PCF8575.md | 2 +- docs/expander-PCF8591.md | 2 +- docs/flex.md | 2 +- docs/galileo-io.md | 2 +- docs/gps-GP-20U7.md | 2 +- docs/gps-adafruit.md | 2 +- docs/gps-hardware-serial.md | 2 +- docs/gps.md | 2 +- docs/grove-accelerometer-adxl345-edison.md | 2 +- docs/grove-accelerometer-mma7660-edison.md | 2 +- docs/grove-barometer-edison.md | 2 +- docs/grove-button-edison.md | 2 +- docs/grove-button.md | 2 +- docs/grove-compass-edison.md | 2 +- docs/grove-flame-sensor-edison.md | 2 +- docs/grove-gas-mq2-edison.md | 2 +- docs/grove-gas-tp401-edison.md | 2 +- docs/grove-humidity-temperature-edison.md | 2 +- docs/grove-i2c-motor-driver-edison.md | 2 +- docs/grove-i2c-motor-driver.md | 2 +- docs/grove-joystick-edison.md | 2 +- docs/grove-joystick.md | 2 +- docs/grove-lcd-rgb-bgcolor-previewer-edison.md | 2 +- docs/grove-lcd-rgb-edison.md | 2 +- docs/grove-lcd-rgb-temperature-display-edison.md | 2 +- docs/grove-lcd-rgb-temperature-display.md | 2 +- docs/grove-lcd-rgb.md | 2 +- docs/grove-led-edison.md | 2 +- docs/grove-led.md | 2 +- docs/grove-light-sensor-edison.md | 2 +- docs/grove-moisture-edison.md | 2 +- docs/grove-q-touch.md | 2 +- docs/grove-relay-edison.md | 2 +- docs/grove-rotary-potentiometer-edison.md | 2 +- docs/grove-rotary-potentiometer.md | 2 +- docs/grove-servo-edison.md | 2 +- docs/grove-servo.md | 2 +- docs/grove-touch-edison.md | 2 +- docs/grove-touch.md | 2 +- docs/gyro-lpr5150l.md | 2 +- docs/gyro-mpu6050.md | 2 +- docs/gyro.md | 2 +- docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md | 2 +- docs/hygrometer-HIH6130.md | 2 +- docs/hygrometer-SI7021.md | 2 +- docs/hygrometer-TH02.md | 2 +- docs/hygrometer-htu21d.md | 2 +- docs/hygrometer-sht31d.md | 2 +- docs/imp-io.md | 2 +- docs/imu-bno055-orientation.md | 2 +- docs/imu-bno055.md | 2 +- docs/imu-lsm303c.md | 2 +- docs/imu-mpu6050.md | 2 +- docs/ir-motion.md | 2 +- docs/ir-proximity.md | 2 +- docs/ir-reflect-array.md | 2 +- docs/ir-reflect.md | 2 +- docs/joystick-esplora.md | 2 +- docs/joystick-pantilt.md | 2 +- docs/joystick-shield.md | 2 +- docs/joystick.md | 2 +- docs/keypad-3X4_I2C_NANO_BACKPACK.md | 2 +- docs/keypad-4X4_I2C_NANO_BACKPACK.md | 2 +- docs/keypad-MPR121-sensitivity.md | 2 +- docs/keypad-MPR121.md | 2 +- docs/keypad-MPR121QR2_SHIELD.md | 2 +- docs/keypad-MPR121_KEYPAD.md | 2 +- docs/keypad-MPR121_SHIELD.md | 2 +- docs/keypad-QTOUCH.md | 2 +- docs/keypad-analog-ad.md | 2 +- docs/keypad-analog-vkey.md | 2 +- docs/kinect-arm-controller.md | 2 +- docs/laser-trip-wire.md | 2 +- docs/lcd-16x2-tessel.md | 2 +- docs/lcd-enumeratechars.md | 2 +- docs/lcd-i2c-PCF8574.md | 2 +- docs/lcd-i2c-runner.md | 2 +- docs/lcd-i2c.md | 2 +- docs/lcd-rgb-bgcolor-previewer-tessel.md | 2 +- docs/lcd-rgb-bgcolor-previewer.md | 2 +- docs/lcd-rgb-tessel-grove-JHD1313M1.md | 2 +- docs/lcd-runner-20x4.md | 2 +- docs/lcd-runner.md | 2 +- docs/lcd.md | 2 +- docs/led-PCA9685.md | 2 +- docs/led-array-controller.md | 2 +- docs/led-array.md | 2 +- docs/led-blink.md | 2 +- docs/led-chars-demo.md | 2 +- docs/led-demo-sequence.md | 2 +- docs/led-digits-clock-HT16K33.md | 2 +- docs/led-digits-clock-dual.md | 2 +- docs/led-digits-clock.md | 2 +- docs/led-enumeratechars.md | 2 +- docs/led-fade-animation.md | 2 +- docs/led-fade-callback.md | 2 +- docs/led-fade.md | 2 +- docs/led-matrix-HT16K33-16x8.md | 2 +- docs/led-matrix-HT16K33.md | 2 +- docs/led-matrix-tutorial.md | 2 +- docs/led-matrix.md | 2 +- docs/led-pulse-animation.md | 2 +- docs/led-pulse.md | 2 +- docs/led-rainbow.md | 2 +- docs/led-rgb-BLINKM.md | 2 +- docs/led-rgb-anode-PCA9685.md | 2 +- docs/led-rgb-anode.md | 2 +- docs/led-rgb-intensity.md | 2 +- docs/led-slider.md | 2 +- docs/led-tessel-servo-module.md | 2 +- docs/led.md | 2 +- docs/light-ambient-BH1750.md | 2 +- docs/light-ambient-EVS_EV3.md | 2 +- docs/light-ambient-EVS_NXT.md | 2 +- docs/light-ambient-TSL2561.md | 2 +- docs/light-reflected-EVS_EV3.md | 2 +- docs/light-reflected-EVS_NXT.md | 2 +- docs/line-follower.md | 2 +- docs/magnetometer-log.md | 2 +- docs/magnetometer-north.md | 2 +- docs/magnetometer.md | 2 +- docs/micromagician-accelerometer.md | 2 +- docs/micromagician-motor.md | 2 +- docs/micromagician-servo.md | 2 +- docs/microphone.md | 2 +- docs/motion-GP2Y0A60SZLF.md | 2 +- docs/motion-gp2y0d805z0f.md | 2 +- docs/motion-gp2y0d810z0f.md | 2 +- docs/motion-gp2y0d815z0f.md | 2 +- docs/motion.md | 2 +- docs/motobot.md | 2 +- docs/motor-3-pin.md | 2 +- docs/motor-EVS_EV3.md | 2 +- docs/motor-EVS_NXT.md | 2 +- docs/motor-GROVE_I2C.md | 2 +- docs/motor-LUDUS.md | 2 +- docs/motor-PCA9685.md | 2 +- docs/motor-TB6612FNG.md | 2 +- docs/motor-brake.md | 2 +- docs/motor-current.md | 2 +- docs/motor-directional.md | 2 +- docs/motor-drv8871.md | 2 +- docs/motor-enable.md | 2 +- docs/motor-hbridge-dual.md | 2 +- docs/motor-hbridge.md | 2 +- docs/motor-l298-breakout.md | 2 +- docs/motor-sparkfun-edison-hbridge.md | 2 +- docs/motor-vnh5019.md | 2 +- docs/motor.md | 2 +- docs/multi-BME280.md | 2 +- docs/multi-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/multi-DHT21_I2C_NANO_BACKPACK.md | 2 +- docs/multi-DHT22_I2C_NANO_BACKPACK.md | 2 +- docs/multi-HIH6130.md | 2 +- docs/multi-MS5611.md | 2 +- docs/multi-SI7020.md | 2 +- docs/multi-SI7021.md | 2 +- docs/multi-TH02.md | 2 +- docs/multi-bmp085.md | 2 +- docs/multi-bmp180.md | 2 +- docs/multi-htu21d.md | 2 +- docs/multi-mpl115a2.md | 2 +- docs/multi-mpl3115a2.md | 2 +- docs/multi-sht31d.md | 2 +- docs/navigator.md | 2 +- docs/nodebot.md | 2 +- docs/nunchuk.md | 2 +- docs/pcduino-io.md | 2 +- docs/phoenix.md | 2 +- docs/photoresistor.md | 2 +- docs/piezo.md | 2 +- docs/pin.md | 2 +- docs/plugin.md | 2 +- docs/potentiometer.md | 2 +- docs/proximity-EVS_EV3_IR-alert.md | 2 +- docs/proximity-EVS_EV3_IR.md | 2 +- docs/proximity-EVS_EV3_US-alert.md | 2 +- docs/proximity-EVS_EV3_US.md | 2 +- docs/proximity-GP2Y0A710K0F.md | 2 +- docs/proximity-hcsr04-analog.md | 2 +- docs/proximity-hcsr04-i2c.md | 2 +- docs/proximity-hcsr04.md | 2 +- docs/proximity-lidarlite.md | 2 +- docs/proximity-mb1000.md | 2 +- docs/proximity-mb1003.md | 2 +- docs/proximity-mb1010.md | 2 +- docs/proximity-mb1230.md | 2 +- docs/proximity-srf10.md | 2 +- docs/proximity.md | 2 +- docs/radar.md | 2 +- docs/raspi-io.md | 2 +- docs/relay-collection.md | 2 +- docs/relay-on-analog-pin.md | 2 +- docs/relay.md | 2 +- docs/repl.md | 2 +- docs/sensor-digital-microwave.md | 2 +- docs/sensor-fsr.md | 2 +- docs/sensor-photon-weather-shield-moisture.md | 2 +- docs/sensor-slider.md | 2 +- docs/sensor.md | 2 +- docs/servo-PCA9685.md | 2 +- docs/servo-animation-leg.md | 2 +- docs/servo-animation.md | 2 +- docs/servo-array.md | 2 +- docs/servo-continuous.md | 2 +- docs/servo-drive.md | 2 +- docs/servo-multi-turn.md | 2 +- docs/servo-prompt.md | 2 +- docs/servo-slider.md | 2 +- docs/servo-tessel-servo-module.md | 2 +- docs/servo.md | 2 +- docs/shift-register-daisy-chain-anode.md | 2 +- docs/shift-register-daisy-chain.md | 2 +- docs/shift-register-seven-segment-anode.md | 2 +- docs/shift-register-seven-segment.md | 2 +- docs/shift-register.md | 2 +- docs/spark-io.md | 2 +- docs/stepper-driver.md | 2 +- docs/stepper-four_wire.md | 2 +- docs/stepper-sweep.md | 2 +- docs/switch-magnetic-door.md | 2 +- docs/switch-tilt-SW_200D.md | 2 +- docs/switch.md | 2 +- docs/temperature-BMP180.md | 2 +- docs/temperature-DHT11_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-DHT21_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-DHT22_I2C_NANO_BACKPACK.md | 2 +- docs/temperature-HIH6130.md | 2 +- docs/temperature-MCP9808.md | 2 +- docs/temperature-MS5611.md | 2 +- docs/temperature-SI7020.md | 2 +- docs/temperature-SI7021.md | 2 +- docs/temperature-TH02.md | 2 +- docs/temperature-bmp085.md | 2 +- docs/temperature-ds18b20.md | 2 +- docs/temperature-dual-ds18b20.md | 2 +- docs/temperature-htu21d.md | 2 +- docs/temperature-lm335.md | 2 +- docs/temperature-lm35.md | 2 +- docs/temperature-max31850k.md | 2 +- docs/temperature-mpl115a2.md | 2 +- docs/temperature-mpl3115a2.md | 2 +- docs/temperature-mpu6050.md | 2 +- docs/temperature-sht31d.md | 2 +- docs/temperature-tmp102.md | 2 +- docs/temperature-tmp36.md | 2 +- docs/tinkerkit-accelerometer.md | 2 +- docs/tinkerkit-blink.md | 2 +- docs/tinkerkit-button.md | 2 +- docs/tinkerkit-combo.md | 2 +- docs/tinkerkit-continuous-servo.md | 2 +- docs/tinkerkit-gyroscope.md | 2 +- docs/tinkerkit-joystick.md | 2 +- docs/tinkerkit-linear-pot.md | 2 +- docs/tinkerkit-rotary.md | 2 +- docs/tinkerkit-thermistor.md | 2 +- docs/tinkerkit-tilt.md | 2 +- docs/tinkerkit-touch.md | 2 +- docs/toggle-switch.md | 2 +- docs/whisker.md | 2 +- 319 files changed, 323 insertions(+), 324 deletions(-) diff --git a/README.md b/README.md index 242b2b769..70f8236d3 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,12 @@ _Artwork by [Mike Sgier](http://msgierillustration.com)_ -[![Travis Build Status](https://travis-ci.com/rwaldron/johnny-five.svg?branch=main)](https://travis-ci.com/rwaldron/johnny-five) -[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/hmke71k7uemtnami/branch/main?svg=true)](https://ci.appveyor.com/project/rwaldron/johnny-five) -[![Coverage Status](https://coveralls.io/repos/github/rwaldron/johnny-five/badge.svg?branch=main)](https://coveralls.io/github/rwaldron/johnny-five?branch=main) -[![Install Size](https://packagephobia.now.sh/badge?p=johnny-five)](https://packagephobia.now.sh/result?p=johnny-five) -[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/rwaldron/johnny-five) - + +[![Travis Build Status](https://travis-ci.org/code-dot-org/johnny-five.svg?branch=main)](https://travis-ci.org/code-dot-org/johnny-five) + +_This is the [Code.org](https://code.org) fork of johnny-five. Please [check out the main project here!](https://github.com/rwaldron/johnny-five)_ + **Johnny-Five is an Open Source, Firmata Protocol based, IoT and Robotics programming framework, developed by the [Nodebots](https://twitter.com/nodebots) Community. Johnny-Five programs can be written for Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!** diff --git a/docs/accelerometer-LIS3DH.md b/docs/accelerometer-LIS3DH.md index 2b1f2e996..c936de2d2 100644 --- a/docs/accelerometer-LIS3DH.md +++ b/docs/accelerometer-LIS3DH.md @@ -78,7 +78,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-MMA8452.md b/docs/accelerometer-MMA8452.md index 4c7e5adcd..8043c0b62 100644 --- a/docs/accelerometer-MMA8452.md +++ b/docs/accelerometer-MMA8452.md @@ -72,7 +72,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-adxl335.md b/docs/accelerometer-adxl335.md index 9101fb852..add50a722 100644 --- a/docs/accelerometer-adxl335.md +++ b/docs/accelerometer-adxl335.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-adxl345.md b/docs/accelerometer-adxl345.md index 454d0eebb..2ea4e225d 100644 --- a/docs/accelerometer-adxl345.md +++ b/docs/accelerometer-adxl345.md @@ -72,7 +72,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-mma7361.md b/docs/accelerometer-mma7361.md index b92ec20c0..3b8ef46de 100644 --- a/docs/accelerometer-mma7361.md +++ b/docs/accelerometer-mma7361.md @@ -83,7 +83,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-mpu6050.md b/docs/accelerometer-mpu6050.md index 22017647c..c918bc3f0 100644 --- a/docs/accelerometer-mpu6050.md +++ b/docs/accelerometer-mpu6050.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer-pan-tilt.md b/docs/accelerometer-pan-tilt.md index 054839ef4..87cc18989 100644 --- a/docs/accelerometer-pan-tilt.md +++ b/docs/accelerometer-pan-tilt.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/accelerometer.md b/docs/accelerometer.md index d693399ff..3e44f0e74 100644 --- a/docs/accelerometer.md +++ b/docs/accelerometer.md @@ -81,7 +81,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-BMP085.md b/docs/altimeter-BMP085.md index 3ec3ddcca..d4911dec8 100644 --- a/docs/altimeter-BMP085.md +++ b/docs/altimeter-BMP085.md @@ -116,7 +116,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-BMP180.md b/docs/altimeter-BMP180.md index 63ab53d44..73bec10b9 100644 --- a/docs/altimeter-BMP180.md +++ b/docs/altimeter-BMP180.md @@ -120,7 +120,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-MS5611.md b/docs/altimeter-MS5611.md index 928b3283d..362884c89 100644 --- a/docs/altimeter-MS5611.md +++ b/docs/altimeter-MS5611.md @@ -100,7 +100,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/altimeter-mpl3115a2.md b/docs/altimeter-mpl3115a2.md index 16ab7c3d4..122bc9d13 100644 --- a/docs/altimeter-mpl3115a2.md +++ b/docs/altimeter-mpl3115a2.md @@ -79,7 +79,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-BMP085.md b/docs/barometer-BMP085.md index 9a612e474..9bb5f9b49 100644 --- a/docs/barometer-BMP085.md +++ b/docs/barometer-BMP085.md @@ -78,7 +78,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-BMP180.md b/docs/barometer-BMP180.md index 5f292efbe..8cda4c23b 100644 --- a/docs/barometer-BMP180.md +++ b/docs/barometer-BMP180.md @@ -80,7 +80,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-MS5611.md b/docs/barometer-MS5611.md index 7a90d5fa7..c3cd9cc27 100644 --- a/docs/barometer-MS5611.md +++ b/docs/barometer-MS5611.md @@ -60,7 +60,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-mpl115a2.md b/docs/barometer-mpl115a2.md index a86e9c46a..4282b000d 100644 --- a/docs/barometer-mpl115a2.md +++ b/docs/barometer-mpl115a2.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/barometer-mpl3115a2.md b/docs/barometer-mpl3115a2.md index 788c6976e..d7ad53841 100644 --- a/docs/barometer-mpl3115a2.md +++ b/docs/barometer-mpl3115a2.md @@ -72,7 +72,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-cleanup.md b/docs/board-cleanup.md index 287e23a41..655cab6b9 100644 --- a/docs/board-cleanup.md +++ b/docs/board-cleanup.md @@ -58,7 +58,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-multi.md b/docs/board-multi.md index 3eec24f86..e8948dc39 100644 --- a/docs/board-multi.md +++ b/docs/board-multi.md @@ -103,7 +103,7 @@ boards.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-sampling-interval.md b/docs/board-sampling-interval.md index 79f751ddc..0d0430b5a 100644 --- a/docs/board-sampling-interval.md +++ b/docs/board-sampling-interval.md @@ -63,7 +63,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board-with-port.md b/docs/board-with-port.md index ee3f9ba9c..e1ef75878 100644 --- a/docs/board-with-port.md +++ b/docs/board-with-port.md @@ -67,7 +67,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/board.md b/docs/board.md index ff1bcbde5..76ca32264 100644 --- a/docs/board.md +++ b/docs/board.md @@ -59,7 +59,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/brat.md b/docs/brat.md index 4afaae9ea..5b48951d0 100644 --- a/docs/brat.md +++ b/docs/brat.md @@ -647,7 +647,7 @@ Example control of biped robot ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/bug.md b/docs/bug.md index ecdc469b0..1438e4e7c 100644 --- a/docs/bug.md +++ b/docs/bug.md @@ -233,7 +233,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-EVS_EV3.md b/docs/button-EVS_EV3.md index e6942a674..8a49cbd8a 100644 --- a/docs/button-EVS_EV3.md +++ b/docs/button-EVS_EV3.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-EVS_NXT.md b/docs/button-EVS_NXT.md index 4f01ca4b5..3010be4cc 100644 --- a/docs/button-EVS_NXT.md +++ b/docs/button-EVS_NXT.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-bumper.md b/docs/button-bumper.md index bc85f02a9..10198066b 100644 --- a/docs/button-bumper.md +++ b/docs/button-bumper.md @@ -64,7 +64,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-collection-AT42QT1070.md b/docs/button-collection-AT42QT1070.md index 36e3c9ee2..1df24745d 100644 --- a/docs/button-collection-AT42QT1070.md +++ b/docs/button-collection-AT42QT1070.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-options.md b/docs/button-options.md index 6b4e16d8d..cae41b9fa 100644 --- a/docs/button-options.md +++ b/docs/button-options.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button-pullup.md b/docs/button-pullup.md index 1307dda73..d6356422c 100644 --- a/docs/button-pullup.md +++ b/docs/button-pullup.md @@ -79,7 +79,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/button.md b/docs/button.md index 243b2b7f7..64c357303 100644 --- a/docs/button.md +++ b/docs/button.md @@ -84,7 +84,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/classic-controller.md b/docs/classic-controller.md index 75c6836c5..85d72fde2 100644 --- a/docs/classic-controller.md +++ b/docs/classic-controller.md @@ -133,7 +133,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/claw.md b/docs/claw.md index 02deb3bd0..de7fb910a 100644 --- a/docs/claw.md +++ b/docs/claw.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-EVS_EV3.md b/docs/color-EVS_EV3.md index a1c8ce2a8..46143b706 100644 --- a/docs/color-EVS_EV3.md +++ b/docs/color-EVS_EV3.md @@ -51,7 +51,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-EVS_NXT.md b/docs/color-EVS_NXT.md index 06c3aded0..e29cf67d7 100644 --- a/docs/color-EVS_NXT.md +++ b/docs/color-EVS_NXT.md @@ -51,7 +51,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-ISL29125.md b/docs/color-ISL29125.md index 55bc4ee48..32f792b24 100644 --- a/docs/color-ISL29125.md +++ b/docs/color-ISL29125.md @@ -49,7 +49,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/color-raw-EVS_EV3.md b/docs/color-raw-EVS_EV3.md index 0f2bc508e..8ca24b244 100644 --- a/docs/color-raw-EVS_EV3.md +++ b/docs/color-raw-EVS_EV3.md @@ -52,7 +52,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-MAG3110-tessel.md b/docs/compass-MAG3110-tessel.md index 00d3502af..17227cc5f 100644 --- a/docs/compass-MAG3110-tessel.md +++ b/docs/compass-MAG3110-tessel.md @@ -76,7 +76,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-MAG3110.md b/docs/compass-MAG3110.md index 861495448..5e1a8db16 100644 --- a/docs/compass-MAG3110.md +++ b/docs/compass-MAG3110.md @@ -73,7 +73,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-hmc5883l.md b/docs/compass-hmc5883l.md index 51e46f668..5c44ef5a8 100644 --- a/docs/compass-hmc5883l.md +++ b/docs/compass-hmc5883l.md @@ -62,7 +62,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/compass-hmc6352.md b/docs/compass-hmc6352.md index 26eadf311..26cbd0525 100644 --- a/docs/compass-hmc6352.md +++ b/docs/compass-hmc6352.md @@ -62,7 +62,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/custom-properties.md b/docs/custom-properties.md index 796ac9977..2deb71e6b 100644 --- a/docs/custom-properties.md +++ b/docs/custom-properties.md @@ -52,7 +52,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/edison-io-arduino.md b/docs/edison-io-arduino.md index c1873fd93..be8e39732 100644 --- a/docs/edison-io-arduino.md +++ b/docs/edison-io-arduino.md @@ -79,7 +79,7 @@ npm install johnny-five edison-io ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/edison-io-miniboard.md b/docs/edison-io-miniboard.md index 027345980..be48b083d 100644 --- a/docs/edison-io-miniboard.md +++ b/docs/edison-io-miniboard.md @@ -79,7 +79,7 @@ npm install johnny-five edison-io ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-PCA9685.md b/docs/esc-PCA9685.md index af96dfb92..28cdb6a8c 100644 --- a/docs/esc-PCA9685.md +++ b/docs/esc-PCA9685.md @@ -62,7 +62,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-bidirectional.md b/docs/esc-bidirectional.md index b70eae37c..27c81fc64 100644 --- a/docs/esc-bidirectional.md +++ b/docs/esc-bidirectional.md @@ -63,7 +63,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/esc-keypress.md b/docs/esc-keypress.md index 734ffe9bd..26f269eed 100644 --- a/docs/esc-keypress.md +++ b/docs/esc-keypress.md @@ -96,7 +96,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-74HC595.md b/docs/expander-74HC595.md index 673edc99b..5133e1fcc 100644 --- a/docs/expander-74HC595.md +++ b/docs/expander-74HC595.md @@ -74,7 +74,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-CD74HC4067_NANO_BACKPACK.md b/docs/expander-CD74HC4067_NANO_BACKPACK.md index 00d08f321..3d1dc6045 100644 --- a/docs/expander-CD74HC4067_NANO_BACKPACK.md +++ b/docs/expander-CD74HC4067_NANO_BACKPACK.md @@ -101,7 +101,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-LIS3DH.md b/docs/expander-LIS3DH.md index 0669747d1..19152713d 100644 --- a/docs/expander-LIS3DH.md +++ b/docs/expander-LIS3DH.md @@ -67,7 +67,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MCP23008.md b/docs/expander-MCP23008.md index cf249b5f7..f521f1859 100644 --- a/docs/expander-MCP23008.md +++ b/docs/expander-MCP23008.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MCP23017.md b/docs/expander-MCP23017.md index a3c25bd31..7596f4391 100644 --- a/docs/expander-MCP23017.md +++ b/docs/expander-MCP23017.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MUXSHIELD2-analog-read.md b/docs/expander-MUXSHIELD2-analog-read.md index 371dd7f47..d2bc76c06 100644 --- a/docs/expander-MUXSHIELD2-analog-read.md +++ b/docs/expander-MUXSHIELD2-analog-read.md @@ -84,7 +84,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-MUXSHIELD2-mixed.md b/docs/expander-MUXSHIELD2-mixed.md index 5e878bf74..5628dd487 100644 --- a/docs/expander-MUXSHIELD2-mixed.md +++ b/docs/expander-MUXSHIELD2-mixed.md @@ -118,7 +118,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCA9685.md b/docs/expander-PCA9685.md index c8a828f4c..551051375 100644 --- a/docs/expander-PCA9685.md +++ b/docs/expander-PCA9685.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8574.md b/docs/expander-PCF8574.md index 435d731b7..3685d4ca7 100644 --- a/docs/expander-PCF8574.md +++ b/docs/expander-PCF8574.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8575.md b/docs/expander-PCF8575.md index 822de69d6..d8c429c0a 100644 --- a/docs/expander-PCF8575.md +++ b/docs/expander-PCF8575.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/expander-PCF8591.md b/docs/expander-PCF8591.md index 3ec7c77de..f0ce88ee2 100644 --- a/docs/expander-PCF8591.md +++ b/docs/expander-PCF8591.md @@ -67,7 +67,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/flex.md b/docs/flex.md index f2d11c251..fb45fdc17 100644 --- a/docs/flex.md +++ b/docs/flex.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/galileo-io.md b/docs/galileo-io.md index 4589aceb3..9e84edf32 100644 --- a/docs/galileo-io.md +++ b/docs/galileo-io.md @@ -79,7 +79,7 @@ npm install johnny-five galileo-io ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps-GP-20U7.md b/docs/gps-GP-20U7.md index 6fa071fec..930924c90 100644 --- a/docs/gps-GP-20U7.md +++ b/docs/gps-GP-20U7.md @@ -76,7 +76,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps-adafruit.md b/docs/gps-adafruit.md index 3c7f420ba..62aa33bd7 100644 --- a/docs/gps-adafruit.md +++ b/docs/gps-adafruit.md @@ -76,7 +76,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps-hardware-serial.md b/docs/gps-hardware-serial.md index 6b0e6f3ae..0924a27cb 100644 --- a/docs/gps-hardware-serial.md +++ b/docs/gps-hardware-serial.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gps.md b/docs/gps.md index b50c42bb8..c70ce55f6 100644 --- a/docs/gps.md +++ b/docs/gps.md @@ -83,7 +83,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-accelerometer-adxl345-edison.md b/docs/grove-accelerometer-adxl345-edison.md index 3ab8d5dbd..402963b09 100644 --- a/docs/grove-accelerometer-adxl345-edison.md +++ b/docs/grove-accelerometer-adxl345-edison.md @@ -71,7 +71,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-accelerometer-mma7660-edison.md b/docs/grove-accelerometer-mma7660-edison.md index 07d724b0d..dc1042297 100644 --- a/docs/grove-accelerometer-mma7660-edison.md +++ b/docs/grove-accelerometer-mma7660-edison.md @@ -70,7 +70,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-barometer-edison.md b/docs/grove-barometer-edison.md index a9153dea2..a9c61e76e 100644 --- a/docs/grove-barometer-edison.md +++ b/docs/grove-barometer-edison.md @@ -64,7 +64,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-button-edison.md b/docs/grove-button-edison.md index 8d7ea328e..3377bec11 100644 --- a/docs/grove-button-edison.md +++ b/docs/grove-button-edison.md @@ -72,7 +72,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-button.md b/docs/grove-button.md index 945b731bf..7bbf6e2ae 100644 --- a/docs/grove-button.md +++ b/docs/grove-button.md @@ -66,7 +66,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-compass-edison.md b/docs/grove-compass-edison.md index 3ce987336..9e86c5c12 100644 --- a/docs/grove-compass-edison.md +++ b/docs/grove-compass-edison.md @@ -71,7 +71,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-flame-sensor-edison.md b/docs/grove-flame-sensor-edison.md index 11d6bd52c..33ac03e35 100644 --- a/docs/grove-flame-sensor-edison.md +++ b/docs/grove-flame-sensor-edison.md @@ -67,7 +67,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-gas-mq2-edison.md b/docs/grove-gas-mq2-edison.md index 159ad23cd..0967fd191 100644 --- a/docs/grove-gas-mq2-edison.md +++ b/docs/grove-gas-mq2-edison.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-gas-tp401-edison.md b/docs/grove-gas-tp401-edison.md index 332821efe..6adbd89be 100644 --- a/docs/grove-gas-tp401-edison.md +++ b/docs/grove-gas-tp401-edison.md @@ -107,7 +107,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-humidity-temperature-edison.md b/docs/grove-humidity-temperature-edison.md index 407603b21..c53b0942a 100644 --- a/docs/grove-humidity-temperature-edison.md +++ b/docs/grove-humidity-temperature-edison.md @@ -79,7 +79,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-i2c-motor-driver-edison.md b/docs/grove-i2c-motor-driver-edison.md index f34ca3e47..716852784 100644 --- a/docs/grove-i2c-motor-driver-edison.md +++ b/docs/grove-i2c-motor-driver-edison.md @@ -85,7 +85,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-i2c-motor-driver.md b/docs/grove-i2c-motor-driver.md index 8572490bc..a3acd7cc5 100644 --- a/docs/grove-i2c-motor-driver.md +++ b/docs/grove-i2c-motor-driver.md @@ -79,7 +79,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-joystick-edison.md b/docs/grove-joystick-edison.md index d7122a864..c562e3fff 100644 --- a/docs/grove-joystick-edison.md +++ b/docs/grove-joystick-edison.md @@ -66,7 +66,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-joystick.md b/docs/grove-joystick.md index f6286085a..ebeb328d0 100644 --- a/docs/grove-joystick.md +++ b/docs/grove-joystick.md @@ -59,7 +59,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-bgcolor-previewer-edison.md b/docs/grove-lcd-rgb-bgcolor-previewer-edison.md index 5c50adc6d..0e2ef4ed1 100644 --- a/docs/grove-lcd-rgb-bgcolor-previewer-edison.md +++ b/docs/grove-lcd-rgb-bgcolor-previewer-edison.md @@ -73,7 +73,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-edison.md b/docs/grove-lcd-rgb-edison.md index 60fffd4db..15944c717 100644 --- a/docs/grove-lcd-rgb-edison.md +++ b/docs/grove-lcd-rgb-edison.md @@ -83,7 +83,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-temperature-display-edison.md b/docs/grove-lcd-rgb-temperature-display-edison.md index de30f0390..3f08c1587 100644 --- a/docs/grove-lcd-rgb-temperature-display-edison.md +++ b/docs/grove-lcd-rgb-temperature-display-edison.md @@ -101,7 +101,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb-temperature-display.md b/docs/grove-lcd-rgb-temperature-display.md index 495d0f0a4..17ff9bbed 100644 --- a/docs/grove-lcd-rgb-temperature-display.md +++ b/docs/grove-lcd-rgb-temperature-display.md @@ -108,7 +108,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-lcd-rgb.md b/docs/grove-lcd-rgb.md index 19a9161f0..c4de294c8 100644 --- a/docs/grove-lcd-rgb.md +++ b/docs/grove-lcd-rgb.md @@ -88,7 +88,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-led-edison.md b/docs/grove-led-edison.md index 59e54af05..f31766502 100644 --- a/docs/grove-led-edison.md +++ b/docs/grove-led-edison.md @@ -74,7 +74,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-led.md b/docs/grove-led.md index c5e88e161..4d9463e47 100644 --- a/docs/grove-led.md +++ b/docs/grove-led.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-light-sensor-edison.md b/docs/grove-light-sensor-edison.md index 1036a0c94..d1261725c 100644 --- a/docs/grove-light-sensor-edison.md +++ b/docs/grove-light-sensor-edison.md @@ -62,7 +62,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-moisture-edison.md b/docs/grove-moisture-edison.md index d86b327b0..d7afb047f 100644 --- a/docs/grove-moisture-edison.md +++ b/docs/grove-moisture-edison.md @@ -73,7 +73,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-q-touch.md b/docs/grove-q-touch.md index 6d9081c39..68d715006 100644 --- a/docs/grove-q-touch.md +++ b/docs/grove-q-touch.md @@ -87,7 +87,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-relay-edison.md b/docs/grove-relay-edison.md index 00628b778..5955f9c2d 100644 --- a/docs/grove-relay-edison.md +++ b/docs/grove-relay-edison.md @@ -63,7 +63,7 @@ Learn More At: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-rotary-potentiometer-edison.md b/docs/grove-rotary-potentiometer-edison.md index e8cb3de1f..0c975c4be 100644 --- a/docs/grove-rotary-potentiometer-edison.md +++ b/docs/grove-rotary-potentiometer-edison.md @@ -90,7 +90,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-rotary-potentiometer.md b/docs/grove-rotary-potentiometer.md index 2adeffbd5..6f3b7f057 100644 --- a/docs/grove-rotary-potentiometer.md +++ b/docs/grove-rotary-potentiometer.md @@ -84,7 +84,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-servo-edison.md b/docs/grove-servo-edison.md index d2acf67cf..7932250e2 100644 --- a/docs/grove-servo-edison.md +++ b/docs/grove-servo-edison.md @@ -70,7 +70,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-servo.md b/docs/grove-servo.md index c8349487a..2776029fd 100644 --- a/docs/grove-servo.md +++ b/docs/grove-servo.md @@ -64,7 +64,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-touch-edison.md b/docs/grove-touch-edison.md index 869fac02c..cd3709293 100644 --- a/docs/grove-touch-edison.md +++ b/docs/grove-touch-edison.md @@ -74,7 +74,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/grove-touch.md b/docs/grove-touch.md index 5364c2954..fdba79ea2 100644 --- a/docs/grove-touch.md +++ b/docs/grove-touch.md @@ -68,7 +68,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro-lpr5150l.md b/docs/gyro-lpr5150l.md index 5279ed872..2923d8d4e 100644 --- a/docs/gyro-lpr5150l.md +++ b/docs/gyro-lpr5150l.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro-mpu6050.md b/docs/gyro-mpu6050.md index 2bbd55ed3..cd62051f2 100644 --- a/docs/gyro-mpu6050.md +++ b/docs/gyro-mpu6050.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/gyro.md b/docs/gyro.md index 7fc90dbad..c86fdd178 100644 --- a/docs/gyro.md +++ b/docs/gyro.md @@ -113,7 +113,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md index c084283f8..b0f5ce3ee 100644 --- a/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT11_I2C_NANO_BACKPACK.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md index 5414e3b31..f6d2a2a13 100644 --- a/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT21_I2C_NANO_BACKPACK.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md b/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md index c01fecc68..5db256563 100644 --- a/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md +++ b/docs/hygrometer-DHT22_I2C_NANO_BACKPACK.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-HIH6130.md b/docs/hygrometer-HIH6130.md index 974607821..0e8ca997e 100644 --- a/docs/hygrometer-HIH6130.md +++ b/docs/hygrometer-HIH6130.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-SI7021.md b/docs/hygrometer-SI7021.md index 5c35506a7..16874012c 100644 --- a/docs/hygrometer-SI7021.md +++ b/docs/hygrometer-SI7021.md @@ -63,7 +63,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-TH02.md b/docs/hygrometer-TH02.md index d49d9bb61..d7ef86693 100644 --- a/docs/hygrometer-TH02.md +++ b/docs/hygrometer-TH02.md @@ -55,7 +55,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-htu21d.md b/docs/hygrometer-htu21d.md index 70d3ebc17..6dbf686ab 100644 --- a/docs/hygrometer-htu21d.md +++ b/docs/hygrometer-htu21d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/hygrometer-sht31d.md b/docs/hygrometer-sht31d.md index dbdee8572..cf1f254c2 100644 --- a/docs/hygrometer-sht31d.md +++ b/docs/hygrometer-sht31d.md @@ -67,7 +67,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imp-io.md b/docs/imp-io.md index 703d3176a..06b7e799a 100644 --- a/docs/imp-io.md +++ b/docs/imp-io.md @@ -95,7 +95,7 @@ source ~/.imprc ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-bno055-orientation.md b/docs/imu-bno055-orientation.md index 1360d0f7f..5ef208175 100644 --- a/docs/imu-bno055-orientation.md +++ b/docs/imu-bno055-orientation.md @@ -92,7 +92,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-bno055.md b/docs/imu-bno055.md index 43d1abcd5..3b3fc4c14 100644 --- a/docs/imu-bno055.md +++ b/docs/imu-bno055.md @@ -110,7 +110,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-lsm303c.md b/docs/imu-lsm303c.md index 9916502b3..16e9ab63e 100644 --- a/docs/imu-lsm303c.md +++ b/docs/imu-lsm303c.md @@ -122,7 +122,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/imu-mpu6050.md b/docs/imu-mpu6050.md index f2d99547d..fd71f0f68 100644 --- a/docs/imu-mpu6050.md +++ b/docs/imu-mpu6050.md @@ -85,7 +85,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-motion.md b/docs/ir-motion.md index 30aa59f9a..ed1597085 100644 --- a/docs/ir-motion.md +++ b/docs/ir-motion.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-proximity.md b/docs/ir-proximity.md index d330d9914..8c201842a 100644 --- a/docs/ir-proximity.md +++ b/docs/ir-proximity.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-reflect-array.md b/docs/ir-reflect-array.md index 4d9d54988..ebbe01e0b 100644 --- a/docs/ir-reflect-array.md +++ b/docs/ir-reflect-array.md @@ -62,7 +62,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/ir-reflect.md b/docs/ir-reflect.md index 319191a0f..1f047989e 100644 --- a/docs/ir-reflect.md +++ b/docs/ir-reflect.md @@ -60,7 +60,7 @@ five.Board().on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-esplora.md b/docs/joystick-esplora.md index 49ac0d745..3c663286e 100644 --- a/docs/joystick-esplora.md +++ b/docs/joystick-esplora.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-pantilt.md b/docs/joystick-pantilt.md index 58ee5c109..3ed5157a1 100644 --- a/docs/joystick-pantilt.md +++ b/docs/joystick-pantilt.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick-shield.md b/docs/joystick-shield.md index bfc4de15b..4d79d419e 100644 --- a/docs/joystick-shield.md +++ b/docs/joystick-shield.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/joystick.md b/docs/joystick.md index 696101662..2dc1e8719 100644 --- a/docs/joystick.md +++ b/docs/joystick.md @@ -79,7 +79,7 @@ Fritzing diagram: [docs/breadboard/joystick-adafruit.fzz](breadboard/joystick-ad ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-3X4_I2C_NANO_BACKPACK.md b/docs/keypad-3X4_I2C_NANO_BACKPACK.md index a34e33540..90c73586e 100644 --- a/docs/keypad-3X4_I2C_NANO_BACKPACK.md +++ b/docs/keypad-3X4_I2C_NANO_BACKPACK.md @@ -108,7 +108,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-4X4_I2C_NANO_BACKPACK.md b/docs/keypad-4X4_I2C_NANO_BACKPACK.md index 5e82f1f9b..848b87bb1 100644 --- a/docs/keypad-4X4_I2C_NANO_BACKPACK.md +++ b/docs/keypad-4X4_I2C_NANO_BACKPACK.md @@ -81,7 +81,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121-sensitivity.md b/docs/keypad-MPR121-sensitivity.md index 0c5159f55..0fffb9f14 100644 --- a/docs/keypad-MPR121-sensitivity.md +++ b/docs/keypad-MPR121-sensitivity.md @@ -101,7 +101,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121.md b/docs/keypad-MPR121.md index 0dbba5b5d..e95a6c5db 100644 --- a/docs/keypad-MPR121.md +++ b/docs/keypad-MPR121.md @@ -60,7 +60,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121QR2_SHIELD.md b/docs/keypad-MPR121QR2_SHIELD.md index 9aae75d84..6465bd5f7 100644 --- a/docs/keypad-MPR121QR2_SHIELD.md +++ b/docs/keypad-MPR121QR2_SHIELD.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121_KEYPAD.md b/docs/keypad-MPR121_KEYPAD.md index bacb115b5..063b4adad 100644 --- a/docs/keypad-MPR121_KEYPAD.md +++ b/docs/keypad-MPR121_KEYPAD.md @@ -86,7 +86,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-MPR121_SHIELD.md b/docs/keypad-MPR121_SHIELD.md index 2b61ced3d..ea23f7482 100644 --- a/docs/keypad-MPR121_SHIELD.md +++ b/docs/keypad-MPR121_SHIELD.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-QTOUCH.md b/docs/keypad-QTOUCH.md index b4d4e84cc..0ddb89fd6 100644 --- a/docs/keypad-QTOUCH.md +++ b/docs/keypad-QTOUCH.md @@ -83,7 +83,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-analog-ad.md b/docs/keypad-analog-ad.md index 98bd6ee03..e6cd84a50 100644 --- a/docs/keypad-analog-ad.md +++ b/docs/keypad-analog-ad.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/keypad-analog-vkey.md b/docs/keypad-analog-vkey.md index fc5e899c3..f9bd5891f 100644 --- a/docs/keypad-analog-vkey.md +++ b/docs/keypad-analog-vkey.md @@ -90,7 +90,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/kinect-arm-controller.md b/docs/kinect-arm-controller.md index b42698fcc..492ffc743 100644 --- a/docs/kinect-arm-controller.md +++ b/docs/kinect-arm-controller.md @@ -425,7 +425,7 @@ Illustrates arm joint connections. ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/laser-trip-wire.md b/docs/laser-trip-wire.md index 86704d36d..486c26828 100644 --- a/docs/laser-trip-wire.md +++ b/docs/laser-trip-wire.md @@ -66,7 +66,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-16x2-tessel.md b/docs/lcd-16x2-tessel.md index b32e2d6a0..7b6ab4f31 100644 --- a/docs/lcd-16x2-tessel.md +++ b/docs/lcd-16x2-tessel.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-enumeratechars.md b/docs/lcd-enumeratechars.md index 166d2d37e..40aff77ee 100644 --- a/docs/lcd-enumeratechars.md +++ b/docs/lcd-enumeratechars.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c-PCF8574.md b/docs/lcd-i2c-PCF8574.md index e864ab3ce..3e7756892 100644 --- a/docs/lcd-i2c-PCF8574.md +++ b/docs/lcd-i2c-PCF8574.md @@ -94,7 +94,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c-runner.md b/docs/lcd-i2c-runner.md index d211a542a..7492d8f8a 100644 --- a/docs/lcd-i2c-runner.md +++ b/docs/lcd-i2c-runner.md @@ -88,7 +88,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-i2c.md b/docs/lcd-i2c.md index 6652183b9..2a713a1c4 100644 --- a/docs/lcd-i2c.md +++ b/docs/lcd-i2c.md @@ -69,7 +69,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-bgcolor-previewer-tessel.md b/docs/lcd-rgb-bgcolor-previewer-tessel.md index ebf4a92bf..8a7ec409a 100644 --- a/docs/lcd-rgb-bgcolor-previewer-tessel.md +++ b/docs/lcd-rgb-bgcolor-previewer-tessel.md @@ -82,7 +82,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-bgcolor-previewer.md b/docs/lcd-rgb-bgcolor-previewer.md index f13a10f90..22389f336 100644 --- a/docs/lcd-rgb-bgcolor-previewer.md +++ b/docs/lcd-rgb-bgcolor-previewer.md @@ -79,7 +79,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-rgb-tessel-grove-JHD1313M1.md b/docs/lcd-rgb-tessel-grove-JHD1313M1.md index 59483ecc0..2dc41a27b 100644 --- a/docs/lcd-rgb-tessel-grove-JHD1313M1.md +++ b/docs/lcd-rgb-tessel-grove-JHD1313M1.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-runner-20x4.md b/docs/lcd-runner-20x4.md index 4878c1eec..e18b89dfa 100644 --- a/docs/lcd-runner-20x4.md +++ b/docs/lcd-runner-20x4.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd-runner.md b/docs/lcd-runner.md index 0b38c7661..ded679be4 100644 --- a/docs/lcd-runner.md +++ b/docs/lcd-runner.md @@ -89,7 +89,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/lcd.md b/docs/lcd.md index 25970ff4d..1a2142688 100644 --- a/docs/lcd.md +++ b/docs/lcd.md @@ -96,7 +96,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-PCA9685.md b/docs/led-PCA9685.md index 01ae1c1dc..0705fbbe8 100644 --- a/docs/led-PCA9685.md +++ b/docs/led-PCA9685.md @@ -70,7 +70,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-array-controller.md b/docs/led-array-controller.md index c9c0bc27e..6952b645f 100644 --- a/docs/led-array-controller.md +++ b/docs/led-array-controller.md @@ -71,7 +71,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-array.md b/docs/led-array.md index a18c34678..1e12941ec 100644 --- a/docs/led-array.md +++ b/docs/led-array.md @@ -61,7 +61,7 @@ as `pulse()` or `fade()` ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-blink.md b/docs/led-blink.md index a77434953..566a60de9 100644 --- a/docs/led-blink.md +++ b/docs/led-blink.md @@ -80,7 +80,7 @@ Fritzing diagram: [docs/breadboard/led-resistor.fzz](breadboard/led-resistor.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-chars-demo.md b/docs/led-chars-demo.md index 9189560b8..9539ed549 100644 --- a/docs/led-chars-demo.md +++ b/docs/led-chars-demo.md @@ -71,7 +71,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-demo-sequence.md b/docs/led-demo-sequence.md index 1ffc27ea7..8ce80b7a0 100644 --- a/docs/led-demo-sequence.md +++ b/docs/led-demo-sequence.md @@ -135,7 +135,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock-HT16K33.md b/docs/led-digits-clock-HT16K33.md index a4fbc0325..9c79da076 100644 --- a/docs/led-digits-clock-HT16K33.md +++ b/docs/led-digits-clock-HT16K33.md @@ -72,7 +72,7 @@ Learn More: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock-dual.md b/docs/led-digits-clock-dual.md index e0ba1b5d0..ed16964d4 100644 --- a/docs/led-digits-clock-dual.md +++ b/docs/led-digits-clock-dual.md @@ -86,7 +86,7 @@ Learn More: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-digits-clock.md b/docs/led-digits-clock.md index 9406c2f4c..b84a7e9f1 100644 --- a/docs/led-digits-clock.md +++ b/docs/led-digits-clock.md @@ -102,7 +102,7 @@ Fritzing diagram: [docs/breadboard/led-digits-clock-arduino.fzz](breadboard/led- ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-enumeratechars.md b/docs/led-enumeratechars.md index b68896b0c..a8462a06e 100644 --- a/docs/led-enumeratechars.md +++ b/docs/led-enumeratechars.md @@ -81,7 +81,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade-animation.md b/docs/led-fade-animation.md index 3d6b8f9ab..a0f05bf6f 100644 --- a/docs/led-fade-animation.md +++ b/docs/led-fade-animation.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade-callback.md b/docs/led-fade-callback.md index 6fbe9b74c..cfc85ed3b 100644 --- a/docs/led-fade-callback.md +++ b/docs/led-fade-callback.md @@ -83,7 +83,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-fade.md b/docs/led-fade.md index 2aeff7ff8..530801135 100644 --- a/docs/led-fade.md +++ b/docs/led-fade.md @@ -63,7 +63,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-HT16K33-16x8.md b/docs/led-matrix-HT16K33-16x8.md index 069812633..bfa21ed86 100644 --- a/docs/led-matrix-HT16K33-16x8.md +++ b/docs/led-matrix-HT16K33-16x8.md @@ -93,7 +93,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-HT16K33.md b/docs/led-matrix-HT16K33.md index 76e776736..5bd0eb68c 100644 --- a/docs/led-matrix-HT16K33.md +++ b/docs/led-matrix-HT16K33.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix-tutorial.md b/docs/led-matrix-tutorial.md index a9e35898c..b049f0132 100644 --- a/docs/led-matrix-tutorial.md +++ b/docs/led-matrix-tutorial.md @@ -154,7 +154,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-matrix.md b/docs/led-matrix.md index 0c6323fd5..d14cbbd37 100644 --- a/docs/led-matrix.md +++ b/docs/led-matrix.md @@ -95,7 +95,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-pulse-animation.md b/docs/led-pulse-animation.md index 2ef123d5b..9db522c32 100644 --- a/docs/led-pulse-animation.md +++ b/docs/led-pulse-animation.md @@ -80,7 +80,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-pulse.md b/docs/led-pulse.md index 7be642fc1..7f700c50d 100644 --- a/docs/led-pulse.md +++ b/docs/led-pulse.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rainbow.md b/docs/led-rainbow.md index 48c2084a6..65965f03e 100644 --- a/docs/led-rainbow.md +++ b/docs/led-rainbow.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-BLINKM.md b/docs/led-rgb-BLINKM.md index 73b7d9daf..cba11a3b6 100644 --- a/docs/led-rgb-BLINKM.md +++ b/docs/led-rgb-BLINKM.md @@ -66,7 +66,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-anode-PCA9685.md b/docs/led-rgb-anode-PCA9685.md index beb0d47c3..8e108450f 100644 --- a/docs/led-rgb-anode-PCA9685.md +++ b/docs/led-rgb-anode-PCA9685.md @@ -86,7 +86,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-anode.md b/docs/led-rgb-anode.md index 791c8bf6d..f6b43e063 100644 --- a/docs/led-rgb-anode.md +++ b/docs/led-rgb-anode.md @@ -72,7 +72,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-rgb-intensity.md b/docs/led-rgb-intensity.md index 68d7c51b6..fe4238bd3 100644 --- a/docs/led-rgb-intensity.md +++ b/docs/led-rgb-intensity.md @@ -85,7 +85,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-slider.md b/docs/led-slider.md index 1cc8ea883..d7b6d0a21 100644 --- a/docs/led-slider.md +++ b/docs/led-slider.md @@ -60,7 +60,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led-tessel-servo-module.md b/docs/led-tessel-servo-module.md index 00763ce58..d04d43bb3 100644 --- a/docs/led-tessel-servo-module.md +++ b/docs/led-tessel-servo-module.md @@ -63,7 +63,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/led.md b/docs/led.md index 1c8b493a4..06f369057 100644 --- a/docs/led.md +++ b/docs/led.md @@ -108,7 +108,7 @@ then ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-BH1750.md b/docs/light-ambient-BH1750.md index 04757a52a..7cae4c1e1 100644 --- a/docs/light-ambient-BH1750.md +++ b/docs/light-ambient-BH1750.md @@ -71,7 +71,7 @@ Fritzing diagram: [docs/breadboard/light-ambient-BH1750-tessel.fzz](breadboard/l ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-EVS_EV3.md b/docs/light-ambient-EVS_EV3.md index 062f08a50..7212077f0 100644 --- a/docs/light-ambient-EVS_EV3.md +++ b/docs/light-ambient-EVS_EV3.md @@ -50,7 +50,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-EVS_NXT.md b/docs/light-ambient-EVS_NXT.md index f8a728cbe..652cd6a29 100644 --- a/docs/light-ambient-EVS_NXT.md +++ b/docs/light-ambient-EVS_NXT.md @@ -50,7 +50,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-ambient-TSL2561.md b/docs/light-ambient-TSL2561.md index 83e677b31..5394b223c 100644 --- a/docs/light-ambient-TSL2561.md +++ b/docs/light-ambient-TSL2561.md @@ -60,7 +60,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-reflected-EVS_EV3.md b/docs/light-reflected-EVS_EV3.md index 18a3f8eb5..4f24906f9 100644 --- a/docs/light-reflected-EVS_EV3.md +++ b/docs/light-reflected-EVS_EV3.md @@ -51,7 +51,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/light-reflected-EVS_NXT.md b/docs/light-reflected-EVS_NXT.md index 5ad31dd59..31b46589a 100644 --- a/docs/light-reflected-EVS_NXT.md +++ b/docs/light-reflected-EVS_NXT.md @@ -51,7 +51,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/line-follower.md b/docs/line-follower.md index cc6b32167..5e1c538e9 100644 --- a/docs/line-follower.md +++ b/docs/line-follower.md @@ -217,7 +217,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer-log.md b/docs/magnetometer-log.md index cc8ea39d4..bdab9c66f 100644 --- a/docs/magnetometer-log.md +++ b/docs/magnetometer-log.md @@ -150,7 +150,7 @@ colors = { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer-north.md b/docs/magnetometer-north.md index dd3053f4b..2b7fb89ea 100644 --- a/docs/magnetometer-north.md +++ b/docs/magnetometer-north.md @@ -111,7 +111,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/magnetometer.md b/docs/magnetometer.md index b2ec335d2..3b7b618f4 100644 --- a/docs/magnetometer.md +++ b/docs/magnetometer.md @@ -103,7 +103,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-accelerometer.md b/docs/micromagician-accelerometer.md index 1f3378e39..e2ec90c5d 100644 --- a/docs/micromagician-accelerometer.md +++ b/docs/micromagician-accelerometer.md @@ -68,7 +68,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-motor.md b/docs/micromagician-motor.md index 491b1d9d3..e159349c2 100644 --- a/docs/micromagician-motor.md +++ b/docs/micromagician-motor.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/micromagician-servo.md b/docs/micromagician-servo.md index a521d2417..99621de2f 100644 --- a/docs/micromagician-servo.md +++ b/docs/micromagician-servo.md @@ -92,7 +92,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/microphone.md b/docs/microphone.md index 41df5e1d0..d4081f795 100644 --- a/docs/microphone.md +++ b/docs/microphone.md @@ -57,7 +57,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-GP2Y0A60SZLF.md b/docs/motion-GP2Y0A60SZLF.md index b17aa0c80..df824325e 100644 --- a/docs/motion-GP2Y0A60SZLF.md +++ b/docs/motion-GP2Y0A60SZLF.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d805z0f.md b/docs/motion-gp2y0d805z0f.md index 3810bedc3..c56cd4090 100644 --- a/docs/motion-gp2y0d805z0f.md +++ b/docs/motion-gp2y0d805z0f.md @@ -82,7 +82,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d810z0f.md b/docs/motion-gp2y0d810z0f.md index 4fa4ac9f6..fcc7d794c 100644 --- a/docs/motion-gp2y0d810z0f.md +++ b/docs/motion-gp2y0d810z0f.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion-gp2y0d815z0f.md b/docs/motion-gp2y0d815z0f.md index 4847be6b0..ba571e046 100644 --- a/docs/motion-gp2y0d815z0f.md +++ b/docs/motion-gp2y0d815z0f.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motion.md b/docs/motion.md index 4f21fb902..314e2c0f4 100644 --- a/docs/motion.md +++ b/docs/motion.md @@ -80,7 +80,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motobot.md b/docs/motobot.md index 1e2ff9248..f4175cd60 100644 --- a/docs/motobot.md +++ b/docs/motobot.md @@ -113,7 +113,7 @@ Motobot chassis before addings ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-3-pin.md b/docs/motor-3-pin.md index 51e1f8905..b80810641 100644 --- a/docs/motor-3-pin.md +++ b/docs/motor-3-pin.md @@ -116,7 +116,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-EVS_EV3.md b/docs/motor-EVS_EV3.md index 4fa5160d2..bd9dbf599 100644 --- a/docs/motor-EVS_EV3.md +++ b/docs/motor-EVS_EV3.md @@ -57,7 +57,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-EVS_NXT.md b/docs/motor-EVS_NXT.md index 72eb4b178..826263ade 100644 --- a/docs/motor-EVS_NXT.md +++ b/docs/motor-EVS_NXT.md @@ -57,7 +57,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-GROVE_I2C.md b/docs/motor-GROVE_I2C.md index 8034e950b..e8d9ebea1 100644 --- a/docs/motor-GROVE_I2C.md +++ b/docs/motor-GROVE_I2C.md @@ -78,7 +78,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-LUDUS.md b/docs/motor-LUDUS.md index ada392cf5..dcdb8efef 100644 --- a/docs/motor-LUDUS.md +++ b/docs/motor-LUDUS.md @@ -74,7 +74,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-PCA9685.md b/docs/motor-PCA9685.md index 8fd44edec..e4e9738e3 100644 --- a/docs/motor-PCA9685.md +++ b/docs/motor-PCA9685.md @@ -81,7 +81,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-TB6612FNG.md b/docs/motor-TB6612FNG.md index ca64fc91f..03587a8bf 100644 --- a/docs/motor-TB6612FNG.md +++ b/docs/motor-TB6612FNG.md @@ -80,7 +80,7 @@ Here's a breakdown of the pins used by these motor drivers, their corresponding ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-brake.md b/docs/motor-brake.md index bde217dee..a47330352 100644 --- a/docs/motor-brake.md +++ b/docs/motor-brake.md @@ -105,7 +105,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-current.md b/docs/motor-current.md index b7ed2558e..e676804b5 100644 --- a/docs/motor-current.md +++ b/docs/motor-current.md @@ -118,7 +118,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-directional.md b/docs/motor-directional.md index 759018b5f..132ce87a2 100644 --- a/docs/motor-directional.md +++ b/docs/motor-directional.md @@ -129,7 +129,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-drv8871.md b/docs/motor-drv8871.md index 9a7930bf0..87572408e 100644 --- a/docs/motor-drv8871.md +++ b/docs/motor-drv8871.md @@ -82,7 +82,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-enable.md b/docs/motor-enable.md index b2bd55ab7..6ff9e8f25 100644 --- a/docs/motor-enable.md +++ b/docs/motor-enable.md @@ -106,7 +106,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-hbridge-dual.md b/docs/motor-hbridge-dual.md index 84d07acf9..76bc7defb 100644 --- a/docs/motor-hbridge-dual.md +++ b/docs/motor-hbridge-dual.md @@ -103,7 +103,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-hbridge.md b/docs/motor-hbridge.md index 8bfda0a0b..58a293d98 100644 --- a/docs/motor-hbridge.md +++ b/docs/motor-hbridge.md @@ -100,7 +100,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-l298-breakout.md b/docs/motor-l298-breakout.md index bff6c476b..189a05d09 100644 --- a/docs/motor-l298-breakout.md +++ b/docs/motor-l298-breakout.md @@ -86,7 +86,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-sparkfun-edison-hbridge.md b/docs/motor-sparkfun-edison-hbridge.md index 5f298a24c..4ad6900d4 100644 --- a/docs/motor-sparkfun-edison-hbridge.md +++ b/docs/motor-sparkfun-edison-hbridge.md @@ -89,7 +89,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor-vnh5019.md b/docs/motor-vnh5019.md index 3f51d34de..ea847392b 100644 --- a/docs/motor-vnh5019.md +++ b/docs/motor-vnh5019.md @@ -90,7 +90,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/motor.md b/docs/motor.md index 2608ab7c3..17f2d7d7b 100644 --- a/docs/motor.md +++ b/docs/motor.md @@ -89,7 +89,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-BME280.md b/docs/multi-BME280.md index 60f223b3c..32fdfe758 100644 --- a/docs/multi-BME280.md +++ b/docs/multi-BME280.md @@ -93,7 +93,7 @@ Fritzing diagram: [docs/breadboard/multi-BME280-arduino.fzz](breadboard/multi-BM ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT11_I2C_NANO_BACKPACK.md b/docs/multi-DHT11_I2C_NANO_BACKPACK.md index 5fbd40558..262f261aa 100644 --- a/docs/multi-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT11_I2C_NANO_BACKPACK.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT21_I2C_NANO_BACKPACK.md b/docs/multi-DHT21_I2C_NANO_BACKPACK.md index eeea31eed..8d894b0a1 100644 --- a/docs/multi-DHT21_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT21_I2C_NANO_BACKPACK.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-DHT22_I2C_NANO_BACKPACK.md b/docs/multi-DHT22_I2C_NANO_BACKPACK.md index 97aa6ef1f..670bb41f4 100644 --- a/docs/multi-DHT22_I2C_NANO_BACKPACK.md +++ b/docs/multi-DHT22_I2C_NANO_BACKPACK.md @@ -72,7 +72,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-HIH6130.md b/docs/multi-HIH6130.md index 8bdde65bf..fb0e9b1e1 100644 --- a/docs/multi-HIH6130.md +++ b/docs/multi-HIH6130.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-MS5611.md b/docs/multi-MS5611.md index d2a28f5bc..bdf1abce0 100644 --- a/docs/multi-MS5611.md +++ b/docs/multi-MS5611.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-SI7020.md b/docs/multi-SI7020.md index 045044a14..a7fd71037 100644 --- a/docs/multi-SI7020.md +++ b/docs/multi-SI7020.md @@ -86,7 +86,7 @@ Fritzing diagram: [docs/breadboard/temperature-SI7020-uno.fzz](breadboard/temper ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-SI7021.md b/docs/multi-SI7021.md index c7667d726..cbf45c52f 100644 --- a/docs/multi-SI7021.md +++ b/docs/multi-SI7021.md @@ -82,7 +82,7 @@ Fritzing diagram: [docs/breadboard/multi-SI7021-uno.fzz](breadboard/multi-SI7021 ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-TH02.md b/docs/multi-TH02.md index 246c4dcb0..9954a5fa6 100644 --- a/docs/multi-TH02.md +++ b/docs/multi-TH02.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-bmp085.md b/docs/multi-bmp085.md index ca08b2ea6..02c228d9e 100644 --- a/docs/multi-bmp085.md +++ b/docs/multi-bmp085.md @@ -89,7 +89,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-bmp180.md b/docs/multi-bmp180.md index 0193c6ec0..b13abc3e7 100644 --- a/docs/multi-bmp180.md +++ b/docs/multi-bmp180.md @@ -91,7 +91,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-htu21d.md b/docs/multi-htu21d.md index 239e83d84..a702dcf68 100644 --- a/docs/multi-htu21d.md +++ b/docs/multi-htu21d.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-mpl115a2.md b/docs/multi-mpl115a2.md index 42c6c9f08..b5e5d1af1 100644 --- a/docs/multi-mpl115a2.md +++ b/docs/multi-mpl115a2.md @@ -71,7 +71,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-mpl3115a2.md b/docs/multi-mpl3115a2.md index 425b9c840..5c8749896 100644 --- a/docs/multi-mpl3115a2.md +++ b/docs/multi-mpl3115a2.md @@ -87,7 +87,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/multi-sht31d.md b/docs/multi-sht31d.md index cf965b5ad..5e98ccd42 100644 --- a/docs/multi-sht31d.md +++ b/docs/multi-sht31d.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/navigator.md b/docs/navigator.md index 5c1ea0ff7..9acc290e1 100644 --- a/docs/navigator.md +++ b/docs/navigator.md @@ -570,7 +570,7 @@ Navigator.prototype.pivot = function(which, time) { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/nodebot.md b/docs/nodebot.md index 2dec628d9..99c9145e1 100644 --- a/docs/nodebot.md +++ b/docs/nodebot.md @@ -122,7 +122,7 @@ Nodebots come in many flavors, but this is a typical setup. ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/nunchuk.md b/docs/nunchuk.md index c4241d426..6198733c0 100644 --- a/docs/nunchuk.md +++ b/docs/nunchuk.md @@ -135,7 +135,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/pcduino-io.md b/docs/pcduino-io.md index d8effdac5..3b5f98bdd 100644 --- a/docs/pcduino-io.md +++ b/docs/pcduino-io.md @@ -69,7 +69,7 @@ npm install johnny-five pcduino-io ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/phoenix.md b/docs/phoenix.md index 443a79ffc..c9871fa37 100644 --- a/docs/phoenix.md +++ b/docs/phoenix.md @@ -457,7 +457,7 @@ board = new five.Board().on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/photoresistor.md b/docs/photoresistor.md index 5929908db..5127149c0 100644 --- a/docs/photoresistor.md +++ b/docs/photoresistor.md @@ -76,7 +76,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/piezo.md b/docs/piezo.md index 866f8aaf8..fb8a80c74 100644 --- a/docs/piezo.md +++ b/docs/piezo.md @@ -97,7 +97,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/pin.md b/docs/pin.md index 0f07e4de7..be35bff32 100644 --- a/docs/pin.md +++ b/docs/pin.md @@ -77,7 +77,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/plugin.md b/docs/plugin.md index 724b886a1..e9a8c7ba7 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -78,7 +78,7 @@ module.exports = function(five) { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/potentiometer.md b/docs/potentiometer.md index fecf61937..b5cfcd5fa 100644 --- a/docs/potentiometer.md +++ b/docs/potentiometer.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_IR-alert.md b/docs/proximity-EVS_EV3_IR-alert.md index 8494a8a52..d97255244 100644 --- a/docs/proximity-EVS_EV3_IR-alert.md +++ b/docs/proximity-EVS_EV3_IR-alert.md @@ -60,7 +60,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_IR.md b/docs/proximity-EVS_EV3_IR.md index a04746532..09a1299a4 100644 --- a/docs/proximity-EVS_EV3_IR.md +++ b/docs/proximity-EVS_EV3_IR.md @@ -52,7 +52,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_US-alert.md b/docs/proximity-EVS_EV3_US-alert.md index 5ef9e03bb..1effe53b9 100644 --- a/docs/proximity-EVS_EV3_US-alert.md +++ b/docs/proximity-EVS_EV3_US-alert.md @@ -60,7 +60,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-EVS_EV3_US.md b/docs/proximity-EVS_EV3_US.md index 722364b89..5302c6c70 100644 --- a/docs/proximity-EVS_EV3_US.md +++ b/docs/proximity-EVS_EV3_US.md @@ -52,7 +52,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-GP2Y0A710K0F.md b/docs/proximity-GP2Y0A710K0F.md index bcf5a7c64..dd16d47fe 100644 --- a/docs/proximity-GP2Y0A710K0F.md +++ b/docs/proximity-GP2Y0A710K0F.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04-analog.md b/docs/proximity-hcsr04-analog.md index e1ea09a62..9b53587e2 100644 --- a/docs/proximity-hcsr04-analog.md +++ b/docs/proximity-hcsr04-analog.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04-i2c.md b/docs/proximity-hcsr04-i2c.md index fe36ce476..c01533e6a 100644 --- a/docs/proximity-hcsr04-i2c.md +++ b/docs/proximity-hcsr04-i2c.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-hcsr04.md b/docs/proximity-hcsr04.md index a073a5e73..def5091b1 100644 --- a/docs/proximity-hcsr04.md +++ b/docs/proximity-hcsr04.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-lidarlite.md b/docs/proximity-lidarlite.md index 8aa9ab739..ed0da2223 100644 --- a/docs/proximity-lidarlite.md +++ b/docs/proximity-lidarlite.md @@ -64,7 +64,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1000.md b/docs/proximity-mb1000.md index 310dabe4b..8a8fda4e5 100644 --- a/docs/proximity-mb1000.md +++ b/docs/proximity-mb1000.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1003.md b/docs/proximity-mb1003.md index 56a7f8fa8..f97668bf7 100644 --- a/docs/proximity-mb1003.md +++ b/docs/proximity-mb1003.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1010.md b/docs/proximity-mb1010.md index a01c8a1c5..2c4e48c1b 100644 --- a/docs/proximity-mb1010.md +++ b/docs/proximity-mb1010.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-mb1230.md b/docs/proximity-mb1230.md index a832c13ef..b94a8ffa8 100644 --- a/docs/proximity-mb1230.md +++ b/docs/proximity-mb1230.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity-srf10.md b/docs/proximity-srf10.md index b23672572..1a249b451 100644 --- a/docs/proximity-srf10.md +++ b/docs/proximity-srf10.md @@ -64,7 +64,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/proximity.md b/docs/proximity.md index cf96dbef0..1121341b1 100644 --- a/docs/proximity.md +++ b/docs/proximity.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/radar.md b/docs/radar.md index 116148723..ab4fc09e7 100644 --- a/docs/radar.md +++ b/docs/radar.md @@ -164,7 +164,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/raspi-io.md b/docs/raspi-io.md index b9f1bdeb5..551265484 100644 --- a/docs/raspi-io.md +++ b/docs/raspi-io.md @@ -71,7 +71,7 @@ npm install johnny-five raspi-io ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay-collection.md b/docs/relay-collection.md index 1584d8cfa..ed1350bee 100644 --- a/docs/relay-collection.md +++ b/docs/relay-collection.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay-on-analog-pin.md b/docs/relay-on-analog-pin.md index d2ab24326..647f674ee 100644 --- a/docs/relay-on-analog-pin.md +++ b/docs/relay-on-analog-pin.md @@ -59,7 +59,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/relay.md b/docs/relay.md index 2269d1cb5..ca4b36c78 100644 --- a/docs/relay.md +++ b/docs/relay.md @@ -81,7 +81,7 @@ Fritzing diagram: [docs/breadboard/relay-closed.fzz](breadboard/relay-closed.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/repl.md b/docs/repl.md index d5aa6bdec..1ddea86eb 100644 --- a/docs/repl.md +++ b/docs/repl.md @@ -78,7 +78,7 @@ or ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-digital-microwave.md b/docs/sensor-digital-microwave.md index 699e6f1b3..01a673661 100644 --- a/docs/sensor-digital-microwave.md +++ b/docs/sensor-digital-microwave.md @@ -56,7 +56,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-fsr.md b/docs/sensor-fsr.md index 1cc109edb..509b2baba 100644 --- a/docs/sensor-fsr.md +++ b/docs/sensor-fsr.md @@ -68,7 +68,7 @@ var five = require("johnny-five"), ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-photon-weather-shield-moisture.md b/docs/sensor-photon-weather-shield-moisture.md index 43cbbcda5..158565fff 100644 --- a/docs/sensor-photon-weather-shield-moisture.md +++ b/docs/sensor-photon-weather-shield-moisture.md @@ -77,7 +77,7 @@ For this program, you'll need: ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor-slider.md b/docs/sensor-slider.md index 120703d2d..15aa89dae 100644 --- a/docs/sensor-slider.md +++ b/docs/sensor-slider.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/sensor.md b/docs/sensor.md index af12e476f..b4b393dcc 100644 --- a/docs/sensor.md +++ b/docs/sensor.md @@ -50,7 +50,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-PCA9685.md b/docs/servo-PCA9685.md index 65a48496b..1f4ef1c5f 100644 --- a/docs/servo-PCA9685.md +++ b/docs/servo-PCA9685.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-animation-leg.md b/docs/servo-animation-leg.md index 84a1d131c..50071d5c2 100644 --- a/docs/servo-animation-leg.md +++ b/docs/servo-animation-leg.md @@ -137,7 +137,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-animation.md b/docs/servo-animation.md index a58faef19..9cf2630bf 100644 --- a/docs/servo-animation.md +++ b/docs/servo-animation.md @@ -75,7 +75,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-array.md b/docs/servo-array.md index 64f71fda9..856ff0c0a 100644 --- a/docs/servo-array.md +++ b/docs/servo-array.md @@ -110,7 +110,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-continuous.md b/docs/servo-continuous.md index 1f70cbb3f..0e248a975 100644 --- a/docs/servo-continuous.md +++ b/docs/servo-continuous.md @@ -86,7 +86,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-drive.md b/docs/servo-drive.md index f9f93a2e2..8f1e76f3c 100644 --- a/docs/servo-drive.md +++ b/docs/servo-drive.md @@ -94,7 +94,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-multi-turn.md b/docs/servo-multi-turn.md index 5d115333b..181b12220 100644 --- a/docs/servo-multi-turn.md +++ b/docs/servo-multi-turn.md @@ -80,7 +80,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-prompt.md b/docs/servo-prompt.md index 47ed49bd8..167191c83 100644 --- a/docs/servo-prompt.md +++ b/docs/servo-prompt.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-slider.md b/docs/servo-slider.md index 7297e40a4..1fc7690a5 100644 --- a/docs/servo-slider.md +++ b/docs/servo-slider.md @@ -58,7 +58,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo-tessel-servo-module.md b/docs/servo-tessel-servo-module.md index 45e6f5ace..79326bb14 100644 --- a/docs/servo-tessel-servo-module.md +++ b/docs/servo-tessel-servo-module.md @@ -55,7 +55,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/servo.md b/docs/servo.md index 0e1f3f660..f3c0810f5 100644 --- a/docs/servo.md +++ b/docs/servo.md @@ -108,7 +108,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-daisy-chain-anode.md b/docs/shift-register-daisy-chain-anode.md index 805637414..9f19009e7 100644 --- a/docs/shift-register-daisy-chain-anode.md +++ b/docs/shift-register-daisy-chain-anode.md @@ -109,7 +109,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-daisy-chain.md b/docs/shift-register-daisy-chain.md index e87f043ba..5ecf20ae2 100644 --- a/docs/shift-register-daisy-chain.md +++ b/docs/shift-register-daisy-chain.md @@ -109,7 +109,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-seven-segment-anode.md b/docs/shift-register-seven-segment-anode.md index 4c79b20fd..17d20cb3a 100644 --- a/docs/shift-register-seven-segment-anode.md +++ b/docs/shift-register-seven-segment-anode.md @@ -81,7 +81,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register-seven-segment.md b/docs/shift-register-seven-segment.md index b1383ac66..50ebb7a6c 100644 --- a/docs/shift-register-seven-segment.md +++ b/docs/shift-register-seven-segment.md @@ -77,7 +77,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/shift-register.md b/docs/shift-register.md index b18111576..71b345592 100644 --- a/docs/shift-register.md +++ b/docs/shift-register.md @@ -71,7 +71,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/spark-io.md b/docs/spark-io.md index 3ef515f5e..302ebe7f7 100644 --- a/docs/spark-io.md +++ b/docs/spark-io.md @@ -99,7 +99,7 @@ Ensure your host computer (where you're running your Node application) and the S ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-driver.md b/docs/stepper-driver.md index 3982571ae..e1fa4cc1b 100644 --- a/docs/stepper-driver.md +++ b/docs/stepper-driver.md @@ -92,7 +92,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-four_wire.md b/docs/stepper-four_wire.md index 3d50e14f3..a708cfed1 100644 --- a/docs/stepper-four_wire.md +++ b/docs/stepper-four_wire.md @@ -85,7 +85,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/stepper-sweep.md b/docs/stepper-sweep.md index 112d9b3b1..f860662aa 100644 --- a/docs/stepper-sweep.md +++ b/docs/stepper-sweep.md @@ -56,7 +56,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch-magnetic-door.md b/docs/switch-magnetic-door.md index 7d1620bfd..4d24a43eb 100644 --- a/docs/switch-magnetic-door.md +++ b/docs/switch-magnetic-door.md @@ -60,7 +60,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch-tilt-SW_200D.md b/docs/switch-tilt-SW_200D.md index 24c467102..ee1081281 100644 --- a/docs/switch-tilt-SW_200D.md +++ b/docs/switch-tilt-SW_200D.md @@ -65,7 +65,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/switch.md b/docs/switch.md index a6012d470..ced6feef9 100644 --- a/docs/switch.md +++ b/docs/switch.md @@ -45,7 +45,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-BMP180.md b/docs/temperature-BMP180.md index 4acfc835d..4ff2a9439 100644 --- a/docs/temperature-BMP180.md +++ b/docs/temperature-BMP180.md @@ -84,7 +84,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp180.fzz](breadboard/multi-bmp180.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT11_I2C_NANO_BACKPACK.md b/docs/temperature-DHT11_I2C_NANO_BACKPACK.md index d488a169f..4c1eb0108 100644 --- a/docs/temperature-DHT11_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT11_I2C_NANO_BACKPACK.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT21_I2C_NANO_BACKPACK.md b/docs/temperature-DHT21_I2C_NANO_BACKPACK.md index 752a906ea..2fc6c53e8 100644 --- a/docs/temperature-DHT21_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT21_I2C_NANO_BACKPACK.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-DHT22_I2C_NANO_BACKPACK.md b/docs/temperature-DHT22_I2C_NANO_BACKPACK.md index 1afdac4ca..24e9ab39a 100644 --- a/docs/temperature-DHT22_I2C_NANO_BACKPACK.md +++ b/docs/temperature-DHT22_I2C_NANO_BACKPACK.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-HIH6130.md b/docs/temperature-HIH6130.md index 0407b5134..8c9f0f88f 100644 --- a/docs/temperature-HIH6130.md +++ b/docs/temperature-HIH6130.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-MCP9808.md b/docs/temperature-MCP9808.md index c4c4b3bd3..71ef34b60 100644 --- a/docs/temperature-MCP9808.md +++ b/docs/temperature-MCP9808.md @@ -79,7 +79,7 @@ Fritzing diagram: [docs/breadboard/temperature-MCP9808-tessel.fzz](breadboard/te ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-MS5611.md b/docs/temperature-MS5611.md index 28d994318..8c00f874e 100644 --- a/docs/temperature-MS5611.md +++ b/docs/temperature-MS5611.md @@ -63,7 +63,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-SI7020.md b/docs/temperature-SI7020.md index b17e79abb..f6961ffb8 100644 --- a/docs/temperature-SI7020.md +++ b/docs/temperature-SI7020.md @@ -85,7 +85,7 @@ Fritzing diagram: [docs/breadboard/temperature-SI7020-uno.fzz](breadboard/temper ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-SI7021.md b/docs/temperature-SI7021.md index cb8da3937..41c3e381f 100644 --- a/docs/temperature-SI7021.md +++ b/docs/temperature-SI7021.md @@ -85,7 +85,7 @@ Fritzing diagram: [docs/breadboard/multi-SI7021-uno.fzz](breadboard/multi-SI7021 ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-TH02.md b/docs/temperature-TH02.md index 8fe907b06..4f7667e33 100644 --- a/docs/temperature-TH02.md +++ b/docs/temperature-TH02.md @@ -58,7 +58,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-bmp085.md b/docs/temperature-bmp085.md index c0a8ba884..f68b4b8fb 100644 --- a/docs/temperature-bmp085.md +++ b/docs/temperature-bmp085.md @@ -81,7 +81,7 @@ Fritzing diagram: [docs/breadboard/multi-bmp085.fzz](breadboard/multi-bmp085.fzz ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-ds18b20.md b/docs/temperature-ds18b20.md index 0b29668e6..9ff3881dc 100644 --- a/docs/temperature-ds18b20.md +++ b/docs/temperature-ds18b20.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-dual-ds18b20.md b/docs/temperature-dual-ds18b20.md index 439104163..f30ca06f1 100644 --- a/docs/temperature-dual-ds18b20.md +++ b/docs/temperature-dual-ds18b20.md @@ -76,7 +76,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-htu21d.md b/docs/temperature-htu21d.md index 71bf0fff4..278f4ed8f 100644 --- a/docs/temperature-htu21d.md +++ b/docs/temperature-htu21d.md @@ -72,7 +72,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-lm335.md b/docs/temperature-lm335.md index 93ca37a6f..400967178 100644 --- a/docs/temperature-lm335.md +++ b/docs/temperature-lm335.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-lm35.md b/docs/temperature-lm35.md index 91e554dd8..df877028c 100644 --- a/docs/temperature-lm35.md +++ b/docs/temperature-lm35.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-max31850k.md b/docs/temperature-max31850k.md index b728cade5..384544088 100644 --- a/docs/temperature-max31850k.md +++ b/docs/temperature-max31850k.md @@ -69,7 +69,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpl115a2.md b/docs/temperature-mpl115a2.md index 892fe8315..88a3b1ef9 100644 --- a/docs/temperature-mpl115a2.md +++ b/docs/temperature-mpl115a2.md @@ -73,7 +73,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpl3115a2.md b/docs/temperature-mpl3115a2.md index 5e67beb47..b7e45f0e9 100644 --- a/docs/temperature-mpl3115a2.md +++ b/docs/temperature-mpl3115a2.md @@ -75,7 +75,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-mpu6050.md b/docs/temperature-mpu6050.md index c993ee123..deb6e45b1 100644 --- a/docs/temperature-mpu6050.md +++ b/docs/temperature-mpu6050.md @@ -67,7 +67,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-sht31d.md b/docs/temperature-sht31d.md index 82e1de484..b42a500e1 100644 --- a/docs/temperature-sht31d.md +++ b/docs/temperature-sht31d.md @@ -67,7 +67,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-tmp102.md b/docs/temperature-tmp102.md index aa011c30a..35de2c880 100644 --- a/docs/temperature-tmp102.md +++ b/docs/temperature-tmp102.md @@ -67,7 +67,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/temperature-tmp36.md b/docs/temperature-tmp36.md index cc15398c3..0ee0ab851 100644 --- a/docs/temperature-tmp36.md +++ b/docs/temperature-tmp36.md @@ -68,7 +68,7 @@ board.on("ready", () => { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-accelerometer.md b/docs/tinkerkit-accelerometer.md index c8a772974..bd8e23cfa 100644 --- a/docs/tinkerkit-accelerometer.md +++ b/docs/tinkerkit-accelerometer.md @@ -78,7 +78,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-blink.md b/docs/tinkerkit-blink.md index e5a76087c..951735268 100644 --- a/docs/tinkerkit-blink.md +++ b/docs/tinkerkit-blink.md @@ -56,7 +56,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-button.md b/docs/tinkerkit-button.md index 3cfccd2f7..8e8378544 100644 --- a/docs/tinkerkit-button.md +++ b/docs/tinkerkit-button.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-combo.md b/docs/tinkerkit-combo.md index 4dda1ae53..90e634b0d 100644 --- a/docs/tinkerkit-combo.md +++ b/docs/tinkerkit-combo.md @@ -70,7 +70,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-continuous-servo.md b/docs/tinkerkit-continuous-servo.md index 83efc49be..bae1eec2b 100644 --- a/docs/tinkerkit-continuous-servo.md +++ b/docs/tinkerkit-continuous-servo.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-gyroscope.md b/docs/tinkerkit-gyroscope.md index 415897d58..3b371f4fe 100644 --- a/docs/tinkerkit-gyroscope.md +++ b/docs/tinkerkit-gyroscope.md @@ -51,7 +51,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-joystick.md b/docs/tinkerkit-joystick.md index 7a7fc729d..7d6c73cd1 100644 --- a/docs/tinkerkit-joystick.md +++ b/docs/tinkerkit-joystick.md @@ -57,7 +57,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-linear-pot.md b/docs/tinkerkit-linear-pot.md index 32e0b6928..4dbf4517d 100644 --- a/docs/tinkerkit-linear-pot.md +++ b/docs/tinkerkit-linear-pot.md @@ -58,7 +58,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-rotary.md b/docs/tinkerkit-rotary.md index 9c7b6a924..12824efbb 100644 --- a/docs/tinkerkit-rotary.md +++ b/docs/tinkerkit-rotary.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-thermistor.md b/docs/tinkerkit-thermistor.md index c62471d46..a4ff879b9 100644 --- a/docs/tinkerkit-thermistor.md +++ b/docs/tinkerkit-thermistor.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-tilt.md b/docs/tinkerkit-tilt.md index 8e5875d23..1fd4b788b 100644 --- a/docs/tinkerkit-tilt.md +++ b/docs/tinkerkit-tilt.md @@ -62,7 +62,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/tinkerkit-touch.md b/docs/tinkerkit-touch.md index ed29ed576..def2c6d58 100644 --- a/docs/tinkerkit-touch.md +++ b/docs/tinkerkit-touch.md @@ -65,7 +65,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/toggle-switch.md b/docs/toggle-switch.md index 3ad24b669..adba6619d 100644 --- a/docs/toggle-switch.md +++ b/docs/toggle-switch.md @@ -75,7 +75,7 @@ board.on("ready", function() { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. diff --git a/docs/whisker.md b/docs/whisker.md index f392f4c82..e92e92aee 100644 --- a/docs/whisker.md +++ b/docs/whisker.md @@ -149,7 +149,7 @@ new five.Boards(["control", "nodebot"]).on("ready", function(boards) { ## License Copyright (c) 2012-2014 Rick Waldron Licensed under the MIT license. -Copyright (c) 2015-2021 The Johnny-Five Contributors +Copyright (c) 2015-2022 The Johnny-Five Contributors Licensed under the MIT license. From f85370233593922d8972f35eaa7d02565a989784 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Thu, 29 Sep 2022 13:14:06 -0500 Subject: [PATCH 23/33] set fallback timeout to zero to use setInterval fallback immediately - update tests --- lib/animation.js | 5 ++++- test/servo.js | 21 ++++++++++++++------- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/lib/animation.js b/lib/animation.js index 6366f6007..bf3767221 100644 --- a/lib/animation.js +++ b/lib/animation.js @@ -14,7 +14,10 @@ let temporal; * time (in ms) is reached we will fall back to setInterval which is less * accurate (by nanoseconds) but perfectly serviceable. **/ -let temporalTTL = 5000; +// Code.org: Temporal is too CPU-intensive for our purposes. We set this +// value to zero so that Animation switches to a setInterval fallback mode +// immediately, which works better for our purposes. +let temporalTTL = 0; /** * Animation diff --git a/test/servo.js b/test/servo.js index 0a6fedd12..88bd71797 100644 --- a/test/servo.js +++ b/test/servo.js @@ -600,7 +600,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1000); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1000); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", () => { @@ -670,7 +671,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", () => { @@ -740,7 +742,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", () => { @@ -810,7 +813,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1000); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1000); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", () => { @@ -882,7 +886,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1000); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1000); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); this.servo.on("move:complete", () => { @@ -911,7 +916,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); test.done(); @@ -937,7 +943,8 @@ exports["Servo"] = { test.equal(state.animation.scaledDuration, 1500); test.equal(state.animation.startTime, 0); test.equal(state.animation.endTime, 1500); - test.equal(state.animation.fallBackTime, 5000); + // Code.org: Use animation fallback immediately + test.equal(state.animation.fallBackTime, 0); test.equal(state.animation.frameCount, 0); test.equal(state.animation.normalizedKeyFrames[0][1].value, 30); From 2cf224341a05d4cb9ff4aa86f50224b5419e1326 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Tue, 4 Oct 2022 10:55:06 -0500 Subject: [PATCH 24/33] updated package version to 2.1.0-cdo.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e80313277..f5b057888 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "0.11.1-cdo.2", + "version": "2.1.0-cdo.2", "homepage": "https://johnny-five.io", "author": "Rick Waldron ", "keywords": [ From 752b499ec7193cc939be231dffc8431e8712d3d9 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 5 Oct 2022 13:48:26 -0500 Subject: [PATCH 25/33] update to 2.1.0-cdo.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f5b057888..88c72ea0a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "2.1.0-cdo.2", + "version": "2.1.0-cdo.0", "homepage": "https://johnny-five.io", "author": "Rick Waldron ", "keywords": [ From 0e9a2ec2e58860fb7c6c9deda8b360b2eb7acbe9 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Thu, 13 Oct 2022 10:29:46 -0500 Subject: [PATCH 26/33] add rgb pulse function --- lib/led/rgb.js | 82 +++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 71 insertions(+), 11 deletions(-) diff --git a/lib/led/rgb.js b/lib/led/rgb.js index aafb2fb35..bccfd1365 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -172,12 +172,22 @@ class RGB { intensity: 100, isAnode: options.isAnode || false, interval: null, + // isRunning is used to tracke whether an Animation is in progress + // Copying pattern used in led.js. + isRunning: false, // red, green, and blue store the raw color set via .color() // values takes state into account, such as on/off and intensity values: { red: 255, green: 255, blue: 255, + }, + // state.prev records the last color set using color(), + // and is used to determine the new color when calling on() or pulse() + prev: { + red: 255, + green: 255, + blue: 255 } }; @@ -191,7 +201,7 @@ class RGB { }, isRunning: { get() { - return !!state.interval; + return !!state.interval || state.isRunning; } }, isAnode: { @@ -259,6 +269,9 @@ class RGB { this.update(update); + // Store colors to state.prev for future use by on() or pulse() + state.prev = update; + return this; } @@ -269,15 +282,7 @@ class RGB { // If it's not already on, we set them to the previous color if (!this.isOn) { /* istanbul ignore next */ - colors = state.prev || { - red: 255, - green: 255, - blue: 255 - }; - - state.prev = null; - - this.update(colors); + this.update(state.prev); } return this; @@ -286,7 +291,7 @@ class RGB { off() { const state = priv.get(this); - // If it's already off, do nothing so the pervious state stays intact + // If it's already off, do nothing so the previous state stays intact /* istanbul ignore else */ if (this.isOn) { state.prev = RGB.colors.reduce((current, color) => (current[color] = state[color], current), {}); @@ -331,6 +336,61 @@ class RGB { return this[this.isOn ? "off" : "on"](); } + /** + * pulse Fade the RGB in and out in a loop with specified time + * @param {number} duration Time in ms that a fade in/out will elapse + * @return {RGB} + * + * - or - + * + * @param {Object} val An Animation() segment config object + */ + + // rgb pulse function similar to led pulse function + // uses state.prev for the current color + pulse(duration, callback) { + const state = priv.get(this); + var currentColor = state.prev; + this.stop(); + + const options = { + duration: typeof duration === "number" ? duration : 1000, + keyFrames: [ + { + color: currentColor, + intensity: 0 + }, + { + color: currentColor, + intensity: 100 + } + ], + metronomic: true, + loop: true, + easing: "inOutSine", + onloop() { + /* istanbul ignore else */ + if (typeof callback === "function") { + callback(); + } + } + }; + + if (typeof duration === "object") { + Object.assign(options, duration); + } + + if (typeof duration === "function") { + callback = duration; + } + + state.isRunning = true; + + state.animation = state.animation || new Animation(this); + state.animation.enqueue(options); + return this; + } + stop() { const state = priv.get(this); From b32aa6e0f313bc9cd219c27bab3e5e3ae0e9e632 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Thu, 13 Oct 2022 10:51:40 -0500 Subject: [PATCH 27/33] modified tweenedValue function - keys assignment --- lib/animation.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/animation.js b/lib/animation.js index 6366f6007..1ffb1c5fd 100644 --- a/lib/animation.js +++ b/lib/animation.js @@ -375,7 +375,13 @@ class Animation extends Emitter { if (typeof right.value === "number" && typeof left.value === "number") { calcValue = (right.value - left.value) * tween.progress + left.value; } else { - calcValue = this.target[Animation.keys].reduce((accum, key) => { + // This is an Object + let keys = Object.keys(right.value); + // For example, right = right = { easing: "linear", value: {red: 255, green: 153, blue: 153}} + // keys are assigned ["red", "green", "blue"] + // Then caclValue will be assigned an object that contains the computed + // RGB values, for example: {red: 178.13635605593453, green: 106.88181363356071, blue: 106.88181363356071} + calcValue = keys.reduce((accum, key) => { accum[key] = (right.value[key] - left.value[key]) * tween.progress + left.value[key]; return accum; }, {}); From 16ad0a78ea79aad6459870a2046d77ab4ea2183e Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Thu, 13 Oct 2022 16:30:27 -0500 Subject: [PATCH 28/33] assign RGB.colors before assigning Animation.keys, updated comments, reuse Animation.keys --- lib/animation.js | 11 +++++------ lib/led/rgb.js | 5 +++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/animation.js b/lib/animation.js index 1ffb1c5fd..2e3728e8d 100644 --- a/lib/animation.js +++ b/lib/animation.js @@ -375,13 +375,12 @@ class Animation extends Emitter { if (typeof right.value === "number" && typeof left.value === "number") { calcValue = (right.value - left.value) * tween.progress + left.value; } else { - // This is an Object - let keys = Object.keys(right.value); - // For example, right = right = { easing: "linear", value: {red: 255, green: 153, blue: 153}} - // keys are assigned ["red", "green", "blue"] - // Then caclValue will be assigned an object that contains the computed + // right.value is an Object + // For example, right = { easing: "linear", value: {red: 255, green: 153, blue: 153}} + // this.target[Animation.keys] are assigned ["red", "green", "blue"] from the RGB class + // Then calcValue will be assigned an object that contains the computed // RGB values, for example: {red: 178.13635605593453, green: 106.88181363356071, blue: 106.88181363356071} - calcValue = keys.reduce((accum, key) => { + calcValue = this.target[Animation.keys].reduce((accum, key) => { accum[key] = (right.value[key] - left.value[key]) * tween.progress + left.value[key]; return accum; }, {}); diff --git a/lib/led/rgb.js b/lib/led/rgb.js index bccfd1365..db598004b 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -494,14 +494,15 @@ class RGB { } + +RGB.colors = ["red", "green", "blue"]; + /** * For multi-property animation, must define * the keys to use for tween calculation. */ RGB.prototype[Animation.keys] = RGB.colors; -RGB.colors = ["red", "green", "blue"]; - RGB.ToScaledRGB = (intensity, colors) => { const scale = intensity / 100; From bf1b44276139f2232cc5c99bda309d8a83f6781a Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Fri, 14 Oct 2022 09:42:21 -0500 Subject: [PATCH 29/33] removed unused variable --- lib/led/rgb.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/led/rgb.js b/lib/led/rgb.js index db598004b..3eb022bed 100644 --- a/lib/led/rgb.js +++ b/lib/led/rgb.js @@ -277,7 +277,6 @@ class RGB { on() { const state = priv.get(this); - let colors; // If it's not already on, we set them to the previous color if (!this.isOn) { From fc5421c89fa34ff604bbeba16967594c56951507 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Fri, 14 Oct 2022 14:12:49 -0500 Subject: [PATCH 30/33] updated version to 2.1.0-cdo.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 88c72ea0a..7e72496ef 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@code-dot-org/johnny-five", "description": "Code.org fork of rwaldron/johnny-five: The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, pcDuino3, Raspberry Pi, Particle/Spark Core & Photon, Tessel 2, TI Launchpad and more!", - "version": "2.1.0-cdo.0", + "version": "2.1.0-cdo.1", "homepage": "https://johnny-five.io", "author": "Rick Waldron ", "keywords": [ From 2241d8e2e3d761a220d1fff46222999b5223349f Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:26:08 -0500 Subject: [PATCH 31/33] round scaled sensor values --- lib/sensor.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/sensor.js b/lib/sensor.js index a0d5be5fb..482bbf690 100644 --- a/lib/sensor.js +++ b/lib/sensor.js @@ -195,8 +195,7 @@ class Sensor extends Withinable { }, scaled: { get() { - let mapped; - let constrain; + let mapped, constrain, rounded; if (state.scale && raw !== null) { if (options.type === "digital") { @@ -206,7 +205,9 @@ class Sensor extends Withinable { } mapped = Fn.fmap(raw, this.range[0], this.range[1], state.scale[0], state.scale[1]); - constrain = Fn.constrain(mapped, state.scale[0], state.scale[1]); + // Code.org: round scaled sensor values + rounded = Math.round(mapped); + constrain = Fn.constrain(rounded, state.scale[0], state.scale[1]); return constrain; } From 385be4e28922daa9bc6794f9137617da5091ddd3 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 19 Oct 2022 15:19:19 -0500 Subject: [PATCH 32/33] round inline --- lib/sensor.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/sensor.js b/lib/sensor.js index 482bbf690..c5686d03e 100644 --- a/lib/sensor.js +++ b/lib/sensor.js @@ -195,7 +195,7 @@ class Sensor extends Withinable { }, scaled: { get() { - let mapped, constrain, rounded; + let mapped, constrain; if (state.scale && raw !== null) { if (options.type === "digital") { @@ -206,8 +206,7 @@ class Sensor extends Withinable { mapped = Fn.fmap(raw, this.range[0], this.range[1], state.scale[0], state.scale[1]); // Code.org: round scaled sensor values - rounded = Math.round(mapped); - constrain = Fn.constrain(rounded, state.scale[0], state.scale[1]); + constrain = Fn.constrain(Math.round(mapped), state.scale[0], state.scale[1]); return constrain; } From dc9489b3ca49f20edece5bd29ce05426e4312566 Mon Sep 17 00:00:00 2001 From: fisher-alice <107423305+fisher-alice@users.noreply.github.com> Date: Wed, 19 Oct 2022 21:07:54 -0500 Subject: [PATCH 33/33] fix sensor.scale test to rounded value --- test/sensor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/sensor.js b/test/sensor.js index d1d46e328..27af76a31 100644 --- a/test/sensor.js +++ b/test/sensor.js @@ -1111,8 +1111,9 @@ exports["Sensor - Analog"] = { // Ensure sensors may return float values this.sensor.scale([0, 102.3]); + // Code.org: Scaled sensor values are rounded this.sensor.once("change", function() { - test.equal(this.value, 1.2000000476837158); + test.equal(this.value, 1); }); callback(12); this.clock.tick(25);