Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
73 views

here's my code in pomodoroApp.mc in Monkey C import Toybox.Application; import Toybox.Lang; import Toybox.WatchUi; class PomodoroApp extends Application.AppBase { private var _view as ...
Tobiasz's user avatar
  • 11
-1 votes
1 answer
156 views

Im currently trying to build a Watch App using a ViewLoop. However i get a, to me unexplainable, Array out of Bounds Error. The App generates Views from an Array of Objects and adds these to a ...
Mattia Gisiger's user avatar
-1 votes
1 answer
242 views

I'm trying to create a custom watch face for my Garmin device. However, when I start debugging my app with a Hello World program, the page gets stuck in an endless load. [see image](https://i.sstatic....
Kam Max's user avatar
0 votes
1 answer
102 views

I've tried different codes but all end up in error. I'm using an Edge 820 and my version is 3.1.0 I've tried different codes I found online but none of them worked. I would appreciate if someone could ...
Confringo's user avatar
0 votes
1 answer
152 views

I'd like to format a float so that it has at most 3 fractional digits, but if the last fractional digit(s) are 0 then omit them. input : expected output 1.1234 : 1.123 1.120 : 1.12 1.100 : 1.1 1.0 : 1 ...
Gavriel's user avatar
  • 19.3k
2 votes
1 answer
1k views

Im stuck and looking for help with this error: ERROR: fenix6: C:\....\OtherView.mc:90,8: Invalid '$.Toybox.Lang.Method(responseCode as $.Toybox.Lang.Number, data as Null or $.Toybox.Lang.Dictionary) ...
jarekj9's user avatar
  • 73
1 vote
1 answer
900 views

Hi I have an function to switch to another view: WatchUi.switchToView(new weatherResultView(data), WatchUi.MenuInputDelegate, WatchUi.SLIDE_IMMEDIATE); Inside weatherResultView view I need function ...
major697's user avatar
  • 1,862
1 vote
1 answer
1k views

I need find position of watch. I have an method: function initializeListener() as Void { System.println("start"); Position.enableLocationEvents(Position.LOCATION_ONE_SHOT, method(:...
major697's user avatar
  • 1,862
3 votes
1 answer
2k views

I want to try a garmin WachFace and came across very quickly folgnden error, but unfortunately I do not know why it occurs, maybe someone can help you? Cannot find symbol ':setText' on type 'PolyType&...
Mallalei's user avatar
  • 111
0 votes
1 answer
850 views

EMULATOR "fr945" MIN API LEVEL "3.0.0" API DATA STRUCTURE { "data": { "devices": [ { "device": "00:...
TimothyLuedtke's user avatar
-1 votes
1 answer
833 views

even this exemple i found on the site of garmin has the same problem https://developer.garmin.com/connect-iq/core-topics/https/ import Toybox.System; import Toybox.Communications; import Toybox.Lang; ...
Borro Villerius's user avatar
1 vote
0 answers
1k views

Trying to request a webrequest in the background, and trigger an application wake when it finishes. The example code works, but it's impossible to wake the app from a callback: using Toybox.Background;...
David Karlsson's user avatar
0 votes
0 answers
155 views

Would it be possible to get the details like song title and album for audio currently playing on a Garmin smart watch, regardless of the service (Spotify, Amazon Music) that the user is listening with?...
MochaMage's user avatar
0 votes
1 answer
438 views

I'm running openjdk:13-alpine docker container and mounted the garmin connectiq-sdk files into the container. Trying to run monkeyc command fails with "not found". ~/projects/garmin$ docker container ...
veimis's user avatar
  • 71
1 vote
1 answer
264 views

I am using Eclipse, the ConnectIQ add-on, and MonkeyC to write an app for a Garmin watch. I can run several sample apps on the simulator, but most of the time my edits don't deploy when I hit "Run". ...
user3007005's user avatar
0 votes
1 answer
1k views

I'm looking for the folder containing the installed apps in a Garmin Forerunner device. I'm pretty curious to know how some apps are written in monkey c language, but, connecting the device to my ...
Gianni's user avatar
  • 23
0 votes
1 answer
1k views

I am trying to show a battery status bar by using my own style (see image) on my Garmin Wacht Face. At the moment I am using only 3 drawables (100% full, 50%, and 0% empty). Is there a possibility or ...
Mr.P.'s user avatar
  • 109
0 votes
1 answer
261 views

I am developing a watch app for a Garmin Vivoactive HR that will send data to the phone periodically (using ConnectIQ SDK V2.3.4). The available memory drops as the Communications.transmit(...) ...
Graham Jones's user avatar
0 votes
1 answer
734 views

I have made my own Connect IQ app for my Garmin Forerunner watch. I have changed the LauncherIcon to my own image instead of the default IQ-icon. My app uses ActivityRecording so the activity can be ...
user129954's user avatar
-6 votes
1 answer
2k views

Serious newbie question, but I can't seem to find the answer anywhere! I'm trying to convert my height from centimetres to metres in an application for my Garmin device. This is written in Monkey C (...
Tube Oid's user avatar
3 votes
2 answers
365 views

I am building project in monkeyc (ConnectIq) from Garmin in Eclipse, and I want to use const instead of var in my code, but it seems that the const keyword is not recognized by the compiler. What ...
user avatar
1 vote
1 answer
2k views

When a menu item is pressed I want to set the text of a label, however i'm getting the errors: "Failed invoking <symbol>" and "Unexpected Type Error". In my menu delegate I have: using Toybox....
lehermj's user avatar
  • 936