initial commit

This commit is contained in:
MPG13 (Micah Gomez) 2016-03-28 10:45:50 -06:00
parent 61cd74ed2d
commit 7e2b3af411
4 changed files with 119 additions and 0 deletions

33
appinfo.json Normal file
View file

@ -0,0 +1,33 @@
{
"appKeys": {},
"capabilities": [
""
],
"companyName": "MPG13",
"enableMultiJS": true,
"longName": "Crash",
"projectType": "native",
"resources": {
"media": [
{
"file": "images/icon.png",
"menuIcon": true,
"name": "ICON",
"targetPlatforms": null,
"type": "png"
}
]
},
"sdkVersion": "3",
"shortName": "Crash",
"targetPlatforms": [
"aplite",
"basalt",
"chalk"
],
"uuid": "42a16663-bbfb-4b1c-b6a5-0a50ccd200d1",
"versionLabel": "1.0",
"watchapp": {
"watchface": true
}
}

BIN
resources/images/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

45
src/hello_world.c Normal file
View file

@ -0,0 +1,45 @@
#include <pebble.h>
static Window *s_window;
static TextLayer *s_text_layer;
static void init(void) {
// Create window
s_window = window_create();
Layer *window_layer = window_get_root_layer(s_window);
GRect bounds = layer_get_bounds(window_layer);
//text
s_text_layer = text_layer_create(bounds);
text_layer_set_text(s_text_layer, "P:/ Error: main.c not found P:/ Trying again... P:/ Error: main.c not found P:/ Trying again... P:/ Error: main.c not found P:/ Exceeded retries P:/ Reboot to try to launch P:/ Input disconnected P:/ Error: Data Corrupted P:/ _ Pebble Terminal v 3.9.2");
//font
text_layer_set_font(s_text_layer, fonts_get_system_font(FONT_KEY_GOTHIC_14));
text_layer_set_text_alignment(s_text_layer, GTextAlignmentLeft);
//ad layer
layer_add_child(window_get_root_layer(s_window), text_layer_get_layer(s_text_layer));
//indent
text_layer_enable_screen_text_flow_and_paging(s_text_layer, 2);
//window animation
window_stack_push(s_window, false);
// App Logs
APP_LOG(APP_LOG_LEVEL_DEBUG, "'crashed'");
}
static void deinit(void) {
// Destroy layer
text_layer_destroy(s_text_layer);
// Destroy window
window_destroy(s_window);
}
int main(void) {
init();
app_event_loop();
deinit();
}

41
wscript Normal file
View file

@ -0,0 +1,41 @@
#
# This file is the default set of rules to compile a Pebble project.
#
# Feel free to customize this to your needs.
#
import os.path
top = '.'
out = 'build'
def options(ctx):
ctx.load('pebble_sdk')
def configure(ctx):
ctx.load('pebble_sdk')
def build(ctx):
ctx.load('pebble_sdk')
build_worker = os.path.exists('worker_src')
binaries = []
for p in ctx.env.TARGET_PLATFORMS:
ctx.set_env(ctx.all_envs[p])
ctx.set_group(ctx.env.PLATFORM_NAME)
app_elf = '{}/pebble-app.elf'.format(ctx.env.BUILD_DIR)
ctx.pbl_program(source=ctx.path.ant_glob('src/**/*.c'), target=app_elf)
if build_worker:
worker_elf = '{}/pebble-worker.elf'.format(ctx.env.BUILD_DIR)
binaries.append({'platform': p, 'app_elf': app_elf, 'worker_elf': worker_elf})
ctx.pbl_worker(source=ctx.path.ant_glob('worker_src/**/*.c'), target=worker_elf)
else:
binaries.append({'platform': p, 'app_elf': app_elf})
ctx.set_group('bundle')
ctx.pbl_bundle(binaries=binaries, js=ctx.path.ant_glob('src/js/**/*.js'), js_entry_file='src/js/app.js')