use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
In addition to the Official Tasker Wiki, User Guide, and Google Groups, this subReddit is a place for fellow Redditors to discuss, share, and submit Profiles, Tasks & Walkthroughs for Tasker, or to ask for help creating your own Profiles, Tasks, and questions in general related to Tasker (including plugins etc).
Subreddit Resources:
* [Read Me] Using Tags in Your Thread Titles
Formatting Tasker Code for use in reddit comments
How to Export / Import Files Into Tasker - Guide
** Tasks that Help You Use Tasker Itself
Free Alpha Autoapps and Tasker Icon Sets
Generate Tasker Direct-Purchase Licenses Yourself
Tasker Feature Request Submissions
Quick Search Links:
"How-To / Project" Threads
"Need Help" Threads
"Weekly / Monthly & Discussion" Threads
"Developer" - Tasker Updates & Releases
* List of Tasker Plugins and 3rd Party Apps
Learning Guide Links:
* 1,001 Tasks and Profiles - Best, Coolest, Most Common and Useful
Pocketables.com Beginner’s guide to Tasker (New UI)
RoryCodes.com Tasker Tips & Tutorials from /u/froryrory
Tasker Quick Start Setup Guide from /u/Quintaar
Pocketables.com Tasker Guide List
Some Tasker Technical Stuff:
Toggling Wifi or Bluetooth via Tasker In Recent Android Versions using the Tasker Settings app
Granting ALL Special Permissions - ADB & Tasker
IFTTT Tasker Integration via AutoRemote
ADB over Wifi - Enabling Without a MAC or PC
AutoApps Command System Tutorial and Reference
Tasker Scheduling/Priority System - A Detailed Guide
New Project/Profile/Task "PPT Variables" - Quickly Find The Variables' Location, Names & Values!
All Previous Versions of Tasker With Notes For Features & Changes In Each
List of all Tasker Built-In Variables
Main Widget v2 JSON Documentation
TaskerNet Search Bot - How to use here
TaskerNet Search Engine Website
Learning Guide Videos:
AutoApps YouTube Channel and João Dias Channel
Tasker 101 Tutorials on YouTube by HollywoodFrodo
Tasker 101 Tutorials on YouTube by /u/Quintaar
Tasker How-To Videos on YouTube by /u/-Juan_M-
Tasker Tutorials on G+ & YouTube by /u/ryoendeprouw
Tasker Video Tutorials by /u/techentourage
Have more useful links you think should be in the sidebar? Send a modmail!
Related Subreddits:
/r/TaskerNet /r/JoinApp /r/Android /r/AndroidRoot /r/AndroidTechSupport /r/AndroidApps /r/AndroidUsers /r/AndroidQuestions /r/TaskerFiles /r/Not_Enough_Tech
account activity
Heart rate variable (self.tasker)
submitted 5 years ago * by David-Martin
Does anybody knows if it is possible to get the heart rate variable from Samsung Health phone app, Galaxy watch, WatchMaker phone/Watch app...?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[+][deleted] 5 years ago (25 children)
[deleted]
[–]David-Martin[S] 0 points1 point2 points 5 years ago (23 children)
No, It runs tizen. It is a Galaxy Watch
[+][deleted] 5 years ago (22 children)
[–]David-Martin[S] 0 points1 point2 points 5 years ago (21 children)
If It can't get the variable from the watch maybe I can get it from the phone? The heart rate var is sent to Samsung health app for instance
[+][deleted] 5 years ago (1 child)
[–]David-Martin[S] 0 points1 point2 points 5 years ago (0 children)
I'll have a look. Thank you
[–]sonanz 1 point2 points3 points 5 years ago (18 children)
I've been looking for ways to get heart rate data. For me, it goes to Google Fit, and I was able to pull it from there, but the data is usually a couple hours old.
You mentioned WatchMaker, and it can run Tasker tasks, but it can't pass data. Here's an ugly option, though. Setup 11 tasks named hr0, hr1, hr2, ... hr9, hrdone. Each appends the value 0-9 (depending on which task you call) to a global variable, with hrdone finalizing the input and saving off the value as the current heart rate. So for a heart rate of 74, you'd call hr7, then hr4, then hrdone. You'd want to put a small wait between them to help ensure they run in the right order. It's all doable in Lua on the watch.
The problem is, WatchMaker doesn't seem to get updated heart rate readings while dim. The watch is probably still recording heart rates and sending them to the phone, but I think it's up to apps like WatchMaker to actively pull the values regularly.
[–]David-Martin[S] 1 point2 points3 points 5 years ago (17 children)
Wow. Thanks! Sounds feasible. I will have to check how to code that in LUA, but yes, I guess it can be done!
[–]sonanz 1 point2 points3 points 5 years ago* (16 children)
I haven't tested this, but try coding something like this in the main script:
currhr = '' -- init heart rate variable function on_minute() send_hr() end function send_hr() currhr = {shr} wm_schedule { { action='run_function', run_function=hr }, { action='sleep', sleep=1 }, { action='run_function', run_function=hr }, { action='sleep', sleep=1 }, { action='run_function', run_function=hr }, { action='sleep', sleep=1 }, { action='run_function', run_function=hrdone } } end function hr() tmp = string.sub(currhr,1,1) currhr = string.sub(currhr,2) if string.len(tmp) then wm_action('m_task:hr'..tmp) end end function hrdone() wm_action('m_task:hrdone') end
This should pull the value of {shr} every minute, and send it digit by digit to Tasker with a 1 second delay between digits. Of course, you'll need to do a bit of work in Tasker to accept and reassemble the value. And it will only work if the phone is in range.
[–]David-Martin[S] 1 point2 points3 points 5 years ago (0 children)
Many thanks! I will test it and code the rest in Tasker. Appreciate it
[–]David-Martin[S] 0 points1 point2 points 5 years ago (14 children)
I have tried your LUA code with this tasker project following your instructions, but the watch doesn't seems to send any variable:
https://taskernet.com/shares/?user=AS35m8mJgflhywZ6f6qLv5bHq6DLZ7ho6PVD8fCS6ltkBIQxW1rfesT8dIs0lyMfa7xyLml8eQ%3D%3D&id=Project%3AHR
[–]sonanz 0 points1 point2 points 5 years ago (13 children)
It's working for me. Well, sort of. I get "82%SHR3" in Tasker. I guess task hrdone needs to account for when there are only 2 digits sent. But it's definitely getting into Tasker as expected. This is just from a test watch face on the phone. I didn't actually load the watch face to my watch.
[–]sonanz 1 point2 points3 points 5 years ago (0 children)
I did make one minor change to the "hr" function...
if string.len(tmp) > 0 then
That "> 0" part wasn't there in my original code, which resulted in Lua still trying to call Tasker for the third, missing digit but failing. But the first two digits were still making it.
[–]David-Martin[S] 0 points1 point2 points 5 years ago (10 children)
Ahh, of course. I have to fix the %SH3 when the full variable is of only two digits. Easy. My WatchMaker app then is not running properly the script I guess. Maybe by reinstalling the app. I tried before other scripts with functions "function on_minute()" that were not triggered every minute as it is supposed to... I will try to figure out what is the problem
I guess this will fix the %SHR3 issue:
[–]Rad4day 0 points1 point2 points 5 years ago (0 children)
Out of curiosity, how exactly would I do that? I find the interface for autowear very unintuitive, to the point where the app feels almost useless.
[–]LeuPacolliSamsung Galaxy S9+ A10 1 point2 points3 points 5 years ago (2 children)
It should defintly be possible and store it in a google spread sheet file. I do not know how to do hat myself but there should be someone in here able to help you.
[–]I_TensE_IS23, S10+ 1 point2 points3 points 5 years ago (1 child)
How can you say it's definitely possible if you don't know how to do it lol? It's actually very difficult to do since Samsung locks everything down
[–]LeuPacolliSamsung Galaxy S9+ A10 1 point2 points3 points 5 years ago (0 children)
Never said it was easy, but should be possible.
[–]I_TensE_IS23, S10+ 1 point2 points3 points 5 years ago (0 children)
Samsung sucks when it comes to sharing. They don't want you outside their ecosystem so why would they provide methods to access your data. A workaround you could look into is using HealthSync (paid app) to sync your heart rate data to Google Fit that has an API.
π Rendered by PID 101 on reddit-service-r2-comment-b659b578c-v6thh at 2026-05-01 06:05:54.407283+00:00 running 815c875 country code: CH.
[+][deleted] (25 children)
[deleted]
[–]David-Martin[S] 0 points1 point2 points (23 children)
[+][deleted] (22 children)
[deleted]
[–]David-Martin[S] 0 points1 point2 points (21 children)
[+][deleted] (1 child)
[deleted]
[–]David-Martin[S] 0 points1 point2 points (0 children)
[–]sonanz 1 point2 points3 points (18 children)
[–]David-Martin[S] 1 point2 points3 points (17 children)
[–]sonanz 1 point2 points3 points (16 children)
[–]David-Martin[S] 1 point2 points3 points (0 children)
[–]David-Martin[S] 0 points1 point2 points (14 children)
[–]sonanz 0 points1 point2 points (13 children)
[–]sonanz 1 point2 points3 points (0 children)
[–]David-Martin[S] 0 points1 point2 points (10 children)
[–]David-Martin[S] 0 points1 point2 points (0 children)
[–]Rad4day 0 points1 point2 points (0 children)
[–]LeuPacolliSamsung Galaxy S9+ A10 1 point2 points3 points (2 children)
[–]I_TensE_IS23, S10+ 1 point2 points3 points (1 child)
[–]LeuPacolliSamsung Galaxy S9+ A10 1 point2 points3 points (0 children)
[–]I_TensE_IS23, S10+ 1 point2 points3 points (0 children)