Simple Pebble-App zum Anzeigen von Knoteninfos

Ich habe mittels CloudPebble und Simply.js eine noch sehr simple Pebble-App gebaut. Beispiel für Freifunk Münsterland:

var url = 'https://service.freifunk-muensterland.de/maps/map/nodes.json';
var nodeid = 'ID hier einfügen;

ajax({ url: url, type: 'json'}, function(data){
  var nodedata = data.nodes[nodeid];
  simply.title(nodedata.nodeinfo.hostname);
  simply.subtitle('Clients: '+ nodedata.statistics.clients);
});

Hab’ vorher noch nie 'ne Pebble-App gebaut und dementsprechend simpel ist das Ganze noch, aber vielleicht findet es ja jemand nützlich :wink: