├── LICENSE ├── README.md ├── firmware.uf2 ├── images ├── Capture.JPG ├── img.JPG ├── img1.JPG ├── img2.JPG ├── img4.png ├── img5.jpg ├── img6.png └── img7.jpg ├── lcd_display_1.3_inch ├── 1._3_lcd_display.py └── firmware.uf2 ├── led_blink.py ├── led_cube ├── file └── led_cube.py ├── lora_home_automation └── homeautomation.py ├── lora_receiver ├── firmware.uf2 └── lora_receiver.py ├── pi_relay6 └── 6_channnel_relay.py ├── relay4_zero └── relay_4_zero.py ├── rfid_hat ├── rfid_hat.py └── ssd1306.py ├── round_lcd_1.28_hat ├── firmware.uf2 └── round_lcd_1_28.py └── sd_card ├── main.py └── sdcard.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/README.md -------------------------------------------------------------------------------- /firmware.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/firmware.uf2 -------------------------------------------------------------------------------- /images/Capture.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/Capture.JPG -------------------------------------------------------------------------------- /images/img.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img.JPG -------------------------------------------------------------------------------- /images/img1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img1.JPG -------------------------------------------------------------------------------- /images/img2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img2.JPG -------------------------------------------------------------------------------- /images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img4.png -------------------------------------------------------------------------------- /images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img5.jpg -------------------------------------------------------------------------------- /images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img6.png -------------------------------------------------------------------------------- /images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/images/img7.jpg -------------------------------------------------------------------------------- /lcd_display_1.3_inch/1._3_lcd_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/lcd_display_1.3_inch/1._3_lcd_display.py -------------------------------------------------------------------------------- /lcd_display_1.3_inch/firmware.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/lcd_display_1.3_inch/firmware.uf2 -------------------------------------------------------------------------------- /led_blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/led_blink.py -------------------------------------------------------------------------------- /led_cube/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /led_cube/led_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/led_cube/led_cube.py -------------------------------------------------------------------------------- /lora_home_automation/homeautomation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/lora_home_automation/homeautomation.py -------------------------------------------------------------------------------- /lora_receiver/firmware.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/lora_receiver/firmware.uf2 -------------------------------------------------------------------------------- /lora_receiver/lora_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/lora_receiver/lora_receiver.py -------------------------------------------------------------------------------- /pi_relay6/6_channnel_relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/pi_relay6/6_channnel_relay.py -------------------------------------------------------------------------------- /relay4_zero/relay_4_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/relay4_zero/relay_4_zero.py -------------------------------------------------------------------------------- /rfid_hat/rfid_hat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/rfid_hat/rfid_hat.py -------------------------------------------------------------------------------- /rfid_hat/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/rfid_hat/ssd1306.py -------------------------------------------------------------------------------- /round_lcd_1.28_hat/firmware.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/round_lcd_1.28_hat/firmware.uf2 -------------------------------------------------------------------------------- /round_lcd_1.28_hat/round_lcd_1_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/round_lcd_1.28_hat/round_lcd_1_28.py -------------------------------------------------------------------------------- /sd_card/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/sd_card/main.py -------------------------------------------------------------------------------- /sd_card/sdcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbcshop/StackyPi/HEAD/sd_card/sdcard.py --------------------------------------------------------------------------------