Recent content by paps93fr

  1. paps93fr

    Add trigger "wifi no internet" and action "toggle wifi off and then back on"

    Do you try a constraint on the IP address? Save it regularly somewhere and when it change start the macro. When I'm connected to my wifi box my ip address begin with 192.168 but it's something like 192.0 with the connection to my mobile network operator and "?" when I put my phone in plane mode...
  2. paps93fr

    Intent - battery percentage of a bluetooth device

    Thanks ! I'll try it soon.
  3. paps93fr

    Macro request

    Look at sequematic.com, a free automation website created to replace Ifttt when it've became a paying service. You can describe scenario to start or stop tuya controlled devices. In MD, as mentioned by @Endercraft you could use weather trigger. Or directly a day/time trigger at 8am and call...
  4. paps93fr

    Intent - battery percentage of a bluetooth device

    MD Intent wiki documentation said there is an intent when the battery percentage of a bluetooth device changes. But it doesn't say more. What is that intent? And, is it possible to get the device battery percentage too, not only the information it have changed? I've an installed app named...
  5. paps93fr

    Detect connection to open networks

    If you're already connected to the public network, it's too late... You've to determinate and act that before your phone connect to any public network. i.e using localisation, launching vpn when entering an area with public network you are referenced on
  6. paps93fr

    Webhook and json

    Hi, Can Macrodroid webhook trigger received a json as data input?
  7. paps93fr

    Anyone using MD to discuss with APIs?

    I've implemented some API using MD: - Notion: reading, creating or updating pages in my Notion workspace, - UUIDgenerator: giving me UUID to uniquely identify things - lock flags, data transfers between macros, file names, ..., - meteo-concept: to obtain more weather data than MD - multiple...
  8. paps93fr

    Trigger when you are kilometers/miles from a location

    Thank you. For my today's use - to see if I'm far away from home or not - that first version will be okay. But I note that point if my use case change.
  9. paps93fr

    Trigger when you are kilometers/miles from a location

    I answer to myself and to anyone interested. I've found formulas in this website: https://forum.arduino.cc/t/fonction-mathematique-coordonnees-gps/80090/2 Translated in MD (first image in French, last in English): Seem working well. Coordinates are string variables like this: Which are...
  10. paps93fr

    Trigger when you are kilometers/miles from a location

    Hi there, MD have Geofence triggers but they are 5 kms max adjustable from a position. How to know when I'm hundreds of km/ml away, for example from home ? I want to create some presence routines but I need to know - and differentiate - when i'm out of my home region, from just being out of...
  11. paps93fr

    Launch app and Widget Button doesn't do anything

    No I don't, shame, and this is why it don't work !!! Thanks
  12. paps93fr

    Launch app and Widget Button doesn't do anything

    Hi, I try to trigger a macro using Launch App trigger but nothing happen when launching that app. So I try something else: trigger using a new Widget button but when clicking the widget, it doesn't trigger the macro. Is there something specific to do before use that triggers? I've 2 or 300...
  13. paps93fr

    JSON Parse Output Dictionary

    Why do you use {} instead of [] to designate variables? Use something like [_A_[v=indexPlay]]
  14. paps93fr

    Regex help

    May be in two steps. 1) First step to know cases: - everything in lower case: [a-z]{2} - first letter in lower case and second in upper: [a-z][A-Z] - first letter in upper case, second in lower: [A-Z][a-z] Store each result in a Boolean 2) Second step: Change the string accordingly to booleans
  15. paps93fr

    Regex support

    It's not a regex issue. You're more looking for something like a spell checker algorithm.
Top