├── .gitignore ├── README.md ├── accelerometer-fop └── accelerometer.fop ├── alarm ├── alarm.html ├── alarm.wav ├── autorun.sh ├── baby.wav ├── door.wav └── webserver.sh ├── attiny84-pwm-computer ├── Makefile ├── README.md ├── controller.jpg └── i2cslave.c ├── attiny85-pwm-input ├── Makefile ├── README.md └── i2cslave.c ├── clock ├── jquery.js └── uhr.html ├── fighterplane ├── .gitignore ├── Makefile ├── fighterplane.py ├── project ├── pwmread.py └── src │ └── main.fop ├── fokker-drI └── fokker.fop ├── fop-ide-raspi ├── public │ ├── definitions.fop │ └── index.html └── server.py ├── lcd ├── i2c_lib.py ├── lcd.py └── lcddriver.py ├── led-cpu-monitor └── led.py ├── pwm-read-c++ └── realtime.cpp ├── servo-controller └── servos.sh ├── servos ├── servo.php ├── servo.py └── setup.sh └── stepper ├── setup.sh └── stepper.php /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/README.md -------------------------------------------------------------------------------- /accelerometer-fop/accelerometer.fop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/accelerometer-fop/accelerometer.fop -------------------------------------------------------------------------------- /alarm/alarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/alarm/alarm.html -------------------------------------------------------------------------------- /alarm/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/alarm/alarm.wav -------------------------------------------------------------------------------- /alarm/autorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/alarm/autorun.sh -------------------------------------------------------------------------------- /alarm/baby.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/alarm/baby.wav -------------------------------------------------------------------------------- /alarm/door.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/alarm/door.wav -------------------------------------------------------------------------------- /alarm/webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/alarm/webserver.sh -------------------------------------------------------------------------------- /attiny84-pwm-computer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny84-pwm-computer/Makefile -------------------------------------------------------------------------------- /attiny84-pwm-computer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny84-pwm-computer/README.md -------------------------------------------------------------------------------- /attiny84-pwm-computer/controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny84-pwm-computer/controller.jpg -------------------------------------------------------------------------------- /attiny84-pwm-computer/i2cslave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny84-pwm-computer/i2cslave.c -------------------------------------------------------------------------------- /attiny85-pwm-input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny85-pwm-input/Makefile -------------------------------------------------------------------------------- /attiny85-pwm-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny85-pwm-input/README.md -------------------------------------------------------------------------------- /attiny85-pwm-input/i2cslave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/attiny85-pwm-input/i2cslave.c -------------------------------------------------------------------------------- /clock/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/clock/jquery.js -------------------------------------------------------------------------------- /clock/uhr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/clock/uhr.html -------------------------------------------------------------------------------- /fighterplane/.gitignore: -------------------------------------------------------------------------------- 1 | config* 2 | out 3 | .*.swp 4 | release.tar.xz 5 | makeremote 6 | -------------------------------------------------------------------------------- /fighterplane/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fighterplane/Makefile -------------------------------------------------------------------------------- /fighterplane/fighterplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fighterplane/fighterplane.py -------------------------------------------------------------------------------- /fighterplane/project: -------------------------------------------------------------------------------- 1 | BACKENDS=raspberry 2 | FOP_FOLDER=~/projekte/fop 3 | -------------------------------------------------------------------------------- /fighterplane/pwmread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fighterplane/pwmread.py -------------------------------------------------------------------------------- /fighterplane/src/main.fop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fighterplane/src/main.fop -------------------------------------------------------------------------------- /fokker-drI/fokker.fop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fokker-drI/fokker.fop -------------------------------------------------------------------------------- /fop-ide-raspi/public/definitions.fop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fop-ide-raspi/public/definitions.fop -------------------------------------------------------------------------------- /fop-ide-raspi/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fop-ide-raspi/public/index.html -------------------------------------------------------------------------------- /fop-ide-raspi/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/fop-ide-raspi/server.py -------------------------------------------------------------------------------- /lcd/i2c_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/lcd/i2c_lib.py -------------------------------------------------------------------------------- /lcd/lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/lcd/lcd.py -------------------------------------------------------------------------------- /lcd/lcddriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/lcd/lcddriver.py -------------------------------------------------------------------------------- /led-cpu-monitor/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/led-cpu-monitor/led.py -------------------------------------------------------------------------------- /pwm-read-c++/realtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/pwm-read-c++/realtime.cpp -------------------------------------------------------------------------------- /servo-controller/servos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/servo-controller/servos.sh -------------------------------------------------------------------------------- /servos/servo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/servos/servo.php -------------------------------------------------------------------------------- /servos/servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/servos/servo.py -------------------------------------------------------------------------------- /servos/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/servos/setup.sh -------------------------------------------------------------------------------- /stepper/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/stepper/setup.sh -------------------------------------------------------------------------------- /stepper/stepper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carli2/raspberry-projects/HEAD/stepper/stepper.php --------------------------------------------------------------------------------