sony-smartwatch

Sony SmartWatch 3 (SWR50) no longer returns Sensor.TYPE_LINEAR_ACCELERATION

你说的曾经没有我的故事 提交于 2019-12-24 03:14:57
问题 I am writing an application which uses the Sensor.TYPE_LINEAR_ACCELERATION. mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION); This was working up until recently however each SensorEvent now returns a values float array containing: NaN, NaN, NaN. I have tried the same code on an LG watch and it is returning values as I would expect. The versions of software on the SWR50 are: Android Wear 1.1.1.1929530 Google Play services 7.5.71 (1955121-534) Android OS 5.1.1

Sony SmartWatch - how to get host app package name

假装没事ソ 提交于 2019-12-23 03:16:43
问题 I would like to update the SmartWatch widget whenever the user changes the widget settings. I know it can be done by sending an WIDGET_IMAGE_UPDATE_INTEN intent, but it seems that I don't have the information of host app package name (i.e. com.sonyericsson.extras.smartwatch). How can I get "host app package name"? PS: Currently, I've hardwired the "com.sonyericsson.extras.smartwatch" name in my code. 回答1: Every time your widget extension is receiving an intent from the host application, the

Using Sony Camera API on AndroidWear

℡╲_俬逩灬. 提交于 2019-12-23 02:26:21
问题 I want to create an app that can start and stop recording from a Sony AS100VR camera using camera remote API. I can get the same working from my nexus using a direct Wifi connection, but when I establish a direct wifi connection from my Sony smartwatch, it fails at the SSDP detection stage. It's definitely connected to the camera, SSID over Wifi, but it can't detect it. I have tried playing with retries and timeout values, but I have sort of run out of ideas. it's falling into the catch catch

Is there an NFC API for the Sony SmartWatch 2?

风格不统一 提交于 2019-12-22 18:43:13
问题 We want to write an Android App for the Sony SmartWatch 2 which uses the device's NFC functionality to read and write NFC tags (such as Mifare or DESfire cards). NFC functionality is heavily promoted for the SmartWatch 2, however, I couldn't find any information on an open NFC API so far. My questions: Is there an open NFC API for the SmartWatch 2? If so, are there any restrictions on the mode of communication (Reader/Writer mode vs. P2P)? Where can I find related documentation? Thanks,

Is there an NFC API for the Sony SmartWatch 2?

百般思念 提交于 2019-12-22 18:43:08
问题 We want to write an Android App for the Sony SmartWatch 2 which uses the device's NFC functionality to read and write NFC tags (such as Mifare or DESfire cards). NFC functionality is heavily promoted for the SmartWatch 2, however, I couldn't find any information on an open NFC API so far. My questions: Is there an open NFC API for the SmartWatch 2? If so, are there any restrictions on the mode of communication (Reader/Writer mode vs. P2P)? Where can I find related documentation? Thanks,

SmartWatch h/w schematic [closed]

删除回忆录丶 提交于 2019-12-19 02:58:16
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Is it possible to get a schematic in addition to the H/W description at http://developer.sonymobile.com/services/open-smartwatch-project/smartwatch-hacker-guide/? 回答1: Sorry we will not be able to share schematics. Could you please be a bit more specific in regards to your question, and we will see what we can

SMS notifications in iOS6

半城伤御伤魂 提交于 2019-12-18 03:42:20
问题 I found SMS notifications are not supported in iPhone ,but I found a video on Pebble Smart watch which sends SMS notification and iMessage notification . Here are the video and the application links. http://www.razorianfly.com/2012/12/07/pebble-officially-announces-sms-and-imessage-support-for-iphone-video/ http://www.iphoneincanada.ca/iphone-news/pebble-watch-now-supports-iphone-sms-and-imessage-video/ https://itunes.apple.com/us/app/pebble-smartwatch/id592012721?mt=8 I also found on the web

Is there an NFC API for the Smartwatch 3 (SWR50)

十年热恋 提交于 2019-12-18 01:19:10
问题 Just to be sure and have clarification of that at first, is the NFC of the Smartwatch 3 just an embedded tag or is it a theoretically fully functioning NFC-chip? Hoping it's not just a tag, we want to build an Android Wear app using NFC and for this the biggest question is: Is there (gonna be?) a API to use the NFC chip of the SWR50? If not is there any other way to activate it, or maybe might an updated version of Android Wear bring support for the chip to the smartwatch? Any help is

Android SmartWatch respond to a Long_Press Event

落花浮王杯 提交于 2019-12-12 04:13:51
问题 I have my sonyericsson Smart Watch responding to Touch events quite nicely. Now I have to move on to other interactions. Is there a LONG_PRESS event implemented or do I just use the fact that there are several down events and one up? An example of a SWIPE_EVENT would be welcome too. 回答1: The SmartWatch supports the control extensions by sending touch events and swipe events. For touch, you will e.g. get PRESS, RELEASE and LONGPRESS events along with the coordinates. So yes, TOUCH_ACTION

Tap on SmartWatch screen in code

末鹿安然 提交于 2019-12-12 01:33:11
问题 When I touch the SmartWatch screen it wakes up from dimmed state. How can I in code do the same thing? 回答1: Refer to section 6.2 of the "SmartExtension API Specification" document that comes with the SmartExtension SDK: Extensions implementing the Control API also have the possibility to control the state of the accessory display. The display can be controlled via the CONTROL_SET_SCREEN_STATE_INTENT. As part of the Intent, you also need to specify what state you want to set. The following