- http://wiki.seeedstudio.com/Grove-Loudness_Sensor/
- http://wiki.seeedstudio.com/Grove-Temperature_and_Humidity_Sensor_Pro/
- http://wiki.seeedstudio.com/Grove-Digital_Light_Sensor/
- http://wiki.seeedstudio.com/Grove-PIR_Motion_Sensor/
https://forum.dexterindustries.com/t/sound-sensor-readings/763/2?u=shoban
http://www.moserware.com/2010/03/computing-your-skill.html https://www.microsoft.com/en-us/research/uploads/prod/2018/03/trueskill2.pdf https://marketplace.visualstudio.com/items?itemName=MicrosoftIoT.WindowsIoTCoreProjectTemplatesforVS15
https://www.dexterindustries.com/howto/auto-run-python-programs-on-the-raspberry-pi/
sudo chmod +x setup.sh
sudo ./setup
pitfall: check for \r\n instead of \n
sudo apt install raspberrypi-ui-mods
https://www.raspifun.de/viewtopic.php?t=4
https://www.dexterindustries.com/GrovePi/get-started-with-the-grovepi/setting-software/
copy config.template.ini
to config.ini
and set the config values.
We don't want to copy the files over for each change we do. So we create a network share on our dev machine and mount it.
- Create Winows User
raspberry
- Add network share for repository
- Advanced Sharing > Permissions > add
raspberry
- Security > Edit > add
raspberry
- Advanced Sharing > Permissions > add
- make sure
sudo apt-get install cifs-utils
is installed sudo mount -t cifs //<dev-machine-ip>/kckr /mnt -o user=raspberry,password=<password>
Config in launch.json
{
"name": "Python Attach (Remote Debug Raspberry Pi)",
"type": "python",
"request": "attach",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/mnt"
}
],
"port": 1337,
"host": "<raspberrypi ip>"
}
Issue: Can't set breakpoint :( microsoft/ptvsd#1059
pydev debugger: warning: trying to add breakpoint to file that does not exist