SimplyPebble.cardText = function(field, text, color) {
  CardTextPacket
    .index(field)
    .color(color || 'clearWhite')
    .text(text || '');
  SimplyPebble.sendPacket(CardTextPacket);
};
Ejemplo n.º 2
0
SimplyPebble.cardImage = function(field, image) {
  SimplyPebble.sendPacket(CardImagePacket.index(field).image(image));
};
Ejemplo n.º 3
0
SimplyPebble.cardText = function(field, text) {
  SimplyPebble.sendPacket(CardTextPacket.index(field).text(text || ''));
};