├── .gitignore ├── README.md ├── appinfo.json ├── pebble-jshintrc ├── resources ├── fonts │ ├── OFL.txt │ └── VarelaRound-Regular.ttf └── images │ ├── bluetooth_off.png │ ├── bluetooth_on.png │ ├── menu_icon.png │ └── pebble9x4.png ├── src ├── config.html ├── pebble_one.c └── pebble_one.js └── wscript /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | build 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/README.md -------------------------------------------------------------------------------- /appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/appinfo.json -------------------------------------------------------------------------------- /pebble-jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/pebble-jshintrc -------------------------------------------------------------------------------- /resources/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/resources/fonts/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/resources/fonts/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /resources/images/bluetooth_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/resources/images/bluetooth_off.png -------------------------------------------------------------------------------- /resources/images/bluetooth_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/resources/images/bluetooth_on.png -------------------------------------------------------------------------------- /resources/images/menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/resources/images/menu_icon.png -------------------------------------------------------------------------------- /resources/images/pebble9x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/resources/images/pebble9x4.png -------------------------------------------------------------------------------- /src/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/src/config.html -------------------------------------------------------------------------------- /src/pebble_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/src/pebble_one.c -------------------------------------------------------------------------------- /src/pebble_one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/src/pebble_one.js -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefrau/PebbleONE/HEAD/wscript --------------------------------------------------------------------------------