1.0.10 • Published 10 years ago

pebble-battery-bar v1.0.10

Weekly downloads
25
License
MIT
Repository
github
Last release
10 years ago

pebble-battery-bar

Pebble library for easily adding a battery bar to your app.

Screenshot of library in action

Usage

pebble package install pebble-battery-bar

// This is a simple example, demonstrating the basic usage.
#include <pebble-battery-bar/pebble-battery-bar.h>

static BatteryBarLayer *s_battery_layer;

static void window_load(Window *window) {
  Layer *window_layer = window_get_root_layer(window);

  s_battery_layer = battery_bar_layer_create();
  layer_add_child(window_layer, s_battery_layer);
}

static void window_unload(Window *window) {
  battery_bar_layer_destroy(s_battery_layer);
}

Additional Settings

Position the battery bar on screen.

void battery_bar_set_position(GPoint position);

Hide the percentage text (100%).

void battery_bar_set_percent_hidden(bool hidden);

Hide the battery icon.

void battery_bar_set_icon_hidden(bool hidden);

Override the color scheme for each state.

void battery_bar_set_colors(GColor normal, GColor warning, GColor danger, GColor charging);
1.0.10

10 years ago

1.0.9

10 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago