Is it possible to sync Bangle.js 2 time to smartphone time? #4174
Replies: 1 comment
-
Posted at 2022-01-20 by johan_m_o Are you using an Android device and Gadgetbridge? If so, check the Gadgetbridge settings for "Sync time". If you're using an iPhone I have no idea. Posted at 2022-01-21 by @fanoush Also in App loader webpage there is option to sync time when connecting - the rightmost settigs tab. Posted at 2022-01-21 by malaire According to [1] Bangle.js 2 doesn't support getting time from Gadgetbridge. Also [2] says that "sync time" only syncs when watch gets connected to phone, which is not enough. Bangle.js 2 is quite inaccurate and needs sync several times per day. [1] https://www.espruino.com/Gadgetbridge#how-it-works-internally Posted at 2022-01-21 by malaire Yes but that is not automatic. Posted at 2022-01-21 by johan_m_o That page doesn't mention anything about syncing time, as far as I can see. But maybe that's what you're basing your assumption on. I have not seen that Bangle.js 2 is that inaccurate... But of course, I do a lot of tweaking and often end up disconnecting and connecting many times during a day. Will have to test that at some point. Posted at 2022-01-21 by malaire
Yes, it lists what is supported - time is not listed so it's not supported.
For example I synced my Bangle.js 2 yesterday evening and it had <1s error. Currently error is already over 3s and it's been well under 24 hours. (Acceptable error is 2s at max, but preferably well under 1s.) Posted at 2022-01-21 by johan_m_o Ah, but syncing time is not sent as a message and messages is what you see listed on that page. I agree that it might be good to have it mentioned in there somewhere, but I wouldn't say that the page says that syncing time isn't supported. About having syncing occurring at other times than when connecting, I leave that to @gfwilliams... Posted at 2022-01-21 by @fanoush
this is something that can be hopefully improved EDIT: here https://github.com/espruino/Espruino/blob/master/targets/nrf5x/jshardware.c#L1006 it looks like the same time source is used so not sure why it would be so inaccurate (unless you rebooted the watch) Posted at 2022-01-21 by myownself @numerist has also mentioned problems with accuracy of the clock. I am struggling to find the thread, but the fact that he wanted to use GPS time may have been a red herring/distraction from whatever @malaire is also seeing. Posted at 2022-01-21 by malaire I might've reset the watch, I'm not sure. I'll have to recheck once I get my watch to work with Bluetooth again. But even that 1.73 seconds per day would accumulate to quite large error since Gadgetbridge doesn't even have daily sync. Posted at 2022-01-21 by @fanoush
Well, it is also temperature dependent but as long as you wear the watch the temperature may not drift a lot. So if temperature is stable the daily drift of your specific crystal can be constant (?) so it could be compensated in software. This of course matters mainly if you cannot sync with phone/internet. BTW there is also BLE service for time defined so one could have some accurate time source around (e.g. ESP32 connected to internet adverting this over BLE) and then have app on bangle to scan for it and sync the time. Posted at 2022-01-21 by malaire
Wouldn't I need to manually unpair Bangle.js 2 from my phone, pair to that timesource, then unpair from timesource and pair with phone? Posted at 2022-01-21 by @fanoush No if bangle is the active one in this, currently you can have one connection into Bangle and one from Bangle to some other device. They are unrelated. Also BTW every recent iphone have such service implemented (as per 40.12.4 Available Services ) But this could be also done over advertisements so no connection would be needed, just scan for devices around and get the data directly from the packet. However that would be custom solution but relatively easy to do on both sides. maybe even esp32 board running espruino could do such current time advertisement (while syncing with NTP servers over wifi) Posted at 2022-01-21 by Numerist @MyOwnSelf I'm interested to know whether others have the gaining problem that @malaire and I have noticed. Gaining 2 seconds a day is okay with me only if I have a way to automatically correct that daily. At present the only way I know is to reload my watch script manually, although just now even that didn't work. If I could sync to an iPhone, I'd be all set. I'm not aware that's possible. I'm not a coder and know very little of javascript or about Bangle.js. I still don't know whether on Bangle.js 2 the GPS time, once set outside, still works inside, and whether I can access it continually. That seemed to solve my time problem on Bangle.js 1. Posted at 2022-01-21 by malaire hmm, ok, I thought I read somewhere that Bangle.js 2 only supports one Bluetooth connection at a time. I wouldn't mind a custom solution. I'm a programmer and my Debian 11 desktop computer is synced to NTP and has Bluetooth dongle, but I don't know enough of Bluetooth to try implementing something like that. Posted at 2022-01-21 by johan_m_o
That's correct. Posted at 2022-01-21 by Numerist
Posted at 2022-01-21 by Mark_M Yeah, I got same idea. Even tried to write such time announcement service in Linux. But low experience with BLE and shortage of time holds me... Posted at 2022-01-21 by malaire I can't resist trying to learn something new, so I managed to implement quick&dirty BLE time broadcast for Debian 11. Broadcast side (bash, bluez), one broadcast per second for 60 seconds:
Receiver side,
Posted at 2022-01-21 by myownself Nice quick work. Posted at 2022-01-21 by malaire Currently accuracy is quite bad - that To get better accuracy I'd need to learn how to send broadcast at once without delay. BLE seems to have inherent random delay of around ~10 ms so e.g. 1 ms accuracy is not possible, but I think that accuracy of <100ms should be possible. Posted at 2022-01-21 by malaire btw, there is a Python BlueZ example here and Bangle.js 2 does see those messages, so that would probably be better base (no need for bash or sudo), but I don't really know python so I didn't try modifying that code. Posted at 2022-01-21 by diego Hi, the code below should work to send the time to the device: it opens the connection, sends the command to update date, and then closes the connection.
I'm using something similar to this to periodically sync weather data and my personal agenda with the device Posted at 2022-01-21 by malaire Does that require that Bangle.js 2 is not connected to phone or computer, as it can handle only one Bluetooth connection at a time? Posted at 2022-01-21 by diego Yes, I don't use the gadgetbridge, so it works for me. Posted at 2022-01-21 by Mark_M yes, we do not want to connect, just to scan for broadcasted ads with a time in data. May be in future there should be a certificate or at least a shared public key for security. So some hacker do not set all Bangles around to a wrong time. :) Posted at 2022-01-21 by myownself Thanks @diego - I think I might end up using this, I think connecting will result in a much more accurate time than relying on the right advertisement being picked up at the right time. I had a look at Bleak recently (it is in the Espruino tutorials somewhere), your example will be useful to me for another project I think. Posted at 2022-01-22 by @fanoush
I think it is but not with such simple code. Great quick example. Few random ideas - manufacturer is ok too but if you have more espruino devices you'll get more matches, with serviceData it would be unique https://www.bluetooth.com/specifications/assigned-numbers/ the 16bit assigned numbers for different entities are unique and not overlapping between types so that's why I think you can put it safely to serviceData even if it is not id for service as for accuracy - ntp prococol can do it quite well over internet, bluetoth timing is strict, advertising packets are timed/spaced in deterministic way. the bash+hci command is probably the worst part here. I tried latest espruino with esp32 yesterday, looks like it can do ntp over wifi and can do Bluetooth advertising. I hope we could possibly generate advertising packet (or scan response packet) on the fly there. But anyway even second accuracy is good enough too. EDIT: for esp32 to be usable for that we'd probably need something like this https://github.com/gmag11/ESPNtpClient to have the time in esp32 accurate to 1ms Posted at 2022-01-22 by @fanoush
I guess both ways could work. The callback in setScan gives you the packet as it is received, not sure whether with connection you can get it faster. Connection/GATT stuff is another layer on top received packets that may slow things down or make it less deterministic. Advertisement packets are much simpler/lower level. Try with nrfconnect on android, there is history of advertisement packets received - click 'MORE' on device list to see how they arrived to the phone - it is not random at all. Posted at 2022-01-22 by malaire
I thought so too but in my tests that connection takes several seconds while advertisement-solution can be improved down to e.g. 50ms delay between updating advertisement, so using connection is a lot worse for some reason.
No it's not deterministic - Bluetooth protocol has builtin random delay for timing which is around 10 ms or so, so accuracy better than that is not possible using normal API. (But yeah it's good enough.) Posted at 2022-01-22 by @fanoush
Oh, you are right for the advertising, there is delay indeed. Decribed e.g. here https://www.argenox.com/library/bluetooth-low-energy/ble-advertising-primer/ didn't know this. Makes sense. However it is not like that for the rest, the rest has strict timing so receiver device can wake at the precise moment sender is supposed to send the packet, that is part of the 'low energy'. But anyway even with advertising the timing for scan response packet may be better. This is with active scanning, it is second packet for advertising data. EDIT: Posted at 2022-01-22 by malaire Scan response timing seems deterministic only in relation to preceding advertising packet. For that to be useful I'd need to I don't think either of those are possible with normal APIs since advertising isn't meant to be used for sending time-sensitive data like this. (Sure both would be possible in theory with custom Bluetooth protocol stack.) Posted at 2022-01-22 by Numerist @diego Thanks. Posted at 2022-01-22 by @fanoush
Yes. This may actually work with nordic softdevice 6.1.x , see espruino/Espruino#2000 since 6.1.0 you need to supply static buffer that needs to be allocated for whole advertising time. So most likely current data will be sent as is from that buffer, so updating timestamp in it periodically or when some event happens (like when someone asks for scan response) may work. Documentation says it should not be modified but if one does not change the structure and just update timestamp in specific location it may work. Anyway, opening connection and getting time from characteristics (possibly few times) may be easier after all if millisecond accuracy is preferred. Posted at 2022-01-22 by diego This is one approach: it connect to bangle then sends the computer time (hopefully a good time) On my device, this is the average for 100 samples: 0.05636221885681152s, so I could adjust to add 50ms on the time sent to the device to compensate. Posted at 2022-01-22 by diego Sorry, @numerist, I think I was still a bit programmy on my response. As the communication of the command between pc and bangle is kind of fast, there's little need for compensating (50ms in my tests, but you can antecipate and correct for that if you wanted) Posted at 2022-01-22 by diego Also, I've just made a pex (executable) file from the sample script I've sent earlier, it's attached, if you want to try it out. The pex is just a glorified zip file, so you can open it and check out inside, but you can execute with: The usage:
Attachments: Posted at 2022-01-22 by Numerist @diego Even better would be something like what worked for Bangle.js 1: set the GPS time once, and it controls the watch indefinitely. I still don't know if that's possible with Bangle.js 2. People say the GPS setup on the new watch is different, but what does that mean for this question? Posted at 2022-01-22 by malaire My BLE time advertising is starting to work quite well. (I switched to Rust for broadcast code instead of bash as I know Rust quite well.) Current version doesn't actually change watch time, just applies the delta to displayed time. https://www.youtube.com/watch?v=UikY25KiXDU Posted at 2022-01-22 by @fanoush Oh nice :-) BTW one possibility for Service Data is to advertise "Date Time" 0x2A08 as per https://forum.micropython.org/viewtopic.php?t=9577&p=53698
Then one could pass options
and then on another device this worked
Posted at 2022-01-22 by malaire I'm now including milliseconds also for more precision. Bangle.js 2 doesn't support setting time at millisecond precision, but this works quite nicely (wait until next exact second and then set time):
Posted at 2022-01-22 by malaire
Posted at 2022-01-22 by @fanoush or just the 0x2a0c "Exact Time 256" which is without adjustReason They are nested structures, see my current ESP32 code is
Posted at 2022-01-22 by malaire It seems that the 0-10ms random delay is not added to first advertisement, only to subsequent advertisements. I'm currently testing code like this which seems to give quite steady rate of one advertisement every second (I hope to publish full code soon, maybe tomorrow):
For example here are differences in milliseconds of Bangle.js 2 time and my computer time for 5 minutes, one update every 10 seconds:
You can even see the clock drift here. With 1.73s/day you'd expect clock to drift 6ms in 5 minutes - at least for this short test it's clearly more than that. Posted at 2022-01-23 by pelrun The 10ms jitter is a deliberate collision avoidance mechanism in BLE. Do you really need sub-10ms accuracy on a watch? Posted at 2022-01-23 by malaire No not really, I would've been happy with 200ms accuracy, but it's fun to see how accurate I can get. I could add my own 10ms jitter to the 900ms sleep. The main thing is that there is no random delay between getting time from computer and sending advertising with that time. Posted at 2022-01-23 by Mark_M additionally a delay can be figured out if there are 2 BLE devices on a computer. Posted at 2022-01-23 by malaire Advertiser+Scanner could be used to advertise really accurate times:
Then Bangle.js would need to receive two subsequent time advertisements to know exact time first advertisement was sent. ps. I've now added my initial code to GitHub. Posted at 2022-01-23 by @fanoush I have also modified your bash example a bit, it runs on raspberry pi and uses the 0x2a0c "Exact Time 256"
Posted at 2022-01-24 by malaire That's certainly simpler than cross-compiling my Rust code to Raspberry Pi. (I just got that working and I'm now reading on systemd services to make this a service. I can provide executable for latest Raspberry Pi OS if anyone wants to test this.) Posted at 2022-01-24 by BartS23 It may be possible to make it much simpler. The GPS chip already provides the time about 1-2 seconds after switching on (even without fix). I wrote an app, which turns on GPS every 4 hours, sets the clock if necessary and then turns off the GPS again. If no time is received within 10 seconds, the GPS is also switched off. A log file is written to measure the deviations and possibly make adjustments in the rhythm (this must be deleted manually). Unfortunately I am not that experienced in writing js. Posted at 2022-01-24 by Numerist Does your script work indoors? I've been asking here how to access the GPS, including after an outdoor fix, and whether it continues to work indoors, but no one has answered. Bangle.js 2 is clearly different from Bangle.js 1 in this, but again no one has said how that affects getting an accurate time. Posted at 2022-01-24 by myownself What sort of drift have you noticed so far between the two? Aren't the crystals in the GPS and Bluetooth at the same frequency (32.768 kHz)? Posted at 2022-01-24 by Mark_M GPS time can be good and precise. But yes, indoor reception can be very poor. Also it is UTC. You need to keep timezone and time savings adjustments somewhere. Posted at 2022-01-24 by Numerist With Bangle.js 1 I had the GPS run the clock after setting the GPS outside. It worked. Indoor reception, which is nil, didn't matter. Time zone etc. are no problem: they're in settings. Again, what's the difference in how GPS time works with Bangle.js 2? Posted at 2022-01-25 by Mark_M As I understand there is no much difference. GPS should receive a time from a sat and then it can keep it in its RTC. My uderstanding, the main battery is connected to AT6558 backup power supply. When you turn off GPS power AT6558 will keep time in RTC and ephemerides in memory. Posted at 2022-01-25 by Numerist I've read that there are a few significant differences in the GPS operation. I myself do not know. Today I did a complete reset and uploaded only one clock (Anton). In 8 hours it gained a little less than 2 seconds. Does anyone else have such an observation? Does your Bangle.js 2 gain throughout the day? (Then I uploaded my clock. It reset Anton (and set itself) to the correct time.) Posted at 2022-01-25 by BartS23
In my apartment and at work it also works indoor.
I reset my GPS chip to factory settings with
and still got a time within a second. Posted at 2022-01-25 by malaire
Yes, my Bangle.js 2 is also gaining several seconds per day (I havn't measured it exactly yet.)
Every time you connect to https://banglejs.com/apps/ the watch time is set by that website. Posted at 2022-01-25 by myownself @gfwilliams I noticed espruino/Espruino#2125 last night. Is this related, or am I conflating two completely different things just because they relate to timers? Posted at 2022-01-25 by @gfwilliams @MyOwnSelf they're different - the high res timer is very specifically for sending timed pulses (and software PWM). The time on Bangle.js comes from the RTC hardware on the chip, which is driven directly from a low speed oscillator. About the only thing that can change the time is if you do a hard reset or run DFU - during that time the RTC won't be running until Espruino boots. A second or two of drift in smartwatches/PCs/phones is pretty normal I'm afraid - the oscillators are usually rated at around 30 parts per million. Since there are 86400 seconds in a day, Usually you don't notice because phones/PCs/etc keep time updated from the internet all the time Posted at 2022-01-25 by @gfwilliams Just a quick note on the BLE advertising code above - I didn't spot it at first. Looks like Posted at 2022-01-25 by @fanoush It uses filter for serviceData, also maybe with setScan you get the packet with time sooner just when it arrives so that timestamp inside is more fresh? Was thinking to suggest requestDevice at first too but then was thinking setScan with filter may be better. Also if you get more packets (from one or more devices) then you have more data to adjust the time. Posted at 2022-01-25 by Numerist I'm noticing about 5 seconds' advance per day on Bangle.js 2. You helped me to get GPS time into Bangle.js 1 and read often enough. Is the same possible for Bangle.js 2? Any specifics? Alternatively, is it possible for Bangle.js 2 to access an iPhone's time via a script for the watch? Or is there some other way to avoid the large gain per day that others have also noticed? Posted at 2022-01-25 by Numerist Sorry, I had forgotten that uploading from the computer resets the time. Let us know how much your watch gains per day. Posted at 2022-01-25 by malaire I just did a 3-hour-test and Bangle.js 2 gained 0.68 seconds in 3 hours, which is about 5.4 seconds per day, so about same what you got. Posted at 2022-01-26 by @gfwilliams @fanoush Posted at 2022-01-26 by @fanoush
the total time may be faster but with setScan you get the packet data sooner? As I understand it the Of course it doesn't matter with precision to seconds but @malaire tried to do more Posted at 2022-01-26 by malaire
I don't think that matters as there is even worse inaccuracy. I've now realized other 0-20 ms inaccuracy in BLE advertisements I overlooked before: Each advertisement is send on 3 channels with up to 10 ms between, and receiver doesn't know which one they received. I've been testing to make Bangle.js 2 determine its clock drift and accuracy from advertisements just doesn't seem to be enough to do that (quickly enough). So next I'm going to test connecting watch to current time device and sending current time via that connection with 1 ms accuracy (custom format). Posted at 2022-01-26 by @fanoush
There is still scan response. I will try the hack with SoftDevice >=6.1 with updating timestamp in scan response static buffer on the fly (there is even BLE_GAP_EVT_SCAN_REQ_REPORT event you get when someone requests scan response, see e.g. this) and see whether it breaks or softdevice will pick up the changes.
That may be easier and more predictable after all. Posted at 2022-01-26 by Mark_M
theoretically receiver should know which one they received. Because this reception will happen on a particular channel. I am not sure if that low-level info can be available from the device.
this is promising approach. I think a checksum needs to be sent as well, because there can be a risk of sending partially updated buffer. Posted at 2022-01-26 by malaire
Yes, I read that also, but the Rust library I'm using doesn't seem to support that. (BlueR - official BlueZ library) Posted at 2022-01-26 by @fanoush
with the HCI way there is 0x0006 LE Set Advertising Parameters Command with Advertising_Channel_Map parameter with 3 bit array for channels 37,38,39 Posted at 2022-01-26 by malaire
Strangely this seems to be much worse. Connecting to get few bytes can take several seconds and Posted at 2022-01-26 by HilmarSt
... as long as "Always update time when we connect" is not switched off, like on my PC (I did not do this).
... or the AT6558R has a RTC inside that's not affected by a reset to factory settings and only loses time with a flat battery. Posted at 2022-01-26 by myownself I may be misunderstanding, but does the time it takes to get a connection really matter? Surely you connect first, then check and send the accurate time. The time to check and send is the only bit that matters, isn't it? Posted at 2022-01-26 by malaire I don't think it matters (except for maybe power usage). But the problem was that the "check and send the accurate time" takes 90-100 ms usually and occasionally up to 300 ms, i.e. it's not accurate at all. Posted at 2022-01-26 by @fanoush it may be related to negotiated connection interval, also in BLE this can be done via subscribing to notification, not reading. when you subscribe the other end sends data when it makes sense (temperature changes, in this case seconds value changes) and you just receive it without request Posted at 2022-01-28 by malaire If anyone else is using Raspberry Pi as time source, note that by default new Debian 11 -based image uses awful You can install Posted at 2022-01-28 by malaire Now that that is fixed I'm finally starting to get stable clock drift measurements. Current code can measure Bangle.js 2 clock drift in just 5 minutes somewhat accurately, usually giving 61-69 ppm for me, with occasional worse values. Basic idea:
Posted at 2022-02-01 by Numerist [from another thread] Needs a UUID? NRF input? A little more code? Can someone here help? Posted at 2022-02-02 by @gfwilliams It may be possible to use the JS ANCS code from @jeffmer as a base. Now ANCS is implemented in Espruino, most of the work is done internally and it's just the bit I highlighed you need. It'll need modifying to use Apple's time service UUID, as well as a few other changes. It's going to be a decent size job though. Posted at 2022-02-02 by jeffmer Actually, I have a bit of code that sets the Bangle time using the iPhone Time service. However, I did it as a quick hack from the original ANCS app and it is a bit clumsy as you must first be paired with the iPhone and the routine then disconnects and reconnects so that it can create the needed GATT service. The code is here if you would like to try it. Posted at 2022-02-02 by @gfwilliams @jeffmer I notice you've got a Right now as I know the JS implementation of Bluetooth Central can only deal with one connection, which is handled with a global Posted at 2022-02-02 by jeffmer @gfwilliams Yes, I have the function implemented in my Bangle firmware, however, getting time does work if it is not defined. It is a bit frustrating as actually its not dealing with >1 central device, as you are connecting back to to the iPhone you are already connected to for ANCS. If you could get the address of the iPhone you are connected to then something like Posted at 2022-02-02 by DDDanny I can only confirm that the Android/Gadgetbridge TimeSync after connect works like a charm.
Posted at 2022-02-03 by Numerist @jeffmer The left side of the IDE delivers these apparently non-fatal messages on loading your code with mine: Anyhow, how often (at what interval) does your code make the watch's time the same as the iPhone's time? (I'll see how the experiment's gone in 12 hours.) Posted at 2022-02-03 by jeffmer The code synchronises time once when you invoke Posted at 2022-02-03 by @gfwilliams Just a note that on the cutting edge firmwares I added a field to Posted at 2022-02-03 by Numerist @jeffmer If your code synchronizes only once, is there an easy way to get it to do that 4 or 24 times a day, for example? Just call the function at the desired times? I'd be grateful for any further advice, including whether Gordon's update changes what I may or need to do. Posted at 2022-02-03 by Mark_M An easy and universal way to make regular updates is to create a widget that will sort of a backgroung job. It will get data from a time server and set the watch RTC. Then any watchface will get the correct time. Posted at 2022-02-03 by malaire
no, that is awful: clock error can be over 3 seconds after Gadgetbridge sync Posted at 2022-02-03 by Numerist @Mark_M
Which devices will provide the synchronization? Posted at 2022-02-03 by malaire
Using Bluetooth LE ads should in theory work on any device which can send those ads. However I only have example code for Linux (tested in Debian 11 and Raspberry Pi OS) as I don't know how to use Bluetooth LE on other devices. Posted at 2022-02-03 by jeffmer Thanks Gordon, I will see what happens if I use that instead of disconnecting and reconnecting. @numerist Better to wait to see how this works out as it would make the operation much more lightweight. Posted at 2022-02-03 by malaire This is a fun project, now I'm trying to implement temperature-corrected clock drift. :) This graph shows clock drift on my Bangle.js 2 in PPM in different temperatures (Celcius). Attachments: Posted at 2022-02-03 by Mark_M Cool! Also does it show the watch RTC oscillator is not T compensated (not TCXO)? Posted at 2022-02-03 by myownself This is really interesting! Guess it will vary somewhat from watch to watch? On a tangentially related note, I was looking at the two temperature sensors earlier (barometer and internal temperature sensor), and I was surprised that they read pretty much the same. I don't know why I have in my head that another component might have a temperature sensor built in but not exposed... I might be misremembering something though. Posted at 2022-02-03 by malaire @Mark_M
yep, TCXO would be much more stable over temperature range.
Most likely, and this article says that crystals have aging effect so it also depends on watch age.
What internal temperature sensor ? Posted at 2022-02-03 by myownself https://www.espruino.com/Reference#l_E_getTemperature This one.
Posted at 2022-02-04 by Poolitzer
Want me to test that? I have a raspberry pi 3B+. Would be much appreciated if you can provide a step by step guide to set the measuring up. I can probably gather it from the thread but it will take quite a bit of time. Posted at 2022-02-04 by malaire That would be nice. Is it OK if I just give the compiled binary with installing instructions? (I could also give cross-compile instructions but that requires installing Rust etc. on separate computer and has only been tested in Debian 11.) Also this may require current (Debian 11 based) Raspberry Pi OS. I'm using the 32-bit OS currently. Posted at 2022-02-04 by Poolitzer Yes, current 32 Bit raspi os here as well. I am fine with the compiled binary, nothing on it which can be abused. Posted at 2022-02-04 by malaire ok, here are quick instructions: Get You can just run extracted
If you didn't have Then upload ppm_logger.js to Bangle.js 2, it will show one line per 10 minute interval (by default) with average/min/max temperatures, interval length in seconds and measured clock drift in PPM. Some variance in PPM is expected especially if using default 10 minute interval, so I usually let it run for some time. Here's what it looks like for me currently (I should probably add logging to file also): Attachments: Posted at 2022-02-04 by Numerist I assume (as a non-programmer) that the recent (interesting) posts aren't about trying to get the time from an iOS device. Do correct if that's wrong. Posted at 2022-02-04 by Mark_M this is for Linux Posted at 2022-02-04 by Poolitzer I followed your steps, they worked perfectly. Here are my numbers. Attachments: Posted at 2022-02-05 by malaire Yep, that's clearly different. My Bangle.js 2 has about 63 PPM at 19 C and yours is around 71 PPM. btw, the graph I showed earlier was made with LibreOffice Calc: I measured some temperature/PPM pairs, made a chart of them in LibreOffice Calc and added trend line (polynomial, degree 2). Posted at 2022-02-07 by Numerist @jeffmer Posted at 2022-02-08 by jeffmer Sadly, you still need to disconnect and reconnect to set things up properly. I think it would need to be done in the firmware to work efficiently. Posted at 2022-02-08 by @fanoush
So you did try without disconnect and it does not work? Iphone refuses connection from Bangle when it is already connected to it in opposite direction? I was thinking ANCS works in same way. Normally Espruino can do connection while being connected to, never tried with same device though. Will test this between two nrf52 espruino devices, both connecting to the other one while having console on serial. Posted at 2022-02-08 by jeffmer Yes, I think it is more to do with the internal Gatt structure not getting set up properly. I have not fully debugged as I only tried it on a Bangle - need to try it on a dongle to see all the error messages. Posted at 2022-02-08 by Numerist Does that mean disconnecting and reconnecting only once? Or how often? (A further question: how much of your code is needed, and how should that be used for a given watch script?) Posted at 2022-02-24 by Numerist I assume from the above multiple discussions of some weeks ago that the Bangle.js cannot use Apple's iOS time service in an efficient and reliable manner to regulate the watch's timekeeping via an iPhone. If that's incorrect, it would be helpful if someone would elaborate. Meanwhile, other ways of regulation are being created (not by me). Posted at 2022-02-24 by jeffmer I think its fine if you want to synchronise with the iPhone once a day, however, at the moment, as it seems to involve disconnection/reconnection, it would not be advisable to do it at a much greater frequency. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2022-01-20 by malaire
Is it possible to automatically sync Bangle.js 2 time to smartphone time? Either by somehow requesting smartphone time from Bangle.js 2, or by "pushing" time from smartphone to Bangle.js 2 ?
(I'm not interested syncing to GPS time as GPS doesn't work indoors, and internet access isn't implemented yet so I can't sync to my webserver yet.)
Beta Was this translation helpful? Give feedback.
All reactions