├── .github └── stale.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── _config.yml ├── assets ├── css │ └── style.scss └── img │ ├── bitcoin.svg │ ├── ethereum.svg │ ├── flattr.svg │ ├── litecoin.svg │ └── paypal.svg ├── doc └── iRobot_Roomba_500_Open_Interface_Spec.pdf ├── img ├── breadboard.png ├── clean-button.png └── photon-connection.png └── src ├── breadboard.fzz └── photon-connection.psd /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/img/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/assets/img/bitcoin.svg -------------------------------------------------------------------------------- /assets/img/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/assets/img/ethereum.svg -------------------------------------------------------------------------------- /assets/img/flattr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/assets/img/flattr.svg -------------------------------------------------------------------------------- /assets/img/litecoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/assets/img/litecoin.svg -------------------------------------------------------------------------------- /assets/img/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/assets/img/paypal.svg -------------------------------------------------------------------------------- /doc/iRobot_Roomba_500_Open_Interface_Spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/doc/iRobot_Roomba_500_Open_Interface_Spec.pdf -------------------------------------------------------------------------------- /img/breadboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/img/breadboard.png -------------------------------------------------------------------------------- /img/clean-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/img/clean-button.png -------------------------------------------------------------------------------- /img/photon-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/img/photon-connection.png -------------------------------------------------------------------------------- /src/breadboard.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/src/breadboard.fzz -------------------------------------------------------------------------------- /src/photon-connection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/roomba-wifi/HEAD/src/photon-connection.psd --------------------------------------------------------------------------------