├── .gitignore ├── .idea └── vcs.xml ├── DocImages ├── car01.jpg ├── car02.jpg ├── car03.jpg ├── car04.jpg ├── car05.jpg ├── car06.jpg ├── car07.jpg └── model.jpg ├── LICENSE ├── PyCode ├── Modules │ ├── LCDModule.py │ ├── RGBLightModule.py │ ├── ServoModule.py │ ├── WheelModule.py │ └── __init__.py ├── QQCar.py ├── Sensors │ ├── BeeSensor.py │ ├── InfraredSensor.py │ ├── LightSensor.py │ ├── TraceSensor.py │ ├── UltrasonicSensor.py │ └── __init__.py └── __init__.py ├── README.md ├── Web.py ├── start.sh ├── static ├── css │ ├── play.css │ └── resetcss.css ├── images │ ├── Arrow Down@2x.png │ ├── Arrow Down@3x.png │ ├── Arrow Left@2x.png │ ├── Arrow Left@3x.png │ ├── Arrow Right@2x.png │ ├── Arrow Right@3x.png │ ├── Arrow Up@2x.png │ ├── Arrow Up@3x.png │ ├── autocross-off@2x.png │ ├── autocross-off@3x.png │ ├── autocross-on@2x.png │ ├── autocross-on@3x.png │ ├── camera-off@2x.png │ ├── camera-off@3x.png │ ├── camera-on@2x.png │ ├── camera-on@3x.png │ ├── cruise-off@2x.png │ ├── cruise-off@3x.png │ ├── cruise-on@2x.png │ ├── cruise-on@3x.png │ ├── light-off@2x.png │ ├── light-off@3x.png │ ├── light-on@2x.png │ ├── light-on@3x.png │ ├── sdown@2x.png │ ├── sdown@3x.png │ ├── sleft@2x.png │ ├── sleft@3x.png │ ├── sright@2x.png │ ├── sright@3x.png │ ├── sup@2x.png │ ├── sup@3x.png │ ├── voice-off@2x.png │ ├── voice-off@3x.png │ ├── voice-on@2x.png │ └── voice-on@3x.png └── js │ └── jquery.min.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DocImages/car01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car01.jpg -------------------------------------------------------------------------------- /DocImages/car02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car02.jpg -------------------------------------------------------------------------------- /DocImages/car03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car03.jpg -------------------------------------------------------------------------------- /DocImages/car04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car04.jpg -------------------------------------------------------------------------------- /DocImages/car05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car05.jpg -------------------------------------------------------------------------------- /DocImages/car06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car06.jpg -------------------------------------------------------------------------------- /DocImages/car07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/car07.jpg -------------------------------------------------------------------------------- /DocImages/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/DocImages/model.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/LICENSE -------------------------------------------------------------------------------- /PyCode/Modules/LCDModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Modules/LCDModule.py -------------------------------------------------------------------------------- /PyCode/Modules/RGBLightModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Modules/RGBLightModule.py -------------------------------------------------------------------------------- /PyCode/Modules/ServoModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Modules/ServoModule.py -------------------------------------------------------------------------------- /PyCode/Modules/WheelModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Modules/WheelModule.py -------------------------------------------------------------------------------- /PyCode/Modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyCode/QQCar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/QQCar.py -------------------------------------------------------------------------------- /PyCode/Sensors/BeeSensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Sensors/BeeSensor.py -------------------------------------------------------------------------------- /PyCode/Sensors/InfraredSensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Sensors/InfraredSensor.py -------------------------------------------------------------------------------- /PyCode/Sensors/LightSensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Sensors/LightSensor.py -------------------------------------------------------------------------------- /PyCode/Sensors/TraceSensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Sensors/TraceSensor.py -------------------------------------------------------------------------------- /PyCode/Sensors/UltrasonicSensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/PyCode/Sensors/UltrasonicSensor.py -------------------------------------------------------------------------------- /PyCode/Sensors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyCode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/README.md -------------------------------------------------------------------------------- /Web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/Web.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/start.sh -------------------------------------------------------------------------------- /static/css/play.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/css/play.css -------------------------------------------------------------------------------- /static/css/resetcss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/css/resetcss.css -------------------------------------------------------------------------------- /static/images/Arrow Down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Down@2x.png -------------------------------------------------------------------------------- /static/images/Arrow Down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Down@3x.png -------------------------------------------------------------------------------- /static/images/Arrow Left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Left@2x.png -------------------------------------------------------------------------------- /static/images/Arrow Left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Left@3x.png -------------------------------------------------------------------------------- /static/images/Arrow Right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Right@2x.png -------------------------------------------------------------------------------- /static/images/Arrow Right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Right@3x.png -------------------------------------------------------------------------------- /static/images/Arrow Up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Up@2x.png -------------------------------------------------------------------------------- /static/images/Arrow Up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/Arrow Up@3x.png -------------------------------------------------------------------------------- /static/images/autocross-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/autocross-off@2x.png -------------------------------------------------------------------------------- /static/images/autocross-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/autocross-off@3x.png -------------------------------------------------------------------------------- /static/images/autocross-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/autocross-on@2x.png -------------------------------------------------------------------------------- /static/images/autocross-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/autocross-on@3x.png -------------------------------------------------------------------------------- /static/images/camera-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/camera-off@2x.png -------------------------------------------------------------------------------- /static/images/camera-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/camera-off@3x.png -------------------------------------------------------------------------------- /static/images/camera-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/camera-on@2x.png -------------------------------------------------------------------------------- /static/images/camera-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/camera-on@3x.png -------------------------------------------------------------------------------- /static/images/cruise-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/cruise-off@2x.png -------------------------------------------------------------------------------- /static/images/cruise-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/cruise-off@3x.png -------------------------------------------------------------------------------- /static/images/cruise-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/cruise-on@2x.png -------------------------------------------------------------------------------- /static/images/cruise-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/cruise-on@3x.png -------------------------------------------------------------------------------- /static/images/light-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/light-off@2x.png -------------------------------------------------------------------------------- /static/images/light-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/light-off@3x.png -------------------------------------------------------------------------------- /static/images/light-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/light-on@2x.png -------------------------------------------------------------------------------- /static/images/light-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/light-on@3x.png -------------------------------------------------------------------------------- /static/images/sdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sdown@2x.png -------------------------------------------------------------------------------- /static/images/sdown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sdown@3x.png -------------------------------------------------------------------------------- /static/images/sleft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sleft@2x.png -------------------------------------------------------------------------------- /static/images/sleft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sleft@3x.png -------------------------------------------------------------------------------- /static/images/sright@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sright@2x.png -------------------------------------------------------------------------------- /static/images/sright@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sright@3x.png -------------------------------------------------------------------------------- /static/images/sup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sup@2x.png -------------------------------------------------------------------------------- /static/images/sup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/sup@3x.png -------------------------------------------------------------------------------- /static/images/voice-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/voice-off@2x.png -------------------------------------------------------------------------------- /static/images/voice-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/voice-off@3x.png -------------------------------------------------------------------------------- /static/images/voice-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/voice-on@2x.png -------------------------------------------------------------------------------- /static/images/voice-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/images/voice-on@3x.png -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yueritian/RaspberryPi_SmartCarV1/HEAD/templates/index.html --------------------------------------------------------------------------------