└── sample ├── ch10 └── sample │ ├── analogInput.py │ ├── analog_inputA.fzz │ ├── analog_inputB.fzz │ ├── settemp.php │ ├── showtemp.php │ ├── showtempChart.php │ ├── temp_url.py │ └── temperature.py ├── ch11 ├── 01image.py ├── 02video.py └── paperCamera.pdf ├── ch14 ├── ch14-2-AR-PythonDisplayImage │ └── sample │ │ ├── displayimage.py │ │ └── raspberrypi.png ├── ch14-3-AR-face │ └── sample │ │ └── faceDectecor.py ├── ch14-4-AR-glasses │ └── sample │ │ ├── AR3.py │ │ └── glasses.png ├── faceDectecor.py └── faceDectecor.py.zip ├── ch15 ├── ch14-1-DisplayBarCode │ └── sample │ │ ├── displayQRCode.py │ │ └── displayUPC.py └── ch14-3-ScanBarCodeAndSave │ └── sample │ └── scanBarCode.py ├── ch17 ├── ch17-2_game_2_control │ └── sample │ │ └── myconfig.xboxdrv └── ch17-3-Game-GPIO-Keyboard │ ├── buttons.fzz │ └── pikeyd.conf ├── ch18_IR ├── ch17-1_IRread │ └── sample │ │ ├── irread.fzz │ │ └── irread.py └── ch17-2-IRLED │ └── sample │ ├── TFT_LCD.py │ ├── ir2led.fzz │ └── ir2led.py ├── ch19_Car ├── ch18-1-npn │ ├── NPN.fzz │ └── sample │ │ └── npn.py ├── ch18-2-npn-speed │ ├── NPNSpeed.fzz │ └── sample │ │ └── npnspeed.py ├── ch18-3-L293D │ ├── L293D_1.fzz │ └── sample │ │ └── L293D.py ├── ch18-4-L293D_speed │ ├── L293D_2.fzz │ └── sample │ │ └── L293D_pwm.py ├── ch18-5-L293D_3_2wheels_speed │ ├── L293D_2.fzz │ └── sample │ │ └── L293D_2_pwm.py └── ch18-6-L293D_4_remote │ ├── L293D_2.fzz │ └── sample │ └── L293D_remote.py ├── ch21_Robot ├── pwm.fzz ├── pwm.py ├── pwm_Robots.fzz ├── pwm_Servo.fzz ├── robot1.py └── sos.py ├── ch22 ├── DigitalFrame.py └── TFT_LCD.py ├── ch4 └── my.php └── ch9 ├── 9-1-yahoo └── yahooweather.py ├── 9-2-lcd ├── LCD16x2.fzz ├── lcd.py └── lcdv2.py ├── 9-3-weather ├── YahooWeatherOnLCD.py └── lcdv2.py └── 9picamera └── image ├── 01image.py └── 02video.py /sample/ch10/sample/analogInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/analogInput.py -------------------------------------------------------------------------------- /sample/ch10/sample/analog_inputA.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/analog_inputA.fzz -------------------------------------------------------------------------------- /sample/ch10/sample/analog_inputB.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/analog_inputB.fzz -------------------------------------------------------------------------------- /sample/ch10/sample/settemp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/settemp.php -------------------------------------------------------------------------------- /sample/ch10/sample/showtemp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/showtemp.php -------------------------------------------------------------------------------- /sample/ch10/sample/showtempChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/showtempChart.php -------------------------------------------------------------------------------- /sample/ch10/sample/temp_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/temp_url.py -------------------------------------------------------------------------------- /sample/ch10/sample/temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch10/sample/temperature.py -------------------------------------------------------------------------------- /sample/ch11/01image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch11/01image.py -------------------------------------------------------------------------------- /sample/ch11/02video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch11/02video.py -------------------------------------------------------------------------------- /sample/ch11/paperCamera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch11/paperCamera.pdf -------------------------------------------------------------------------------- /sample/ch14/ch14-2-AR-PythonDisplayImage/sample/displayimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/ch14-2-AR-PythonDisplayImage/sample/displayimage.py -------------------------------------------------------------------------------- /sample/ch14/ch14-2-AR-PythonDisplayImage/sample/raspberrypi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/ch14-2-AR-PythonDisplayImage/sample/raspberrypi.png -------------------------------------------------------------------------------- /sample/ch14/ch14-3-AR-face/sample/faceDectecor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/ch14-3-AR-face/sample/faceDectecor.py -------------------------------------------------------------------------------- /sample/ch14/ch14-4-AR-glasses/sample/AR3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/ch14-4-AR-glasses/sample/AR3.py -------------------------------------------------------------------------------- /sample/ch14/ch14-4-AR-glasses/sample/glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/ch14-4-AR-glasses/sample/glasses.png -------------------------------------------------------------------------------- /sample/ch14/faceDectecor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/faceDectecor.py -------------------------------------------------------------------------------- /sample/ch14/faceDectecor.py.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch14/faceDectecor.py.zip -------------------------------------------------------------------------------- /sample/ch15/ch14-1-DisplayBarCode/sample/displayQRCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch15/ch14-1-DisplayBarCode/sample/displayQRCode.py -------------------------------------------------------------------------------- /sample/ch15/ch14-1-DisplayBarCode/sample/displayUPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch15/ch14-1-DisplayBarCode/sample/displayUPC.py -------------------------------------------------------------------------------- /sample/ch15/ch14-3-ScanBarCodeAndSave/sample/scanBarCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch15/ch14-3-ScanBarCodeAndSave/sample/scanBarCode.py -------------------------------------------------------------------------------- /sample/ch17/ch17-2_game_2_control/sample/myconfig.xboxdrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch17/ch17-2_game_2_control/sample/myconfig.xboxdrv -------------------------------------------------------------------------------- /sample/ch17/ch17-3-Game-GPIO-Keyboard/buttons.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch17/ch17-3-Game-GPIO-Keyboard/buttons.fzz -------------------------------------------------------------------------------- /sample/ch17/ch17-3-Game-GPIO-Keyboard/pikeyd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch17/ch17-3-Game-GPIO-Keyboard/pikeyd.conf -------------------------------------------------------------------------------- /sample/ch18_IR/ch17-1_IRread/sample/irread.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch18_IR/ch17-1_IRread/sample/irread.fzz -------------------------------------------------------------------------------- /sample/ch18_IR/ch17-1_IRread/sample/irread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch18_IR/ch17-1_IRread/sample/irread.py -------------------------------------------------------------------------------- /sample/ch18_IR/ch17-2-IRLED/sample/TFT_LCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch18_IR/ch17-2-IRLED/sample/TFT_LCD.py -------------------------------------------------------------------------------- /sample/ch18_IR/ch17-2-IRLED/sample/ir2led.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch18_IR/ch17-2-IRLED/sample/ir2led.fzz -------------------------------------------------------------------------------- /sample/ch18_IR/ch17-2-IRLED/sample/ir2led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch18_IR/ch17-2-IRLED/sample/ir2led.py -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-1-npn/NPN.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-1-npn/NPN.fzz -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-1-npn/sample/npn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-1-npn/sample/npn.py -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-2-npn-speed/NPNSpeed.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-2-npn-speed/NPNSpeed.fzz -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-2-npn-speed/sample/npnspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-2-npn-speed/sample/npnspeed.py -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-3-L293D/L293D_1.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-3-L293D/L293D_1.fzz -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-3-L293D/sample/L293D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-3-L293D/sample/L293D.py -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-4-L293D_speed/L293D_2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-4-L293D_speed/L293D_2.fzz -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-4-L293D_speed/sample/L293D_pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-4-L293D_speed/sample/L293D_pwm.py -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-5-L293D_3_2wheels_speed/L293D_2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-5-L293D_3_2wheels_speed/L293D_2.fzz -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-5-L293D_3_2wheels_speed/sample/L293D_2_pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-5-L293D_3_2wheels_speed/sample/L293D_2_pwm.py -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-6-L293D_4_remote/L293D_2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-6-L293D_4_remote/L293D_2.fzz -------------------------------------------------------------------------------- /sample/ch19_Car/ch18-6-L293D_4_remote/sample/L293D_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch19_Car/ch18-6-L293D_4_remote/sample/L293D_remote.py -------------------------------------------------------------------------------- /sample/ch21_Robot/pwm.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch21_Robot/pwm.fzz -------------------------------------------------------------------------------- /sample/ch21_Robot/pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch21_Robot/pwm.py -------------------------------------------------------------------------------- /sample/ch21_Robot/pwm_Robots.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch21_Robot/pwm_Robots.fzz -------------------------------------------------------------------------------- /sample/ch21_Robot/pwm_Servo.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch21_Robot/pwm_Servo.fzz -------------------------------------------------------------------------------- /sample/ch21_Robot/robot1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch21_Robot/robot1.py -------------------------------------------------------------------------------- /sample/ch21_Robot/sos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch21_Robot/sos.py -------------------------------------------------------------------------------- /sample/ch22/DigitalFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch22/DigitalFrame.py -------------------------------------------------------------------------------- /sample/ch22/TFT_LCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch22/TFT_LCD.py -------------------------------------------------------------------------------- /sample/ch4/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch4/my.php -------------------------------------------------------------------------------- /sample/ch9/9-1-yahoo/yahooweather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9-1-yahoo/yahooweather.py -------------------------------------------------------------------------------- /sample/ch9/9-2-lcd/LCD16x2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9-2-lcd/LCD16x2.fzz -------------------------------------------------------------------------------- /sample/ch9/9-2-lcd/lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9-2-lcd/lcd.py -------------------------------------------------------------------------------- /sample/ch9/9-2-lcd/lcdv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9-2-lcd/lcdv2.py -------------------------------------------------------------------------------- /sample/ch9/9-3-weather/YahooWeatherOnLCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9-3-weather/YahooWeatherOnLCD.py -------------------------------------------------------------------------------- /sample/ch9/9-3-weather/lcdv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9-3-weather/lcdv2.py -------------------------------------------------------------------------------- /sample/ch9/9picamera/image/01image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9picamera/image/01image.py -------------------------------------------------------------------------------- /sample/ch9/9picamera/image/02video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenko/raspberryPi100ProjectsBookSample/HEAD/sample/ch9/9picamera/image/02video.py --------------------------------------------------------------------------------