Software/Python/Examples/Motor_Turn.py | 0 Software/Python/Examples/Read_Info.py | 0 Software/Python/Examples/Remote_Control.py | 0 Software/Python/Examples/Servo.py | 0 Software/Python/Examples/easy_Blinkers.py | 0 Software/Python/Examples/easy_Button.py | 1 + Software/Python/Examples/easy_Buzzer.py | 1 + Software/Python/Examples/easy_DexEyes.py | 0 Software/Python/Examples/easy_Distance_Sensor.py | 2 +- Software/Python/Examples/easy_LED.py | 1 + Software/Python/Examples/easy_Light_Sensor.py | 0 Software/Python/Examples/easy_Motors.py | 0 Software/Python/Examples/gps_reading.py | 1 + Software/Python/I2C_mutex.py | 27 - Software/Python/easygopigo3.py | 2477 ++++++--------------------------------- Software/Python/easysensors.py | 1929 ++++++++++++++++++++++++++++++ Software/Python/gopigo3.py | 19 +- Software/Python/hardware_test.py | 0 Software/Python/setup.py | 4 +- Software/Python/tests/test_distance_sensor.py | 25 + Software/Python/tests/test_distance_sensor_2.py | 25 + Software/Python/tests/test_heavy_mutex.py | 25 + Software/Python/tests/test_heavy_mutex_2.py | 25 + Software/Python/tests/test_mutex.py | 38 + Software/Python/tests/test_sensor_mutex.py | 44 + Software/Scratch/Local_Scratch_Start.desktop | 12 + Software/Scratch/new.sb | Bin 0 -> 53850 bytes Software/Scratch/start_local_scratch.sh | 11 + Software/gopigo3_power.py | 0 docs/source/api-advanced.rst | 21 +- docs/source/api-basic.rst | 204 ---- docs/source/api-basic/deprecated.rst | 48 + docs/source/api-basic/easygopigo3.rst | 34 + docs/source/api-basic/index.rst | 18 + docs/source/api-basic/sensors.rst | 133 +++ docs/source/api-basic/structure.rst | 258 ++++ docs/source/conf.py | 70 +- docs/source/devguide.rst | 20 +- docs/source/faq.rst | 5 - docs/source/index.rst | 2 +- docs/source/quickstart.rst | 40 +- docs/source/tutorials-basic/button.rst | 4 +- docs/source/tutorials-basic/buzzer.rst | 12 +- docs/source/tutorials-basic/distance_sensor.rst | 10 +- docs/source/tutorials-basic/index.rst | 2 +- docs/source/tutorials-basic/led.rst | 12 +- docs/source/tutorials-basic/light_sensor.rst | 4 +- environment.yml | 9 + readthedocs.yml | 2 + 155 files changed, 7912 insertions(+), 2646 deletions(-) create mode 100644 Firmware/GoPiGo3_Firmware_1.0.0.bin rename Firmware/{ => archives}/GoPiGo3_Firmware_0.3.4.bin (100%) create mode 100644 Install/install_scratch.sh create mode 100644 Projects/MouseControl/README.ipynb create mode 100644 Projects/MouseControl/mouse_control_robot.ipynb create mode 100644 Projects/ObjectAvoidanceRobot/README.md create mode 100644 Projects/ObjectAvoidanceRobot/object_avoidance_robot.py create mode 100644 Projects/RemoteCameraRobot/camerarobot.service create mode 100644 Projects/RemoteCameraRobot/install_startup.sh create mode 100644 Software/C/CMakeLists.txt rename Software/C/Examples/{grove_led.c => grove_led.cpp} (92%) rename Software/C/Examples/{i2c.c => i2c.cpp} (94%) rename Software/C/Examples/{info.c => info.cpp} (92%) rename Software/C/Examples/{leds.c => leds.cpp} (94%) rename Software/C/Examples/{motors.c => motors.cpp} (94%) rename Software/C/Examples/{sensors.c => sensors.cpp} (93%) create mode 100644 Software/C/gopigo3_cppConfig.cmake.in create mode 100644 Software/C/package.xml create mode 100644 Software/Go/readme.md create mode 100644 Software/NodeJS/.babelrc create mode 100644 Software/NodeJS/.editorconfig create mode 100644 Software/NodeJS/.eslintignore create mode 100644 Software/NodeJS/.eslintrc create mode 100644 Software/NodeJS/.gitignore create mode 100644 Software/NodeJS/.travis.yml create mode 100644 Software/NodeJS/CHANGELOG.md create mode 100644 Software/NodeJS/CONTRIBUTING.md create mode 100644 Software/NodeJS/LICENSE.md create mode 100644 Software/NodeJS/README.md create mode 100644 Software/NodeJS/calibrate/lineSensor.js create mode 100644 Software/NodeJS/examples/EasyMotors.js create mode 100644 Software/NodeJS/examples/Grove.js create mode 100644 Software/NodeJS/examples/GroveBuzzer.js create mode 100644 Software/NodeJS/examples/Grove_I2C.js create mode 100644 Software/NodeJS/examples/custom/buzzer.js create mode 100644 Software/NodeJS/examples/custom/dht.js create mode 100644 Software/NodeJS/examples/custom/easyLed.js create mode 100644 Software/NodeJS/examples/custom/readInfo.js create mode 100644 Software/NodeJS/examples/custom/salut.js create mode 100644 Software/NodeJS/examples/custom/ultrasonic.js create mode 100644 Software/NodeJS/install.sh create mode 100644 Software/NodeJS/package.json create mode 100644 Software/NodeJS/src/components/analogSensor.js create mode 100644 Software/NodeJS/src/components/buttonSensor.js create mode 100644 Software/NodeJS/src/components/buzzer.js create mode 100644 Software/NodeJS/src/components/dhtSensor.js create mode 100644 Software/NodeJS/src/components/digitalSensor.js create mode 100644 Software/NodeJS/src/components/distanceSensor.js create mode 100644 Software/NodeJS/src/components/led.js create mode 100644 Software/NodeJS/src/components/lightSensor.js create mode 100644 Software/NodeJS/src/components/lineFollower.js create mode 100644 Software/NodeJS/src/components/lineFollower/blackLine.txt create mode 100644 Software/NodeJS/src/components/lineFollower/lineFollow.js create mode 100644 Software/NodeJS/src/components/lineFollower/lineThresholdSet.js create mode 100644 Software/NodeJS/src/components/lineFollower/rangeLine.txt create mode 100644 Software/NodeJS/src/components/lineFollower/whiteLine.txt create mode 100644 Software/NodeJS/src/components/loudnessSensor.js create mode 100644 Software/NodeJS/src/components/motionSensor.js create mode 100644 Software/NodeJS/src/components/remote.js create mode 100644 Software/NodeJS/src/components/sensor.js create mode 100644 Software/NodeJS/src/components/servo.js create mode 100644 Software/NodeJS/src/components/soundSensor.js create mode 100644 Software/NodeJS/src/components/ultraSonicSensor.js create mode 100644 Software/NodeJS/src/easyGopigo3.js create mode 100644 Software/NodeJS/src/errors/firmwareVersionError.js create mode 100644 Software/NodeJS/src/errors/i2cError.js create mode 100644 Software/NodeJS/src/errors/sensorError.js create mode 100644 Software/NodeJS/src/errors/valueError.js create mode 100644 Software/NodeJS/src/gopigo3.js create mode 100644 Software/NodeJS/src/index.js create mode 100644 Software/NodeJS/src/utils/enumeration.js create mode 100644 Software/NodeJS/src/utils/i2cMutex.js create mode 100644 Software/NodeJS/src/utils/misc.js create mode 100644 Software/NodeJS/test/index.js create mode 100644 Software/NodeJS/uninstall.sh mode change 100644 => 100755 Software/Python/Examples/Control_Panel/control_panel_gui_3.py mode change 100644 => 100755 Software/Python/Examples/Grove.py mode change 100644 => 100755 Software/Python/Examples/Grove_Buzzer.py mode change 100644 => 100755 Software/Python/Examples/Grove_I2C.py mode change 100644 => 100755 Software/Python/Examples/Grove_IR.py mode change 100644 => 100755 Software/Python/Examples/Grove_LED.py mode change 100644 => 100755 Software/Python/Examples/Grove_Light_Sensor.py mode change 100644 => 100755 Software/Python/Examples/Grove_US.py mode change 100644 => 100755 Software/Python/Examples/Grove_US2.py mode change 100644 => 100755 Software/Python/Examples/LED.py mode change 100644 => 100755 Software/Python/Examples/Line_Sensor/basic_example.py mode change 100644 => 100755 Software/Python/Examples/Line_Sensor/line_follower-basic_example.py mode change 100644 => 100755 Software/Python/Examples/Line_Sensor/line_sensor.py mode change 100644 => 100755 Software/Python/Examples/Motor.py mode change 100644 => 100755 Software/Python/Examples/Motor_Encoder.py mode change 100644 => 100755 Software/Python/Examples/Motor_Follow.py mode change 100644 => 100755 Software/Python/Examples/Motor_Position.py mode change 100644 => 100755 Software/Python/Examples/Motor_Speed.py mode change 100644 => 100755 Software/Python/Examples/Motor_Turn.py mode change 100644 => 100755 Software/Python/Examples/Read_Info.py mode change 100644 => 100755 Software/Python/Examples/Remote_Control.py mode change 100644 => 100755 Software/Python/Examples/Servo.py mode change 100644 => 100755 Software/Python/Examples/easy_Blinkers.py mode change 100644 => 100755 Software/Python/Examples/easy_Button.py mode change 100644 => 100755 Software/Python/Examples/easy_Buzzer.py mode change 100644 => 100755 Software/Python/Examples/easy_DexEyes.py mode change 100644 => 100755 Software/Python/Examples/easy_Distance_Sensor.py mode change 100644 => 100755 Software/Python/Examples/easy_LED.py mode change 100644 => 100755 Software/Python/Examples/easy_Light_Sensor.py mode change 100644 => 100755 Software/Python/Examples/easy_Motors.py mode change 100644 => 100755 Software/Python/Examples/gps_reading.py delete mode 100644 Software/Python/I2C_mutex.py create mode 100644 Software/Python/easysensors.py mode change 100644 => 100755 Software/Python/hardware_test.py mode change 100644 => 100755 Software/Python/setup.py create mode 100644 Software/Python/tests/test_distance_sensor.py create mode 100644 Software/Python/tests/test_distance_sensor_2.py create mode 100644 Software/Python/tests/test_heavy_mutex.py create mode 100644 Software/Python/tests/test_heavy_mutex_2.py create mode 100644 Software/Python/tests/test_mutex.py create mode 100644 Software/Python/tests/test_sensor_mutex.py create mode 100644 Software/Scratch/Local_Scratch_Start.desktop create mode 100644 Software/Scratch/new.sb create mode 100644 Software/Scratch/start_local_scratch.sh mode change 100644 => 100755 Software/gopigo3_power.py delete mode 100644 docs/source/api-basic.rst create mode 100644 docs/source/api-basic/deprecated.rst create mode 100644 docs/source/api-basic/easygopigo3.rst create mode 100644 docs/source/api-basic/index.rst create mode 100644 docs/source/api-basic/sensors.rst create mode 100644 docs/source/api-basic/structure.rst create mode 100644 environment.yml create mode 100644 readthedocs.yml /home/pi/Dexter/GoPiGo3/Install _____ _ | __ \ | | | | | | _____ _| |_ ___ _ __ | | | |/ _ \ \/ / __/ _ \ '__| | |__| | __/> <| || __/ | |_____/ \___/_/\_\ __\___|_| _ _ |_ _| | | | | (_) | | _ __ __| |_ _ ___| |_ _ __ _ ___ ___ | | | '_ \ / _\ | | | / __| __| '__| |/ _ \/ __| _| |_| | | | (_| | |_| \__ \ |_| | | | __/\__ \ |_____|_| |_|\__,_|\__,_|___/\__|_| |_|\___||___/ ____ ____ _ ____ _____ / ___| ___ | _ \(_)/ ___| ___|___ / | | _ / _ \| |_) | | | _ / _ \ |_ \ | |_| | (_) | __/| | |_| | (_) |__) | \____|\___/|_| |_|\____|\___/____/ Welcome to GoPiGo3 Installer. Archive: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled.zip creating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/ creating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/ creating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/ creating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/scripts/ creating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/scripts/interface/ inflating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/scripts/interface/raspberrypi2- native.cfg creating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/scripts/target/ inflating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/scripts/target/at91samdXX.cfg inflating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/files/openocd/scripts/target/swj-dp.tcl inflating: /home/pi/Dexter/GoPiGo3/Firmware/openocd/openocd_compiled/openocd SPI already enabled Uninstalling gopigo3: Successfully uninstalled gopigo3 Uninstalling gopigo3: Successfully uninstalled gopigo3 running install running bdist_egg running egg_info writing requirements to gopigo3.egg-info/requires.txt writing gopigo3.egg-info/PKG-INFO writing top-level names to gopigo3.egg-info/top_level.txt writing dependency_links to gopigo3.egg-info/dependency_links.txt reading manifest file 'gopigo3.egg-info/SOURCES.txt' writing manifest file 'gopigo3.egg-info/SOURCES.txt' installing library code to build/bdist.linux-armv7l/egg running install_lib running build_py copying gopigo3.py -> build/lib.linux-armv7l-2.7 copying easygopigo3.py -> build/lib.linux-armv7l-2.7 copying easysensors.py -> build/lib.linux-armv7l-2.7 copying Examples/easy_Buzzer.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Motor_Position.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/gps_reading.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_Buzzer.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Motor_Turn.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_LED.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_Button.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_LED.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Remote_Control.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Read_Info.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_Light_Sensor.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_Motors.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Motor_Speed.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_Distance_Sensor.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_Blinkers.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/LED.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_US2.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Motor_Encoder.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_I2C.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/__init__.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Motor.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/easy_DexEyes.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Servo.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_IR.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Motor_Follow.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_Light_Sensor.py -> build/lib.linux-armv7l-2.7/Examples copying Examples/Grove_US.py -> build/lib.linux-armv7l-2.7/Examples copying mock_package/distance_sensor.py -> build/lib.linux-armv7l-2.7/mock_package copying mock_package/__init__.py -> build/lib.linux-armv7l-2.7/mock_package copying Examples/Control_Panel/control_panel_gui_3.py -> build/lib.linux-armv7l-2.7/Examples/Control_Panel copying Examples/Control_Panel/__init__.py -> build/lib.linux-armv7l-2.7/Examples/Control_Panel copying Examples/Line_Sensor/line_follower-basic_example.py -> build/lib.linux-armv7l-2.7/Examples/Line_Sensor copying Examples/Line_Sensor/basic_example.py -> build/lib.linux-armv7l-2.7/Examples/Line_Sensor copying Examples/Line_Sensor/__init__.py -> build/lib.linux-armv7l-2.7/Examples/Line_Sensor copying Examples/Line_Sensor/line_sensor.py -> build/lib.linux-armv7l-2.7/Examples/Line_Sensor creating build/bdist.linux-armv7l/egg copying build/lib.linux-armv7l-2.7/gopigo3.py -> build/bdist.linux-armv7l/egg creating build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_Buzzer.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Motor_Position.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/gps_reading.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_Buzzer.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Motor_Turn.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_LED.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_Button.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_LED.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Remote_Control.py -> build/bdist.linux-armv7l/egg/Examples creating build/bdist.linux-armv7l/egg/Examples/Control_Panel copying build/lib.linux-armv7l-2.7/Examples/Control_Panel/control_panel_gui_3.py -> build/bdist.linux-armv7l/egg/Exa mples/Control_Panel copying build/lib.linux-armv7l-2.7/Examples/Control_Panel/__init__.py -> build/bdist.linux-armv7l/egg/Examples/Contr ol_Panel copying build/lib.linux-armv7l-2.7/Examples/Read_Info.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_Light_Sensor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_Motors.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Motor_Speed.py -> build/bdist.linux-armv7l/egg/Examples creating build/bdist.linux-armv7l/egg/Examples/Line_Sensor copying build/lib.linux-armv7l-2.7/Examples/Line_Sensor/line_follower-basic_example.py -> build/bdist.linux-armv7l/e gg/Examples/Line_Sensor copying build/lib.linux-armv7l-2.7/Examples/Line_Sensor/basic_example.py -> build/bdist.linux-armv7l/egg/Examples/Li ne_Sensor copying build/lib.linux-armv7l-2.7/Examples/Line_Sensor/__init__.py -> build/bdist.linux-armv7l/egg/Examples/Line_Se nsor copying build/lib.linux-armv7l-2.7/Examples/Line_Sensor/line_sensor.py -> build/bdist.linux-armv7l/egg/Examples/Line _Sensor copying build/lib.linux-armv7l-2.7/Examples/easy_Distance_Sensor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_Blinkers.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/LED.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_US2.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Motor_Encoder.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_I2C.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/__init__.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Motor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/easy_DexEyes.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Servo.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_IR.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Motor_Follow.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_Light_Sensor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib.linux-armv7l-2.7/Examples/Grove_US.py -> build/bdist.linux-armv7l/egg/Examples creating build/bdist.linux-armv7l/egg/mock_package copying build/lib.linux-armv7l-2.7/mock_package/distance_sensor.py -> build/bdist.linux-armv7l/egg/mock_package copying build/lib.linux-armv7l-2.7/mock_package/__init__.py -> build/bdist.linux-armv7l/egg/mock_package copying build/lib.linux-armv7l-2.7/easygopigo3.py -> build/bdist.linux-armv7l/egg copying build/lib.linux-armv7l-2.7/I2C_mutex.py -> build/bdist.linux-armv7l/egg copying build/lib.linux-armv7l-2.7/easysensors.py -> build/bdist.linux-armv7l/egg byte-compiling build/bdist.linux-armv7l/egg/gopigo3.py to gopigo3.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Buzzer.py to easy_Buzzer.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Position.py to Motor_Position.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/gps_reading.py to gps_reading.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_Buzzer.py to Grove_Buzzer.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Turn.py to Motor_Turn.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_LED.py to Grove_LED.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Button.py to easy_Button.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_LED.py to easy_LED.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Remote_Control.py to Remote_Control.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Control_Panel/control_panel_gui_3.py to control_panel_gui_3.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Control_Panel/__init__.py to __init__.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Read_Info.py to Read_Info.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Light_Sensor.py to easy_Light_Sensor.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Motors.py to easy_Motors.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Speed.py to Motor_Speed.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/line_follower-basic_example.py to line_follower-bas ic_example.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/basic_example.py to basic_example.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/__init__.py to __init__.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/line_sensor.py to line_sensor.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Distance_Sensor.py to easy_Distance_Sensor.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Blinkers.py to easy_Blinkers.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/LED.py to LED.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_US2.py to Grove_US2.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Encoder.py to Motor_Encoder.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_I2C.py to Grove_I2C.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/__init__.py to __init__.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove.py to Grove.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor.py to Motor.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_DexEyes.py to easy_DexEyes.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Servo.py to Servo.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_IR.py to Grove_IR.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Follow.py to Motor_Follow.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_Light_Sensor.py to Grove_Light_Sensor.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_US.py to Grove_US.pyc byte-compiling build/bdist.linux-armv7l/egg/mock_package/distance_sensor.py to distance_sensor.pyc byte-compiling build/bdist.linux-armv7l/egg/mock_package/__init__.py to __init__.pyc byte-compiling build/bdist.linux-armv7l/egg/easygopigo3.py to easygopigo3.pyc byte-compiling build/bdist.linux-armv7l/egg/I2C_mutex.py to I2C_mutex.pyc byte-compiling build/bdist.linux-armv7l/egg/easysensors.py to easysensors.pyc creating build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/PKG-INFO -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/SOURCES.txt -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/dependency_links.txt -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/requires.txt -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/top_level.txt -> build/bdist.linux-armv7l/egg/EGG-INFO zip_safe flag not set; analyzing archive contents... creating 'dist/gopigo3-1.2.0-py2.7.egg' and adding 'build/bdist.linux-armv7l/egg' to it removing 'build/bdist.linux-armv7l/egg' (and everything under it) Processing gopigo3-1.2.0-py2.7.egg Copying gopigo3-1.2.0-py2.7.egg to /usr/local/lib/python2.7/dist-packages Adding gopigo3 1.2.0 to easy-install.pth file Installed /usr/local/lib/python2.7/dist-packages/gopigo3-1.2.0-py2.7.egg Processing dependencies for gopigo3==1.2.0 Searching for spidev==3.0 Best match: spidev 3.0 spidev 3.0 is already the active version in easy-install.pth Using /usr/lib/python2.7/dist-packages Finished processing dependencies for gopigo3==1.2.0 running install Checking .pth file support in /usr/local/lib/python3.4/dist-packages/ /usr/bin/python3 -E -c pass TEST PASSED: /usr/local/lib/python3.4/dist-packages/ appears to support .pth files running bdist_egg running egg_info writing dependency_links to gopigo3.egg-info/dependency_links.txt writing requirements to gopigo3.egg-info/requires.txt writing gopigo3.egg-info/PKG-INFO writing top-level names to gopigo3.egg-info/top_level.txt reading manifest file 'gopigo3.egg-info/SOURCES.txt' writing manifest file 'gopigo3.egg-info/SOURCES.txt' installing library code to build/bdist.linux-armv7l/egg running install_lib running build_py copying gopigo3.py -> build/lib copying easygopigo3.py -> build/lib copying easysensors.py -> build/lib copying Examples/easy_Buzzer.py -> build/lib/Examples copying Examples/Motor_Position.py -> build/lib/Examples copying Examples/gps_reading.py -> build/lib/Examples copying Examples/Grove_Buzzer.py -> build/lib/Examples copying Examples/Motor_Turn.py -> build/lib/Examples copying Examples/Grove_LED.py -> build/lib/Examples copying Examples/easy_Button.py -> build/lib/Examples copying Examples/easy_LED.py -> build/lib/Examples copying Examples/Remote_Control.py -> build/lib/Examples copying Examples/Read_Info.py -> build/lib/Examples copying Examples/easy_Light_Sensor.py -> build/lib/Examples copying Examples/easy_Motors.py -> build/lib/Examples copying Examples/Motor_Speed.py -> build/lib/Examples copying Examples/easy_Distance_Sensor.py -> build/lib/Examples copying Examples/easy_Blinkers.py -> build/lib/Examples copying Examples/LED.py -> build/lib/Examples copying Examples/Grove_US2.py -> build/lib/Examples copying Examples/Motor_Encoder.py -> build/lib/Examples copying Examples/Grove_I2C.py -> build/lib/Examples copying Examples/__init__.py -> build/lib/Examples copying Examples/Grove.py -> build/lib/Examples copying Examples/Motor.py -> build/lib/Examples copying Examples/easy_DexEyes.py -> build/lib/Examples copying Examples/Servo.py -> build/lib/Examples copying Examples/Grove_IR.py -> build/lib/Examples copying Examples/Motor_Follow.py -> build/lib/Examples copying Examples/Grove_Light_Sensor.py -> build/lib/Examples copying Examples/Grove_US.py -> build/lib/Examples copying mock_package/distance_sensor.py -> build/lib/mock_package copying mock_package/__init__.py -> build/lib/mock_package copying Examples/Control_Panel/control_panel_gui_3.py -> build/lib/Examples/Control_Panel copying Examples/Control_Panel/__init__.py -> build/lib/Examples/Control_Panel copying Examples/Line_Sensor/line_follower-basic_example.py -> build/lib/Examples/Line_Sensor copying Examples/Line_Sensor/basic_example.py -> build/lib/Examples/Line_Sensor copying Examples/Line_Sensor/__init__.py -> build/lib/Examples/Line_Sensor copying Examples/Line_Sensor/line_sensor.py -> build/lib/Examples/Line_Sensor creating build/bdist.linux-armv7l/egg copying build/lib/gopigo3.py -> build/bdist.linux-armv7l/egg creating build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_Buzzer.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Motor_Position.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/gps_reading.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_Buzzer.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Motor_Turn.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_LED.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_Button.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_LED.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Remote_Control.py -> build/bdist.linux-armv7l/egg/Examples creating build/bdist.linux-armv7l/egg/Examples/Control_Panel copying build/lib/Examples/Control_Panel/control_panel_gui_3.py -> build/bdist.linux-armv7l/egg/Examples/Control_Pan el copying build/lib/Examples/Control_Panel/__init__.py -> build/bdist.linux-armv7l/egg/Examples/Control_Panel copying build/lib/Examples/Read_Info.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_Light_Sensor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_Motors.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Motor_Speed.py -> build/bdist.linux-armv7l/egg/Examples creating build/bdist.linux-armv7l/egg/Examples/Line_Sensor copying build/lib/Examples/Line_Sensor/line_follower-basic_example.py -> build/bdist.linux-armv7l/egg/Examples/Line_ Sensor copying build/lib/Examples/Line_Sensor/basic_example.py -> build/bdist.linux-armv7l/egg/Examples/Line_Sensor copying build/lib/Examples/Line_Sensor/__init__.py -> build/bdist.linux-armv7l/egg/Examples/Line_Sensor copying build/lib/Examples/Line_Sensor/line_sensor.py -> build/bdist.linux-armv7l/egg/Examples/Line_Sensor copying build/lib/Examples/easy_Distance_Sensor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_Blinkers.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/LED.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_US2.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Motor_Encoder.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_I2C.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/__init__.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Motor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/easy_DexEyes.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Servo.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_IR.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Motor_Follow.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_Light_Sensor.py -> build/bdist.linux-armv7l/egg/Examples copying build/lib/Examples/Grove_US.py -> build/bdist.linux-armv7l/egg/Examples creating build/bdist.linux-armv7l/egg/mock_package copying build/lib/mock_package/distance_sensor.py -> build/bdist.linux-armv7l/egg/mock_package copying build/lib/mock_package/__init__.py -> build/bdist.linux-armv7l/egg/mock_package copying build/lib/easygopigo3.py -> build/bdist.linux-armv7l/egg copying build/lib/I2C_mutex.py -> build/bdist.linux-armv7l/egg copying build/lib/easysensors.py -> build/bdist.linux-armv7l/egg byte-compiling build/bdist.linux-armv7l/egg/gopigo3.py to gopigo3.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Buzzer.py to easy_Buzzer.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Position.py to Motor_Position.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/gps_reading.py to gps_reading.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_Buzzer.py to Grove_Buzzer.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Turn.py to Motor_Turn.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_LED.py to Grove_LED.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Button.py to easy_Button.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_LED.py to easy_LED.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Remote_Control.py to Remote_Control.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Control_Panel/control_panel_gui_3.py to control_panel_gui_3.cpy thon-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Control_Panel/__init__.py to __init__.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Read_Info.py to Read_Info.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Light_Sensor.py to easy_Light_Sensor.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Motors.py to easy_Motors.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Speed.py to Motor_Speed.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/line_follower-basic_example.py to line_follower-bas ic_example.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/basic_example.py to basic_example.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/__init__.py to __init__.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Line_Sensor/line_sensor.py to line_sensor.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Distance_Sensor.py to easy_Distance_Sensor.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_Blinkers.py to easy_Blinkers.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/LED.py to LED.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_US2.py to Grove_US2.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Encoder.py to Motor_Encoder.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_I2C.py to Grove_I2C.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/__init__.py to __init__.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove.py to Grove.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor.py to Motor.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/easy_DexEyes.py to easy_DexEyes.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Servo.py to Servo.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_IR.py to Grove_IR.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Motor_Follow.py to Motor_Follow.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_Light_Sensor.py to Grove_Light_Sensor.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/Examples/Grove_US.py to Grove_US.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/mock_package/distance_sensor.py to distance_sensor.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/mock_package/__init__.py to __init__.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/easygopigo3.py to easygopigo3.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/I2C_mutex.py to I2C_mutex.cpython-34.pyc byte-compiling build/bdist.linux-armv7l/egg/easysensors.py to easysensors.cpython-34.pyc creating build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/PKG-INFO -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/SOURCES.txt -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/dependency_links.txt -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/requires.txt -> build/bdist.linux-armv7l/egg/EGG-INFO copying gopigo3.egg-info/top_level.txt -> build/bdist.linux-armv7l/egg/EGG-INFO zip_safe flag not set; analyzing archive contents... creating 'dist/gopigo3-1.2.0-py3.4.egg' and adding 'build/bdist.linux-armv7l/egg' to it removing 'build/bdist.linux-armv7l/egg' (and everything under it) Processing gopigo3-1.2.0-py3.4.egg Copying gopigo3-1.2.0-py3.4.egg to /usr/local/lib/python3.4/dist-packages Adding gopigo3 1.2.0 to easy-install.pth file Installed /usr/local/lib/python3.4/dist-packages/gopigo3-1.2.0-py3.4.egg Processing dependencies for gopigo3==1.2.0 Searching for spidev==3.0 Best match: spidev 3.0 spidev 3.0 is already the active version in easy-install.pth Using /usr/lib/python3/dist-packages Finished processing dependencies for gopigo3==1.2.0 Requirement already satisfied (use --upgrade to upgrade): curtsies in /usr/local/lib/python3.4/dist-packages Cleaning up... Requirement already satisfied (use --upgrade to upgrade): numpy in /usr/lib/python3/dist-packages Cleaning up... Downloading/unpacking python-periphery Downloading python_periphery-1.1.1-py2.py3-none-any.whl Installing collected packages: python-periphery Successfully installed python-periphery Cleaning up... Requirement already satisfied (use --upgrade to upgrade): curtsies in /usr/local/lib/python2.7/dist-packages Cleaning up... Requirement already satisfied (use --upgrade to upgrade): numpy in /usr/lib/python2.7/dist-packages Cleaning up... Downloading/unpacking python-periphery Downloading python_periphery-1.1.1-py2.py3-none-any.whl Installing collected packages: python-periphery Successfully installed python-periphery Cleaning up... Installation complete Please reboot to make settings take effect pi@dex:~/Desktop $