├── .gitignore ├── Arduino └── dfrobot │ ├── .vscode │ ├── arduino.json │ ├── c_cpp_properties.json │ └── settings.json │ └── dfrobot.ino ├── DFRobot.docx ├── DFRobotCircuit.png ├── DFRobotInside.jpg ├── DFRobotProfilePicture.jpg ├── DFRobot_markers.docx ├── DFRobot_roof.ai ├── Garage_roof.ai ├── Pi ├── ChangedConfigurationFiles │ ├── 60-i2c-tools.rules │ ├── AppleVolumes.default │ ├── config.txt │ ├── crontab.txt │ ├── default │ ├── dot_htaccess │ ├── interfaces │ ├── modules │ ├── raspi-blacklist.conf │ ├── rc.local │ ├── sudoers │ ├── watchdog │ ├── watchdog.conf │ └── wpa_supplicant.conf ├── Sources │ ├── alarm.mp3 │ ├── james.mp3 │ ├── nocomprendo.mp3 │ └── test_mqtt_hue.py ├── local_bin │ ├── communication.py │ ├── compass.py │ ├── drive │ ├── i2c.py │ ├── mjpg_streamer │ ├── own_gpio.py │ ├── own_util.py │ ├── own_watchdog.sh │ ├── personal_assistant.py │ ├── run_dfrobot.py │ ├── test_personal_assistant.py │ ├── test_speech_to_text.py │ ├── test_trigger.py │ └── test_us_sensor.py └── www │ ├── images │ ├── DFRobot.jpg │ ├── DFRobot_org.jpg │ └── DFRobot_prev.jpg │ ├── index.html │ ├── indexFpv.html │ └── indexNonFpv.html ├── SpeechToTextOnMac ├── mic.flac ├── mic.wav ├── record.py ├── testGoogle.py └── testWit.py └── dfrobot_bw.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | ~$FRobot.docx 3 | -------------------------------------------------------------------------------- /Arduino/dfrobot/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Arduino/dfrobot/.vscode/arduino.json -------------------------------------------------------------------------------- /Arduino/dfrobot/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Arduino/dfrobot/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Arduino/dfrobot/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Arduino/dfrobot/.vscode/settings.json -------------------------------------------------------------------------------- /Arduino/dfrobot/dfrobot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Arduino/dfrobot/dfrobot.ino -------------------------------------------------------------------------------- /DFRobot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/DFRobot.docx -------------------------------------------------------------------------------- /DFRobotCircuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/DFRobotCircuit.png -------------------------------------------------------------------------------- /DFRobotInside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/DFRobotInside.jpg -------------------------------------------------------------------------------- /DFRobotProfilePicture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/DFRobotProfilePicture.jpg -------------------------------------------------------------------------------- /DFRobot_markers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/DFRobot_markers.docx -------------------------------------------------------------------------------- /DFRobot_roof.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/DFRobot_roof.ai -------------------------------------------------------------------------------- /Garage_roof.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Garage_roof.ai -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/60-i2c-tools.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/60-i2c-tools.rules -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/AppleVolumes.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/AppleVolumes.default -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/config.txt -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/crontab.txt -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/default -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/dot_htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/dot_htaccess -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/interfaces -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/modules -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/raspi-blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/raspi-blacklist.conf -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/rc.local -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/sudoers -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/watchdog -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/watchdog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/watchdog.conf -------------------------------------------------------------------------------- /Pi/ChangedConfigurationFiles/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/ChangedConfigurationFiles/wpa_supplicant.conf -------------------------------------------------------------------------------- /Pi/Sources/alarm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/Sources/alarm.mp3 -------------------------------------------------------------------------------- /Pi/Sources/james.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/Sources/james.mp3 -------------------------------------------------------------------------------- /Pi/Sources/nocomprendo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/Sources/nocomprendo.mp3 -------------------------------------------------------------------------------- /Pi/Sources/test_mqtt_hue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/Sources/test_mqtt_hue.py -------------------------------------------------------------------------------- /Pi/local_bin/communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/communication.py -------------------------------------------------------------------------------- /Pi/local_bin/compass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/compass.py -------------------------------------------------------------------------------- /Pi/local_bin/drive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/drive -------------------------------------------------------------------------------- /Pi/local_bin/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/i2c.py -------------------------------------------------------------------------------- /Pi/local_bin/mjpg_streamer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/mjpg_streamer -------------------------------------------------------------------------------- /Pi/local_bin/own_gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/own_gpio.py -------------------------------------------------------------------------------- /Pi/local_bin/own_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/own_util.py -------------------------------------------------------------------------------- /Pi/local_bin/own_watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/own_watchdog.sh -------------------------------------------------------------------------------- /Pi/local_bin/personal_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/personal_assistant.py -------------------------------------------------------------------------------- /Pi/local_bin/run_dfrobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/run_dfrobot.py -------------------------------------------------------------------------------- /Pi/local_bin/test_personal_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/test_personal_assistant.py -------------------------------------------------------------------------------- /Pi/local_bin/test_speech_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/test_speech_to_text.py -------------------------------------------------------------------------------- /Pi/local_bin/test_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/test_trigger.py -------------------------------------------------------------------------------- /Pi/local_bin/test_us_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/local_bin/test_us_sensor.py -------------------------------------------------------------------------------- /Pi/www/images/DFRobot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/www/images/DFRobot.jpg -------------------------------------------------------------------------------- /Pi/www/images/DFRobot_org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/www/images/DFRobot_org.jpg -------------------------------------------------------------------------------- /Pi/www/images/DFRobot_prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/www/images/DFRobot_prev.jpg -------------------------------------------------------------------------------- /Pi/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/www/index.html -------------------------------------------------------------------------------- /Pi/www/indexFpv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/www/indexFpv.html -------------------------------------------------------------------------------- /Pi/www/indexNonFpv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/Pi/www/indexNonFpv.html -------------------------------------------------------------------------------- /SpeechToTextOnMac/mic.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/SpeechToTextOnMac/mic.flac -------------------------------------------------------------------------------- /SpeechToTextOnMac/mic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/SpeechToTextOnMac/mic.wav -------------------------------------------------------------------------------- /SpeechToTextOnMac/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/SpeechToTextOnMac/record.py -------------------------------------------------------------------------------- /SpeechToTextOnMac/testGoogle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/SpeechToTextOnMac/testGoogle.py -------------------------------------------------------------------------------- /SpeechToTextOnMac/testWit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/SpeechToTextOnMac/testWit.py -------------------------------------------------------------------------------- /dfrobot_bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbakx/DFRobot/HEAD/dfrobot_bw.jpg --------------------------------------------------------------------------------