├── .gitignore ├── LICENSE ├── README.md ├── bluetooth-RPi-wifi.py └── images ├── Blue-RPi ├── connect_device.png ├── sending-command.png └── wifi-configuration.png ├── discoverable.png ├── main.png └── rc.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth-RPi-wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/bluetooth-RPi-wifi.py -------------------------------------------------------------------------------- /images/Blue-RPi/connect_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/images/Blue-RPi/connect_device.png -------------------------------------------------------------------------------- /images/Blue-RPi/sending-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/images/Blue-RPi/sending-command.png -------------------------------------------------------------------------------- /images/Blue-RPi/wifi-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/images/Blue-RPi/wifi-configuration.png -------------------------------------------------------------------------------- /images/discoverable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/images/discoverable.png -------------------------------------------------------------------------------- /images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/images/main.png -------------------------------------------------------------------------------- /images/rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurockkk/Bluetooth-RPi-Python/HEAD/images/rc.png --------------------------------------------------------------------------------