Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/3wille/pebblehvv
This is an app implementing the HVV api on Pebble Smartwatch using Pebble.js
https://github.com/3wille/pebblehvv
Last synced: about 2 months ago
JSON representation
This is an app implementing the HVV api on Pebble Smartwatch using Pebble.js
- Host: GitHub
- URL: https://github.com/3wille/pebblehvv
- Owner: 3wille
- License: mit
- Created: 2015-02-23T18:31:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-09T18:17:41.000Z (almost 10 years ago)
- Last Synced: 2023-12-16T17:44:18.728Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 734 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PebbleHVV
This is an app implementing the HVV API on Pebble Smartwatch using Pebble.jsUntil I get to obfuscate some code, you'll need your own password to actually run this. You can get it by sending mail to HVV. After that, save below code as password.js
```javascript
var password = (function(){
var password = function(){
return ""; // fill in password here
};
if (typeof module !== 'undefined') {
module.exports = password;
} else {
window.ajax = password;
}return password;
})();
```