Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smstuebe/kckr
Kicker activity indicator
https://github.com/smstuebe/kckr
Last synced: 6 days ago
JSON representation
Kicker activity indicator
- Host: GitHub
- URL: https://github.com/smstuebe/kckr
- Owner: smstuebe
- License: mit
- Created: 2018-01-12T19:43:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-15T21:32:17.000Z (over 5 years ago)
- Last Synced: 2024-11-15T02:32:45.060Z (2 months ago)
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kckr
## Hardware
## Raspberry Pi 3
## GrovePi+ Shield## Sensors
- 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
# Links
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.WindowsIoTCoreProjectTemplatesforVS15https://www.dexterindustries.com/howto/auto-run-python-programs-on-the-raspberry-pi/
# Install
```shell
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/
# Setup
copy `config.template.ini` to `config.ini` and set the config values.
# Remote debugging
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.
## Windows
- Create Winows User `raspberry`
- Add network share for repository
- Advanced Sharing > Permissions > add `raspberry`
- Security > Edit > add `raspberry`## Raspberry
- make sure `sudo apt-get install cifs-utils` is installed
- `sudo mount -t cifs ///kckr /mnt -o user=raspberry,password=`## VS Code
- see: https://code.visualstudio.com/docs/python/debugging#_remote-debuggingConfig in `launch.json`
```json
{
"name": "Python Attach (Remote Debug Raspberry Pi)",
"type": "python",
"request": "attach",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/mnt"
}
],
"port": 1337,
"host": ""
}
```**Issue:** Can't set breakpoint :( https://github.com/Microsoft/ptvsd/issues/1059
`pydev debugger: warning: trying to add breakpoint to file that does not exist`