Open dcgrove opened 3 years ago
Hi. Yes, the code should detect any Apple watch that is in range, whether Series 3 or 5.
Two things to try:
Very good project, but unfortunately, the AppleWatch firmware sold in China is not universal.
Whether the watch is unlocked or locked, the Data flags are 0x18.
Hi @neroxps - If you want to detect a Watch where the data flag is 0x18, have a look at line 60 in the yaml file. Change
if (data_flags == 0x98) {
to
if (data_flags == 0x98 || data_flags == 0x18) {
If this doesn't work, please send your full yaml, your watch series, and verbose debug log. Verbose logging can be set
logger:
level: VERY_VERBOSE
Hi @dcgrove - I wanted to check if you still needed help diagnosing this issue?
Hello, I have been using this successfully to detect my apple watch (series 5) for some time now. I recently tested to see if it picked up my wife's watch (series 3) by walking out of range of the ESP32 while my wife was in range and found that did not detect it. Shouldn't it have detected my wife's watch as well? My config is below.