microsoft-band

Extracting accelerometer data from Microsoft Band

这一生的挚爱 提交于 2019-12-24 13:37:55
问题 I am trying to do an analysis of data from various fitness tracker devices and i need to extract the accelerometer data from microsoft band jaw bone and Basis Peak for this. I know they have the analyzed data in their app, so the data must be somewhere on my phone, but how do i access it? Does someone know how can i do this? 回答1: Jawbone does not provide a way to access the raw accelerometer data. However, you can programmatically access the events (e.g., steps, sleep, heartrate) generated

Web Tile works once but never refreshes

帅比萌擦擦* 提交于 2019-12-23 05:39:10
问题 I have developed a one page web tile using the online tool. The URL returns JSON from my own service. The first time the tile runs the data is correct on the band, after that though it never ever refreshes. I have looked into the forums and tried things out, including refreshing with the sync on the phone and ensuring the tile is closed. The headers on my service do not include Last-Modified or ETag as suggested in forums. Doing a post in the browser on my phone and desktop works like it

Microsoft Band SDK use with Windows Runtime Component

自古美人都是妖i 提交于 2019-12-23 01:20:05
问题 Is it possible to use the Microsoft Band SDK from within a Windows Runtime Component? GetBandsAsync works, but it fails when connecting using: IBandClient bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]) I am using Microsoft Band SDK 1.3.10518. I have added rfcomm capabilities to the app package manifest and I get a the following exception: System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime.InteropServices, Version=4.0.0.0, Culture

Microsoft Band SDK use with Windows Runtime Component

ぐ巨炮叔叔 提交于 2019-12-23 01:19:11
问题 Is it possible to use the Microsoft Band SDK from within a Windows Runtime Component? GetBandsAsync works, but it fails when connecting using: IBandClient bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]) I am using Microsoft Band SDK 1.3.10518. I have added rfcomm capabilities to the app package manifest and I get a the following exception: System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime.InteropServices, Version=4.0.0.0, Culture

Access to Microsoft Band SDK (PC and Android)

穿精又带淫゛_ 提交于 2019-12-21 09:39:13
问题 So, I am currently embarking on a research project using multi-person physiological data and was planning to use the Microsoft Band to do so, I was quite surprised by todays message that the Band was discontinued and the SDK is no longer available. However, as there is still considerable promise for the research project I would still like to do it and am in need of help of you fellow developers. Would anyone be so kind as to share the latest version of the SDK for PC and Android with me? I

Accessing Ambient Light Sensor on Microsoft Band

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-20 10:58:12
问题 There is an Ambient Light Sensor with Microsoft Band, and some apps in the Windows Store show the ALS value in Lux, But I can't find a way in the Band SDK to read the ALS Lux value. How can I access the ALS? 回答1: As mentioned, that sensor is not exposed by the public SDK - but it is apparently possible to get the information (and a heap of other stuff) by using the raw Bluetooth interface - the public API is a kind of wrapper around the raw Bluetooth protocol. So, if you're not afraid of

WP8.1 C# Windows Phone 8.1 Background Task WriteableBitmap Thread Error

佐手、 提交于 2019-12-16 18:04:47
问题 I am trying to update the band Me Tile image from a background task and i get the following error at WriteableBitmap: System.Exception: The application called an interface that was marshalled for a different thread. (Exception from HRESULT: 0x8001010E (RPC_E_WRONG_THREAD)) at Windows.UI.Xaml.Media.Imaging.WriteableBitmap..ctor(Int32 pixelWidth, Int32 pixelHeight) at BackgroundTaskCS.UpdateBandTask.<LoadImage>d__f.MoveNext() --- End of stack trace from previous location where exception was

Adding tile to MS Band warning (iOS)

你离开我真会死。 提交于 2019-12-13 19:02:57
问题 I am trying to add a tile with code from the MSBand documentation. EDIT: I never get the log output from these 2lines: NSLog(@"adding tile..."); if(error)NSLog(@"error adding tile to band: %@", error); , which i find very odd NSError *error; MSBIcon *smallIcon = [MSBIcon iconWithUIImage:[UIImage imageNamed:@"MSB_white_x"] error:&error]; if(error)NSLog(@"small icon error: %@", error); MSBIcon *tilecon = [MSBIcon iconWithUIImage:[UIImage imageNamed:@"MSB_white_xx"] error:&error]; if(error)NSLog

Can I add a custom button using Microsoft Band's SDK?

微笑、不失礼 提交于 2019-12-13 18:16:14
问题 I've been toying with the Microsoft Band SDK all morning. I've figured out how to send notifications, and read sensor data. However, I've been trying to add buttons with 'click handlers', so that i can add custom buttons, and trigger actions upon click/tap. I can not figure out how to do this. Has anyone done something similar? 回答1: The just released version of the Band SDK allows an application to create custom tile page layouts that can include buttons. The application will be notified when

Microsoft Band tiles

柔情痞子 提交于 2019-12-12 06:09:57
问题 When I create a new tile ( TileManager.AddTileAsync ) that tile does not appear in the Microsoft Health app on the phone. Additionally, if I loop through all the tiles in the tiles collection (using TileManager.GetTilesAsync() that new tile is the only one that is returned -- the default tiles provided with the band are not returned. Am I correct in assuming that it is up to the app I create to provide a storage mechanism and tile management for these tiles? Where to store it? In isolated