SlideShare a Scribd company logo
1 of 36
Download to read offline
ANCSとAndroid Wear
徹底比較
GClue, Inc.
佐々木 陽
2014/3/27
Aka Beacon
ANCS Dev Kit
ANCS Akabeko
Aka Beacon Kit
BLEガジェット勉強会
https://www.facebook.com/groups/725670950801157/
はじめに
Appcessory
http://www.juniperresearch.com/viewpressrelease.php?pr=414
Juniper
https://www.abiresearch.com/press/wearable-computing-devices-like-apples-iwatch-will
ABI Research
2014年 1000万台
2018年 4億8400万台
ABI Research
Cisco
累計出荷台数
年間出荷台数
2018年 1億7000万台
Juniper
http://www.cisco.com/c/en/us/solutions/collateral/service-provider/visual-networking-index-vni/white_paper_c11-520862.html
Cisco
IoT
Next big thing
3200億円でGoogleが買収
Nest Oculus
2000億円でFacebookが買収
Next big thingは
AppcessoryやConnectedハードウェア
の分野からでてくる?!
Hardware
Wifi
Bluetooth
BLE
Hardware
Wifi Bluetooth BLE
hue TEPRA-Print SDK
Socket 7Xi RC-S390
Dice+
ANCSとAndroid Wear
ANCSって何?
Apple Notification Center Service (ANCS)
ANCSの目的は、BLEを通してiOSと接続されたアクセサリに、iOS
で発生する様々なNotificationを通知する仕組み
ANCSのデザイン3原則
- Simplicity(簡潔的)
- Efficiency(効率的)
- Scalability(スケーラビリティ)
Android Wearって何?
Small, powerful devices, worn on the body. Useful information when you
need it most. Intelligent answers to spoken questions. Tools to help reach
fitness goals. Your key to a multiscreen world.
- 体に装着した、小さくパワフルなデバイス群。 

- あなたがより情報を必要とする時の便利な情報。
- 音声での質問にこたえるインテリジェントな応答。
- フィットネスの成功を手助けするツール。
- マルチスクリーンワールドへのキー。
ANCS対応製品
STB-1000 Fitbit Pebble
Smart Light
Android Wear対応製品
G Watch MOTO 360
通信方式
ANCS Android Wear
方式 BLE
規定はしていない
BLE or Bluetooth
データ通信
ANCS Android Wear
方式
GATT
(Notify)
Intent
できる事比較
Notification
ANCS
Notification
Android Wear
スマフォ操作
音声入力
2:30
Ddconnect
ANCS発動条件
Notificationメッセージ
UILocalNotification
Apple Push Notification Service
Android Wearは発動条件
Notification
スマフォ操作
音声入力
2:30
Ddconnect
int notificationId = 001;
// Build intent for notification content
Intent viewIntent = new Intent(this, ViewEventActivity.class);
viewIntent.putExtra(EXTRA_EVENT_ID, eventId);
PendingIntent viewPendingIntent =
PendingIntent.getActivity(this, 0, viewIntent, 0);
!NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_event)
.setContentTitle(eventTitle)
.setContentText(eventLocation)
.setContentIntent(viewPendingIntent);
!// Get an instance of the NotificationManager service
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
!// Build the notification and issues it with notification manager.
notificationManager.notify(notificationId, notificationBuilder.build());
// Create intent for reply action
Intent replyIntent = new Intent(this, ReplyActivity.class);
PendingIntent replyPendingIntent =
PendingIntent.getActivity(this, 0, replyIntent, 0);
!
// Build the notification
NotificationCompat.Builder replyNotificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_new_message)
.setContentTitle("Message from Travis")
.setContentText("I love key lime pie!")
.setContentIntent(replyPendingIntent);
!
// Create the remote input
RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
.setLabel(replyLabel)
.build();
!
// Create wearable notification and add remote input
Notification replyNotification =
new WearableNotifications.Builder(replyNotificationBuilder)
.addRemoteInputForContentIntent(replyAction)
.build();
Notification 音声入力
Intent連携
ANCSの仕組み
通常のBLEハード
BLEハードウェア
Notify
Service 任意のUUID
Characterristic1 任意のUUID1
Characterristic2 任意のUUID2
BLEハード
Connected
Connect
Read/Write
Central Peripheral
ANCSの場合
BLEハードウェア
Notify
PeripheralとCentralが逆転
Service UUID 7905F431-B5CE-4E99-A40F-4B1E122D00D0
Characterristic UUID Type
Notification Source 9FBF120D-6301-42D9-8C58-25E699A21DBD notifiable
Control Point 69D1D8F3-45E1-49A8-9821-9BBDFDAAD9D9 writeable with response
Data Source 22EAC6E9-24D6-4BB5-BE44-B36ACE7C7BFB notifiable
Peripheral Central
Read/Write
Service
UUID 7905F431-B5CE-4E99-A40F-4B1E122D00D0
検索できるCharacteristic
0x2800
0x2803
69D1D8F3-45E1-49A8-9821-9BBDFDAAD9D9
0x2900
9FBF120D-6301-42D9-8C58-25E699A21DBD
0x2902
22EAC6E9-24D6-4BB5-BE44-B36ACE7C7BFB
Characterristic UUID Type
Control Point 69D1D8F3-45E1-49A8-9821-9BBDFDAAD9D9 writeable with response
Notification Source 9FBF120D-6301-42D9-8C58-25E699A21DBD notifiable
Data Source 22EAC6E9-24D6-4BB5-BE44-B36ACE7C7BFB notifiable
0x2803
0x2902
0x2803
GATT Primary Service Declaration
GATT Characteristic Declaration
GATT Characteristic Declaration
GATT Characteristic Declaration
Characteristic Extended Properties
Client Characteristic Configuration
Notification Source
Client Characteristic Configuration
Control Point
Data Source
UUDI 7905F431-B5CE-4E99-A40F-4B1E122D00D0
service
検索
ANCS
*Notification*
Notification Source
UID=3
Control Point
UID=3
Attribute=Titile, Message, AppID
着信などの通知
着信リクセスト
情報取得
Data Source
UID=3
Title= William T. Riker 

Message = Incoming FaceTime 

AppID= com.apple.facetime
電話が着信
Notification Sourceバイト数 処理概要
EventID 1 Bytes iOS notificationが追加(0)/修正(1)/削除(2)
EventFlag 1 Bytes 重要度を示すEventFlagSilent(1 << 0), EventFlagImportant(1 << 1)
CategoryID 1 Bytes カテゴリID
CategoryCount 1 Bytes
NotificationUID 4 Bytes
カテゴリ名 カテゴリID アプリ
CategoryIDOther 1 iMessage, フォトストリーム, APNS, UILocalNotification, GMail
CategoryIDIncomingCall 2 FaceTime, 電話
CategoryIDMissedCall 3
CategoryIDVoicemail 4 Line, Facebook Messanger, Twitter
!CategoryIDSchedule 5 リマインダー、カレンダー
CategoryIDEmail 6
CategoryIDNews 7
CategoryIDHealthAndFitnett 8
CategoryIDBusinessAndFinance 9
CategoryIDLocation 10
CategoryIDEntertainment 11
例)
Control Point
ID バイト数 概要
CommandID 1 Bytes 0
NotificaionUID 2 Bytes 32ビットの数値の値
AttributeIDs 任意のBytes AttributeIDs, Max Length
例)
Data Source
ID バイト数 概要
CommandID 1 Bytes 1
NotificationUID 2 Bytes アプリのパッケージ名
AttributeIDs 任意のBytes AttributeIDs, Attributes
Android Wearの仕組み
Notification
Notification
2:30
Ddconnect
int notificationId = 001;
// Build intent for notification content
Intent viewIntent = new Intent(this, ViewEventActivity.class);
viewIntent.putExtra(EXTRA_EVENT_ID, eventId);
PendingIntent viewPendingIntent =
PendingIntent.getActivity(this, 0, viewIntent, 0);
!NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_event)
.setContentTitle(eventTitle)
.setContentText(eventLocation)
.setContentIntent(viewPendingIntent);
!// Get an instance of the NotificationManager service
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
!// Build the notification and issues it with notification manager.
notificationManager.notify(notificationId, notificationBuilder.build());
スマフォ操作
Notification
スマフォ操作
2:30
Ddconnect
// Build an intent for an action to view a map
Intent mapIntent = new Intent(Intent.ACTION_VIEW);
Uri geoUri = Uri.parse("geo:0,0?q=" + Uri.encode(location));
mapIntent.setData(geoUri);
PendingIntent mapPendingIntent =
PendingIntent.getActivity(this, 0, mapIntent, 0);
!NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_event)
.setContentTitle(eventTitle)
.setContentText(eventLocation)
.setContentIntent(viewPendingIntent)
.addAction(R.drawable.ic_map,
getString(R.string.map), mapPendingIntent);
!// Get an instance of the NotificationManager service
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
!// Build the notification and issues it with notification manager.
notificationManager.notify(notificationId, notificationBuilder.build());
音声入力
Notification
スマフォ操作
音声入力
2:30
Ddconnect
// Create intent for reply action
Intent replyIntent = new Intent(this, ReplyActivity.class);
PendingIntent replyPendingIntent =
PendingIntent.getActivity(this, 0, replyIntent, 0);
!// Build the notification
NotificationCompat.Builder replyNotificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_new_message)
.setContentTitle("Message from Travis")
.setContentText("I love key lime pie!")
.setContentIntent(replyPendingIntent);
!// Create the remote input
RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
.setLabel(replyLabel)
.build();
!// Create wearable notification and add remote input
Notification replyNotification =
new WearableNotifications.Builder(replyNotificationBuilder)
.addRemoteInputForContentIntent(replyAction)
.build();
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="reply_choices">
<item>Yes</item>
<item>No</item>
<item>Maybe</item>
</string-array>
</resources>
最後に
早くハードウェア仕様が
開示されるといいなぁ。

More Related Content

What's hot

Truyền thông và lập kế hoạch truyền thông
Truyền thông và lập kế hoạch truyền thôngTruyền thông và lập kế hoạch truyền thông
Truyền thông và lập kế hoạch truyền thôngMinh Vu
 
Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?
Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?
Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?Zdruzenje_Manager
 
Kĩ năng lập kế hoạch
Kĩ năng lập kế hoạchKĩ năng lập kế hoạch
Kĩ năng lập kế hoạchyouthvietnam
 
Chuyển động máy quay
Chuyển động máy quayChuyển động máy quay
Chuyển động máy quayVâng Nghèo
 
Markus basic 01 - RSTP - B
Markus basic 01 - RSTP - BMarkus basic 01 - RSTP - B
Markus basic 01 - RSTP - Bwelcometomarkus
 
Bài giảng hành vi tổ chức
Bài giảng hành vi tổ chứcBài giảng hành vi tổ chức
Bài giảng hành vi tổ chứcDngHong53285
 
Lập kế hoạch truyền thông trên Facebook - MediaZ
Lập kế hoạch truyền thông trên Facebook - MediaZLập kế hoạch truyền thông trên Facebook - MediaZ
Lập kế hoạch truyền thông trên Facebook - MediaZTú Cao
 
Quy trình hoạch định chiến lược pr
Quy trình hoạch định chiến lược prQuy trình hoạch định chiến lược pr
Quy trình hoạch định chiến lược prNguyễn Ngọc Phan Văn
 
Chương 1: PR (Giới thiệu Tổng quan)
Chương 1: PR (Giới thiệu Tổng quan)Chương 1: PR (Giới thiệu Tổng quan)
Chương 1: PR (Giới thiệu Tổng quan)Zelda NGUYEN
 
Xây dựng kế hoạch truyền thông
Xây dựng kế hoạch truyền thôngXây dựng kế hoạch truyền thông
Xây dựng kế hoạch truyền thôngMinh Phạm Nhật
 
Lập kế hoạch truyền thông
Lập kế hoạch truyền thôngLập kế hoạch truyền thông
Lập kế hoạch truyền thôngtuhocprmarketing
 
事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~
事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~
事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~Junichi Kodama
 
Ky nang lap ke hoach pdca
Ky nang lap ke hoach pdcaKy nang lap ke hoach pdca
Ky nang lap ke hoach pdcaTrung Huynh
 
Chương 5: PR (Tổ chức sự kiện)
Chương 5: PR (Tổ chức sự kiện)Chương 5: PR (Tổ chức sự kiện)
Chương 5: PR (Tổ chức sự kiện)Zelda NGUYEN
 
10. kỹ năng tuyển dụng
10. kỹ năng tuyển dụng10. kỹ năng tuyển dụng
10. kỹ năng tuyển dụngMai Xuan Tu
 
Chiến lược xây dựng thương hiệu cá nhân
Chiến lược xây dựng thương hiệu cá nhânChiến lược xây dựng thương hiệu cá nhân
Chiến lược xây dựng thương hiệu cá nhânLê Thanh Trông
 
Quản trị nhân lực MBO SGUK12
Quản trị nhân lực MBO SGUK12Quản trị nhân lực MBO SGUK12
Quản trị nhân lực MBO SGUK12TearsSky ValKyrie
 

What's hot (20)

Truyền thông và lập kế hoạch truyền thông
Truyền thông và lập kế hoạch truyền thôngTruyền thông và lập kế hoạch truyền thông
Truyền thông và lập kế hoạch truyền thông
 
Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?
Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?
Brane Gruban: Motivacija 3.0: zakaj palica in korenček (ne) učinkujeta?
 
スクー「ゼロ秒思考」のメモ書き実践による仕事3倍速のポイント
スクー「ゼロ秒思考」のメモ書き実践による仕事3倍速のポイントスクー「ゼロ秒思考」のメモ書き実践による仕事3倍速のポイント
スクー「ゼロ秒思考」のメモ書き実践による仕事3倍速のポイント
 
Kĩ năng lập kế hoạch
Kĩ năng lập kế hoạchKĩ năng lập kế hoạch
Kĩ năng lập kế hoạch
 
Chuyển động máy quay
Chuyển động máy quayChuyển động máy quay
Chuyển động máy quay
 
Markus basic 01 - RSTP - B
Markus basic 01 - RSTP - BMarkus basic 01 - RSTP - B
Markus basic 01 - RSTP - B
 
Bài giảng hành vi tổ chức
Bài giảng hành vi tổ chứcBài giảng hành vi tổ chức
Bài giảng hành vi tổ chức
 
Lập kế hoạch truyền thông trên Facebook - MediaZ
Lập kế hoạch truyền thông trên Facebook - MediaZLập kế hoạch truyền thông trên Facebook - MediaZ
Lập kế hoạch truyền thông trên Facebook - MediaZ
 
Quy trình hoạch định chiến lược pr
Quy trình hoạch định chiến lược prQuy trình hoạch định chiến lược pr
Quy trình hoạch định chiến lược pr
 
Chuong 1
Chuong 1 Chuong 1
Chuong 1
 
Chương 1: PR (Giới thiệu Tổng quan)
Chương 1: PR (Giới thiệu Tổng quan)Chương 1: PR (Giới thiệu Tổng quan)
Chương 1: PR (Giới thiệu Tổng quan)
 
Xây dựng kế hoạch truyền thông
Xây dựng kế hoạch truyền thôngXây dựng kế hoạch truyền thông
Xây dựng kế hoạch truyền thông
 
Lập kế hoạch truyền thông
Lập kế hoạch truyền thôngLập kế hoạch truyền thông
Lập kế hoạch truyền thông
 
事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~
事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~
事例から学ぶ!Power Platformガバナンス設計~CoEの話も添えて~
 
Ky nang lap ke hoach pdca
Ky nang lap ke hoach pdcaKy nang lap ke hoach pdca
Ky nang lap ke hoach pdca
 
Chien luoc san pham - nhom 4
Chien luoc san pham - nhom 4Chien luoc san pham - nhom 4
Chien luoc san pham - nhom 4
 
Chương 5: PR (Tổ chức sự kiện)
Chương 5: PR (Tổ chức sự kiện)Chương 5: PR (Tổ chức sự kiện)
Chương 5: PR (Tổ chức sự kiện)
 
10. kỹ năng tuyển dụng
10. kỹ năng tuyển dụng10. kỹ năng tuyển dụng
10. kỹ năng tuyển dụng
 
Chiến lược xây dựng thương hiệu cá nhân
Chiến lược xây dựng thương hiệu cá nhânChiến lược xây dựng thương hiệu cá nhân
Chiến lược xây dựng thương hiệu cá nhân
 
Quản trị nhân lực MBO SGUK12
Quản trị nhân lực MBO SGUK12Quản trị nhân lực MBO SGUK12
Quản trị nhân lực MBO SGUK12
 

Similar to ANCSとAndroid Wear徹底比較

JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明
JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明
JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明Akira Tateishi
 
AWS IoT サービスこの1年の進化
AWS IoT サービスこの1年の進化AWS IoT サービスこの1年の進化
AWS IoT サービスこの1年の進化Jun Ichikawa
 
iBeacon を利用したサービス開発のポイント
iBeacon を利用したサービス開発のポイントiBeacon を利用したサービス開発のポイント
iBeacon を利用したサービス開発のポイントdaisuke-a-matsui
 
Microsoft Azure で実現するAIとIoT最新情報
Microsoft Azure で実現するAIとIoT最新情報Microsoft Azure で実現するAIとIoT最新情報
Microsoft Azure で実現するAIとIoT最新情報Yasuhiro Kobayashi
 
Microsoft Intelligent Edge Technologies
Microsoft Intelligent Edge TechnologiesMicrosoft Intelligent Edge Technologies
Microsoft Intelligent Edge TechnologiesTakeshi Fukuhara
 
[de:code 2019 振り返り Night!] IoT
[de:code 2019 振り返り Night!] IoT[de:code 2019 振り返り Night!] IoT
[de:code 2019 振り返り Night!] IoTHaruka Kurihara
 
[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築
[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築
[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築Naoki (Neo) SATO
 
Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )
Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )
Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )Takeshi Fukuhara
 
Microsoft AI Platform ビジネスでAI活用するヒント
Microsoft AI Platform ビジネスでAI活用するヒントMicrosoft AI Platform ビジネスでAI活用するヒント
Microsoft AI Platform ビジネスでAI活用するヒントDaiyu Hatakeyama
 
IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020
IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020
IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020SORACOM,INC
 
IoT系標準化の動き(メモ、2016年) (in Japanese)
IoT系標準化の動き(メモ、2016年) (in Japanese)IoT系標準化の動き(メモ、2016年) (in Japanese)
IoT系標準化の動き(メモ、2016年) (in Japanese)Toshihiko Yamakami
 
「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」
「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」
「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」griddb
 
Lt4 aws@loft #11 aws io-t for smart building
Lt4 aws@loft #11 aws io-t for smart buildingLt4 aws@loft #11 aws io-t for smart building
Lt4 aws@loft #11 aws io-t for smart buildingAmazon Web Services Japan
 
Windows ChatGPT Bing AI
Windows ChatGPT Bing AIWindows ChatGPT Bing AI
Windows ChatGPT Bing AIAtomu Hidaka
 
【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)
【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)
【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)appliedelectronics
 
NRIセキュアが考える持続可能なID&アクセス管理基盤の実現
NRIセキュアが考える持続可能なID&アクセス管理基盤の実現NRIセキュアが考える持続可能なID&アクセス管理基盤の実現
NRIセキュアが考える持続可能なID&アクセス管理基盤の実現Tatsuo Kudo
 

Similar to ANCSとAndroid Wear徹底比較 (20)

JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明
JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明
JAWS-UG IoT専門支部 講演資料 IoT Analyticsによる構築事例説明
 
AWS IoT サービスこの1年の進化
AWS IoT サービスこの1年の進化AWS IoT サービスこの1年の進化
AWS IoT サービスこの1年の進化
 
iBeacon を利用したサービス開発のポイント
iBeacon を利用したサービス開発のポイントiBeacon を利用したサービス開発のポイント
iBeacon を利用したサービス開発のポイント
 
Microsoft Azure で実現するAIとIoT最新情報
Microsoft Azure で実現するAIとIoT最新情報Microsoft Azure で実現するAIとIoT最新情報
Microsoft Azure で実現するAIとIoT最新情報
 
Microsoft Intelligent Edge Technologies
Microsoft Intelligent Edge TechnologiesMicrosoft Intelligent Edge Technologies
Microsoft Intelligent Edge Technologies
 
[de:code 2019 振り返り Night!] IoT
[de:code 2019 振り返り Night!] IoT[de:code 2019 振り返り Night!] IoT
[de:code 2019 振り返り Night!] IoT
 
[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築
[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築
[Developers Summit 2018] Microsoft AIプラットフォームによるインテリジェント アプリケーションの構築
 
Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )
Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )
Azure Digital Twins 最新事例紹介 ( IoTビジネス共創ラボ 第16回勉強会 )
 
Azure Digital Twins最新事例紹介
Azure Digital Twins最新事例紹介Azure Digital Twins最新事例紹介
Azure Digital Twins最新事例紹介
 
Whats service mesh & istio ?
Whats service mesh & istio ?Whats service mesh & istio ?
Whats service mesh & istio ?
 
Microsoft AI Platform ビジネスでAI活用するヒント
Microsoft AI Platform ビジネスでAI活用するヒントMicrosoft AI Platform ビジネスでAI活用するヒント
Microsoft AI Platform ビジネスでAI活用するヒント
 
IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020
IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020
IoTシステム構築の困り事から逆引き「SORACOM 全サービス解説」 | SORACOM Technology Camp 2020
 
IoT系標準化の動き(メモ、2016年) (in Japanese)
IoT系標準化の動き(メモ、2016年) (in Japanese)IoT系標準化の動き(メモ、2016年) (in Japanese)
IoT系標準化の動き(メモ、2016年) (in Japanese)
 
「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」
「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」
「情報爆発時代」を勝ち抜くためのIT基盤技術とは?膨大な情報から最適解を 「SmartEDA®」
 
Keycloakの最近のトピック
Keycloakの最近のトピックKeycloakの最近のトピック
Keycloakの最近のトピック
 
Lt4 aws@loft #11 aws io-t for smart building
Lt4 aws@loft #11 aws io-t for smart buildingLt4 aws@loft #11 aws io-t for smart building
Lt4 aws@loft #11 aws io-t for smart building
 
Windows ChatGPT Bing AI
Windows ChatGPT Bing AIWindows ChatGPT Bing AI
Windows ChatGPT Bing AI
 
【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)
【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)
【FKEYセミナー 20150205 基調講演】「今こそクラウド活用」 講師:大和 敏彦 氏 (株式会社アイティアイ 代表取締役)
 
03_AWS IoTのDRを考える
03_AWS IoTのDRを考える03_AWS IoTのDRを考える
03_AWS IoTのDRを考える
 
NRIセキュアが考える持続可能なID&アクセス管理基盤の実現
NRIセキュアが考える持続可能なID&アクセス管理基盤の実現NRIセキュアが考える持続可能なID&アクセス管理基盤の実現
NRIセキュアが考える持続可能なID&アクセス管理基盤の実現
 

More from Akira Sasaki

CES2019 STEM教材最新動向
CES2019 STEM教材最新動向CES2019 STEM教材最新動向
CES2019 STEM教材最新動向Akira Sasaki
 
Android Things最新動向
Android Things最新動向Android Things最新動向
Android Things最新動向Akira Sasaki
 
はじめてのAndroid Things
はじめてのAndroid ThingsはじめてのAndroid Things
はじめてのAndroid ThingsAkira Sasaki
 
AIZU.cloud 第一回 AWS CLIハンズオン
AIZU.cloud 第一回 AWS CLIハンズオンAIZU.cloud 第一回 AWS CLIハンズオン
AIZU.cloud 第一回 AWS CLIハンズオンAkira Sasaki
 
Hacker DoJo FaBo's LT.
Hacker DoJo FaBo's LT.Hacker DoJo FaBo's LT.
Hacker DoJo FaBo's LT.Akira Sasaki
 
MEMS sensor catalog with I2C
MEMS sensor catalog with I2CMEMS sensor catalog with I2C
MEMS sensor catalog with I2CAkira Sasaki
 
基板設計/製造 for プロトタイピング
基板設計/製造 for プロトタイピング基板設計/製造 for プロトタイピング
基板設計/製造 for プロトタイピングAkira Sasaki
 
IoTの規格標準化動向とデバイスWebAPI
IoTの規格標準化動向とデバイスWebAPIIoTの規格標準化動向とデバイスWebAPI
IoTの規格標準化動向とデバイスWebAPIAkira Sasaki
 
Html5 caravantokyo
Html5 caravantokyoHtml5 caravantokyo
Html5 caravantokyoAkira Sasaki
 
What is google glass
What is google glassWhat is google glass
What is google glassAkira Sasaki
 
Business model20130301
Business model20130301Business model20130301
Business model20130301Akira Sasaki
 
Web os最新動向20130209
Web os最新動向20130209Web os最新動向20130209
Web os最新動向20130209Akira Sasaki
 
Android連携ハードウェア
Android連携ハードウェアAndroid連携ハードウェア
Android連携ハードウェアAkira Sasaki
 
Android 10 dec, 2012
Android 10 dec, 2012Android 10 dec, 2012
Android 10 dec, 2012Akira Sasaki
 
Android最新動向
Android最新動向Android最新動向
Android最新動向Akira Sasaki
 

More from Akira Sasaki (20)

AI robot car
AI robot carAI robot car
AI robot car
 
CES2019 STEM教材最新動向
CES2019 STEM教材最新動向CES2019 STEM教材最新動向
CES2019 STEM教材最新動向
 
Android Things最新動向
Android Things最新動向Android Things最新動向
Android Things最新動向
 
はじめてのAndroid Things
はじめてのAndroid ThingsはじめてのAndroid Things
はじめてのAndroid Things
 
AIZU.cloud 第一回 AWS CLIハンズオン
AIZU.cloud 第一回 AWS CLIハンズオンAIZU.cloud 第一回 AWS CLIハンズオン
AIZU.cloud 第一回 AWS CLIハンズオン
 
Hacker DoJo FaBo's LT.
Hacker DoJo FaBo's LT.Hacker DoJo FaBo's LT.
Hacker DoJo FaBo's LT.
 
MEMS sensor catalog with I2C
MEMS sensor catalog with I2CMEMS sensor catalog with I2C
MEMS sensor catalog with I2C
 
Shenzhen2015
Shenzhen2015Shenzhen2015
Shenzhen2015
 
基板設計/製造 for プロトタイピング
基板設計/製造 for プロトタイピング基板設計/製造 for プロトタイピング
基板設計/製造 for プロトタイピング
 
IoTの規格標準化動向とデバイスWebAPI
IoTの規格標準化動向とデバイスWebAPIIoTの規格標準化動向とデバイスWebAPI
IoTの規格標準化動向とデバイスWebAPI
 
Homekit 20140730
Homekit 20140730Homekit 20140730
Homekit 20140730
 
Ibeacon hack4aizu
Ibeacon hack4aizuIbeacon hack4aizu
Ibeacon hack4aizu
 
Appcessory市場
Appcessory市場Appcessory市場
Appcessory市場
 
Html5 caravantokyo
Html5 caravantokyoHtml5 caravantokyo
Html5 caravantokyo
 
What is google glass
What is google glassWhat is google glass
What is google glass
 
Business model20130301
Business model20130301Business model20130301
Business model20130301
 
Web os最新動向20130209
Web os最新動向20130209Web os最新動向20130209
Web os最新動向20130209
 
Android連携ハードウェア
Android連携ハードウェアAndroid連携ハードウェア
Android連携ハードウェア
 
Android 10 dec, 2012
Android 10 dec, 2012Android 10 dec, 2012
Android 10 dec, 2012
 
Android最新動向
Android最新動向Android最新動向
Android最新動向
 

Recently uploaded

20240326_IoTLT_vol109_kitazaki_v1___.pdf
20240326_IoTLT_vol109_kitazaki_v1___.pdf20240326_IoTLT_vol109_kitazaki_v1___.pdf
20240326_IoTLT_vol109_kitazaki_v1___.pdfAyachika Kitazaki
 
2024 01 Virtual_Counselor
2024 01 Virtual_Counselor 2024 01 Virtual_Counselor
2024 01 Virtual_Counselor arts yokohama
 
2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~
2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~
2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~arts yokohama
 
持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見
持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見
持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見Shumpei Kishi
 
IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)
IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)
IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)ssuser539845
 
TaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdf
TaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdfTaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdf
TaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdfMatsushita Laboratory
 
情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法
情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法
情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法ssuser370dd7
 
「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ
「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ
「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-LoopへTetsuya Nihonmatsu
 

Recently uploaded (11)

20240326_IoTLT_vol109_kitazaki_v1___.pdf
20240326_IoTLT_vol109_kitazaki_v1___.pdf20240326_IoTLT_vol109_kitazaki_v1___.pdf
20240326_IoTLT_vol109_kitazaki_v1___.pdf
 
2024 01 Virtual_Counselor
2024 01 Virtual_Counselor 2024 01 Virtual_Counselor
2024 01 Virtual_Counselor
 
2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~
2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~
2024 02 Nihon-Tanken ~Towards a More Inclusive Japan~
 
持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見
持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見
持続可能なDrupal Meetupのコツ - Drupal Meetup Tokyoの知見
 
IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)
IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)
IFIP IP3での資格制度を対象とする国際認定(IPSJ86全国大会シンポジウム)
 
2024 04 minnanoito
2024 04 minnanoito2024 04 minnanoito
2024 04 minnanoito
 
TaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdf
TaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdfTaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdf
TaketoFujikawa_台本中の動作表現に基づくアニメーション原画システムの提案_SIGEC71.pdf
 
情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法
情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法
情報処理学会86回全国大会_Generic OAMをDeep Learning技術によって実現するための課題と解決方法
 
「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ
「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ
「今からでも間に合う」GPTsによる 活用LT会 - 人とAIが協調するHumani-in-the-Loopへ
 
What is the world where you can make your own semiconductors?
What is the world where you can make your own semiconductors?What is the world where you can make your own semiconductors?
What is the world where you can make your own semiconductors?
 
2024 03 CTEA
2024 03 CTEA2024 03 CTEA
2024 03 CTEA
 

ANCSとAndroid Wear徹底比較