Flic Home

    Community

    • Login
    • Search
    • Popular
    • Users
    1. Home
    2. Recent
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • fernando.fernandes

      Detect when a button was removed in the native Flic app (iOS SDK)
      Developers • • fernando.fernandes

      1
      0
      Votes
      1
      Posts
      394
      Views

      No one has replied

    • aidenrohde

      Using flic to send keypress events to Android
      Developers • keyboard input android assistive tech morse gboard • • aidenrohde

      1
      0
      Votes
      1
      Posts
      904
      Views

      No one has replied

    • flic.sensen

      Destroy an instance
      Developers • • flic.sensen

      1
      0
      Votes
      1
      Posts
      424
      Views

      No one has replied

    • flic.sensen

      Android SDK - Flic selector workaround?
      Developers • • flic.sensen

      1
      0
      Votes
      1
      Posts
      468
      Views

      No one has replied

    • jared.meakin

      [Answer] Using JSON in http-request of Flic app
      Developers • • jared.meakin

      1
      0
      Votes
      1
      Posts
      548
      Views

      No one has replied

    • luzi.sennhauser

      server error 0 with Linux FlicSDK
      Developers • • luzi.sennhauser

      1
      0
      Votes
      1
      Posts
      433
      Views

      No one has replied

    • idan.aviad34

      FlicSDK on windows 10
      Developers • • idan.aviad34

      1
      0
      Votes
      1
      Posts
      497
      Views

      No one has replied

    • khoa

      Write your own flic app without having the flic app installed
      Developers • • khoa

      2
      0
      Votes
      2
      Posts
      994
      Views

      admin

      There is a way, but only with custom buttons that you can order from us - go to flic.io/business to read more.

      With Flic 2, the Flic App will not be needed.

    • niklas.landin

      problems HTTP Requests using button w phone and button w hub
      Developers • • niklas.landin

      1
      0
      Votes
      1
      Posts
      537
      Views

      No one has replied

    • brainstimulationab

      Make flic button send keyboard input to Android
      Developers • keyboard input android unity • • brainstimulationab

      10
      0
      Votes
      10
      Posts
      7769
      Views

      brainstimulationab

      @tobi-fp Hi, sorry i cannot. The steps below however should help you somewhat to implement it yourself!

    • ramirez529

      ACTION: POST HTTP Request with form data
      Developers • • ramirez529

      2
      0
      Votes
      2
      Posts
      1076
      Views

      isolating

      As with so many technical requests your question isn't really clear enough as to what the problem is. It looks like you're using Postman to generate the code and wanting to post a multipart form. I can only point you to
      https://ec.haxx.se/http-multipart.html .
      You have my sympathies, curl is not the easiest to understand and API documentation rarely makes it easy to understand exactly what's necessary.

    • martinm

      Programming strategies vs Battery life
      Developers • • martinm

      3
      0
      Votes
      3
      Posts
      793
      Views

      martinm

      Ok, I assume that channel.auto_disconnect_time unit is seconds.

      But I think that I eventually found out what was draining the batteries, in the python scan wizard exemple in the is_private case, the scanner is never removed. I suspect this forces all the buttons to stay active if no-one press on the foreign button for 7 sec. Since I fixed that with a timeout, batteries are felling much better 🙂

    • JoeJoe

      Simple swipe action on Samsung Tab
      Developers • • JoeJoe

      4
      0
      Votes
      4
      Posts
      803
      Views

      Emil

      @JoeJoe unfortunately not. We have HID on iOS but it didn't work out well on Android due to a huge amount of bugs in the Android Bluetooth stack. Also the onscreen keyboard is hidden when a HID device is connected which is quite bad for the user experience.

    • martinm

      API: Color values
      Developers • • martinm

      3
      0
      Votes
      3
      Posts
      786
      Views

      Emil

      Yes, yellow is also valid. See the documentation at https://github.com/50ButtonsEach/fliclib-linux-hci/blob/master/ProtocolDocumentation.md#evtgetbuttoninforesponse.

    • gianchimore

      audio recorder
      Developers • • gianchimore

      2
      0
      Votes
      2
      Posts
      812
      Views

      lindamelodyy

      If you cannot record the audio on your device, please check the microphone and the sound settings firstly. Then, try another audio recorder app. When you tend to record the audio on your computer, you should find the app, like FonePaw Screen Recorder, supporting microphone and system sound.

    • sam.craig

      Flic app missing from Google Play store
      Developers • • sam.craig

      5
      0
      Votes
      5
      Posts
      1829
      Views

      lenivyventil

      Hi, the Android app is missing. Not sure if still, or again. Do you know the reason and workaround?

    • flic c

      Flic battery level
      Developers • • flic c

      4
      0
      Votes
      4
      Posts
      1797
      Views

      osos

      I cannot seem to get a valid batterystatus from my old flic buttons.

      Please see issue the issue I reported on github: https://github.com/50ButtonsEach/fliclib-linux-hci/issues/84

      Does the batterystatus require an firmware update of the buttons?

    • restauraid.mx

      Web app connection with Flic HUB
      Developers • • restauraid.mx

      2
      0
      Votes
      2
      Posts
      1184
      Views

      ruffCode

      I know this is a little old, but here is one way to approach this.

      Create a webhook endpoint on the server, then use a websocket to push messages to the frontend.

      Register the buttons with the database, giving them a UUID.

      Split the API route based on button actions, passing the button's UUID as the parameter.

      Assign the URL as an action to the botton, i.e. ".../button/action/uuid

      Hope that helps

    • erdnasyl

      Need help with python script on windows
      Developers • • erdnasyl

      4
      0
      Votes
      4
      Posts
      1395
      Views

      erdnasyl

      @emil
      Thank you for your help!
      I got a syntax error but I managed to repair it with this code:

      def got_button(bd_addr): cc = fliclib.ButtonConnectionChannel(bd_addr) cc.on_button_single_or_double_click = \ lambda channel, click_type, was_queued, time_diff: \ keyboard.press(Key.right) if click_type == fliclib.ClickType.ButtonSingleClick else keyboard.press(Key.left) cc.on_connection_status_changed = \ lambda channel, connection_status, disconnect_reason: \ print(channel.bd_addr + " " + str(connection_status) + (" " + str(disconnect_reason) if connection_status == fliclib.ConnectionStatus.Disconnected else "")) client.add_connection_channel(cc)

      It works perfectly and it seems I don't need to release the key.

      But it seems Windows Universal Apps don't recognize key presses sent by Python... Key presses are recognized everywhere else. Anybody knows why or how to get around it?

      The next step to have a fully functional Windows integration would be to make the script work with Eventghost. I will try either by capturing the keystroke event and by sending http requests to it's built-in webserver. I will let you know!

    • nicolas.garcia

      Unable to connect to Flic button
      Developers • • nicolas.garcia

      5
      0
      Votes
      5
      Posts
      2130
      Views

      jkriba

      Hi,
      I am facing the same issue with Samsung S8 and i am using the latest app from Android Play store. The button which is brand new is not getting discovered. Pls help,

      Regards
      JK