Skip to content

Commit

Permalink
Added support for Forerunner® 645 Music #17
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjakab committed Jun 29, 2024
1 parent 670c877 commit f142da0
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test_release_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
fr230,
fr235,
fr630,
fr645m,
fr735xt,
fr920xt,
vivoactive,
Expand Down
12 changes: 9 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,25 +62,31 @@
"device": "fr230"
},
{
"name": "Run (FR235)",
"name": "Run (fr235)",
"type": "monkeyc",
"request": "launch",
"device": "fr235"
},
{
"name": "Run (FR630)",
"name": "Run (fr630)",
"type": "monkeyc",
"request": "launch",
"device": "fr630"
},
{
"name": "Run (fr645m)",
"type": "monkeyc",
"request": "launch",
"device": "fr645m"
},
{
"name": "Run (fr735xt)",
"type": "monkeyc",
"request": "launch",
"device": "fr735xt"
},
{
"name": "Run (FR920xt)",
"name": "Run (fr920xt)",
"type": "monkeyc",
"request": "launch",
"device": "fr920xt"
Expand Down
21 changes: 20 additions & 1 deletion docs/devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ Please note that the below list is or development purposes and might not contain
- API 1.4 - all devices are supported
- API 2.4 - all devices are supported
- API 3.0 - all devices are supported
- API 3.1 - Development has not started
- API 3.1 - Devices under development:
- D2™ Delta (d2delta)
- D2™ Delta PX (d2deltapx)
- D2™ Delta S (d2deltas)
- fēnix® 5 / quatix® 5 (fenix5)
- fēnix® 5S (fenix5s)
- fēnix® 5X / tactix® Charlie (fenix5x)
- fēnix® Chronos (fenixchronos)
- Forerunner® 645 (fr645)
- Forerunner® 935 (fr935)
- vívoactive® 3 (vivoactive3)
- vívoactive® 3 Music LTE (vivoactive3mlte)
- API 3.2 - Development has not started
- API 3.3 - Development has not started
- API 3.4 - Development has not started
Expand Down Expand Up @@ -100,6 +111,14 @@ Please note that the below list is or development purposes and might not contain
- Supported: Yes
- Notes: OK

## Forerunner® 645 Music (fr645m)

- API: 3.2
- Screen Shape: Round
- Screen Size: 240x240
- Supported: Yes
- Notes: OK

## Forerunner® 735xt (fr735xt)

- API: 2.4
Expand Down
3 changes: 2 additions & 1 deletion manifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
<iq:application version="2.2.0" entry="iHIIT" id="5fa082b017864e7fa1f3ec51bb340e8a" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="1.4.0" name="@Strings.app_name" type="watch-app">
<iq:application version="2.2.1" entry="iHIIT" id="5fa082b017864e7fa1f3ec51bb340e8a" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="1.4.0" name="@Strings.app_name" type="watch-app">
<iq:products>
<iq:product id="approachs60"/>
<iq:product id="approachs62"/>
Expand All @@ -12,6 +12,7 @@
<iq:product id="fr230"/>
<iq:product id="fr235"/>
<iq:product id="fr630"/>
<iq:product id="fr645m"/>
<iq:product id="fr735xt"/>
<iq:product id="fr920xt"/>
<iq:product id="vivoactive"/>
Expand Down
4 changes: 2 additions & 2 deletions source/iHIIT.mc
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class iHIIT extends App.AppBase {

// Return the initial view of the application
public function getInitialView() {
return controller.getInitialApplicationView();
// return controller.getInitialApplicationTestView();
// return controller.getInitialApplicationView();
return controller.getInitialApplicationTestView();
}

// Hook called on application start up
Expand Down

0 comments on commit f142da0

Please sign in to comment.