Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# PebbleHVV
This is an app implementing the HVV API on Pebble Smartwatch using Pebble.js

Until 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;
})();
```