KDouble extension

Comments

5 comments

  • Avatar
    Claudiu

    Ok, I have dig a little more in the extension (apk) .....

    Actually is not playing a file as I thought (used to from other SO's).

    Is a pattern of beeps (certain duration, pause etc.) as you can see below, so I have to figure out a way to customize this and change it in the file.

    @Serializable
    enum class BellBeepPattern(val displayName: String, val tones: List<PlayBeepPattern.Tone>) {

        BELL4("Medium", listOf(
            PlayBeepPattern.Tone(3_800, 900),
            PlayBeepPattern.Tone(0, 300),
            PlayBeepPattern.Tone(3_800, 1000),
        )),
        BELL5(
            "High", listOf(
                PlayBeepPattern.Tone(3_550, 900),
                PlayBeepPattern.Tone(0, 300),
                PlayBeepPattern.Tone(3_550, 1000),
            )),
    }


    @Serializable
    enum class KarooKey(val action: KarooEffect, val label: String) {
        BELL4(PlayBeepPattern(BellBeepPattern.BELL4.tones), "Medium"),
        BELL5(PlayBeepPattern(BellBeepPattern.BELL5.tones), "High"),

     

    !! STILL DIGGING :)

    0
    Comment actions Permalink
  • Avatar
    Luis Weber

    Love the bell. Cannot use it when screen is locked (rain), which is understandable. Maybe something to mention in the description (if it's already done, disregard comment)

    0
    Comment actions Permalink
  • Avatar
    Christian Renner

    I haven't tried this (just saw it today), but this sounds great (I like the bell on my Wahoo R3, though it's a bit silent). Do you think there is a way to have this feature available without an explicit data field (i.e., on each page)?

    0
    Comment actions Permalink
  • Avatar
    Lockevod

    Hello Claudiu, I can add more tones. I've created these two tone after a lot of trying. The problem with karoo is .. it only has a buzzer, and the buzzers cannot simulate all (only frequency and duration). 

    If you have more tones, I can add to next release :)

    0
    Comment actions Permalink
  • Avatar
    Carsten Weigandt

    Ich habe ein Datenfeld mit Geschwindigkeit und Distanz. Die Geschwindigkeit wird nicht korrekt angezeigt. Sie ist ca. 5 km/h zu langsam.

    0
    Comment actions Permalink

Please sign in to leave a comment.