-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
43 lines (24 loc) · 2.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Calendar App for Pebble
This is an app for the Pebble Watch. It shows a month view calendar.
When paired with the Pebble Calendar Android app, it will monitor your phone's calendar and display days with events in Bold.
https://play.google.com/store/apps/details?id=wgheaton.pebblecalendar
As an App:
Up Button moves to previous month.
Down Button moves to next month.
Center Button returns to current month.
As a Watchface:
Always shows current month (Watchfaces can not respond to buttons)
The published code will compile as an App. To change it to compile as a watchface the following changes are required.
Near the top of calendarApp.c change #define WATCHMODE false to true.
In appinfo.json change watchface to true and replace the UUID with the watchface.
For easy localization, the following arrays defined near the top of calendarApp.c can be modified.
daysOfWeek
holds the text used for the column headings
months
holds the text used for the month text displayed at the top of the app.
IMPORTANT, the current version requires Pebble SDKv2.0 and will only run on watches that have been updated to Firmware 2.0 or later. The last version to compatible with SDK/Firmware 1.x can be found here. https://github.com/WilliamHeaton/PebbleCalendarWatch/tree/7cf62b37c3527fc9ff687615d90afc7a6d88edc6
Licence
Copyright (C) 2013 William Heaton <[email protected]>
Calendar App for Pebble is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Calendar App for Pebble is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Calendar App for Pebble. If not, see http://www.gnu.org/licenses/.