-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
718 lines (713 loc) · 35.6 KB
/
index.html
File metadata and controls
718 lines (713 loc) · 35.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112465601-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-112465601-2");
</script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content="Docusaurus" />
<meta name="description" content="" />
<meta name="docsearch:language" content="en" />
<meta property="og:title" content="CardinalKit · " />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cardinalkit.org/" />
<meta property="og:description"
content="An Open Source Platform & Codebase for Digital Health Research and Applications" />
<meta property="og:image" content="https://cardinalkit.org/img/og-image.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="https://cardinalkit.org/img/og-image.png" />
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css"
integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous" />
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/grids-responsive-min.css" />
<link href="https://unpkg.com/pattern.css" rel="stylesheet" />
<link rel="shortcut icon" href="/img/favicon.ico" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css" />
<script type="text/javascript" src="https://buttons.github.io/buttons.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous" />
<script src="js/scrollSpy.js"></script>
<link rel="stylesheet" href="css/main.css" />
<script src="js/codetabs.js"></script>
<title>CardinalKit</title>
</head>
<body>
<div class="fixedHeaderContainer">
<div class="headerWrapper wrapper">
<header>
<a href="/"><img class="logo" src="/img/favicon.ico" alt="CardinalKit" />
<h2 class="headerTitleWithLogo">CardinalKit</h2>
</a>
<div class="navigationWrapper navigationSlider">
<nav class="slidingNav">
<ul class="nav-site nav-site-internal">
<li class="">
<a href="/cardinalkit-docs" target="_blank">Docs</a>
</li>
<li class="">
<a href="/community" target="_self">Community</a>
</li>
<li class="">
<a href="/resources" target="_self">Resources</a>
</li>
<!-- <li class="">
<a href="/blog/" target="_self">Blog</a>
</li> -->
</ul>
</nav>
</div>
</header>
</div>
</div>
<div class="navPusher">
<div class="info" style="padding: 5em">
<h1>The next generation of CardinalKit is here!</h1>
<h2>
<a href="https://spezi.stanford.edu" style="color: white; text-decoration: underline">Stanford Spezi</a> is a standards-based, modular framework for developing digital health applications.
</h2>
<a href="https://spezi.stanford.edu" target="_blank" class="fl btn accent interact">Get Started With Spezi</a>
</div>
<div class="container" style="user-select: auto" style="position: relative">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1 pure-u-lg-1-2">
<a href="http://biodesign.stanford.edu" target="_blank">
<div class="support">
<img src="img/banner-2022.png" width="480" />
<br />
</div>
<!--<h1 class="ckheadertext" style="user-select: auto">
CardinalKit
</h1> -->
</a>
<!-- <img src="img/health_.svg" style="margin-top: 50px" /> -->
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<div class="ckheaderblock" style="display: inline-block">
<h3 style="user-select: auto">
An Open-Source Framework for Digital Health Applications and Research
</h3>
<p class="lead" style="user-select: auto">
We provide you a suite of tools to build your modern, interoperable digital health experience from the ground up,
from the app itself to storing and analyzing collected data in the cloud.
<br /><br />
CardinalKit is designed to accelerate rapid prototyping of digital health applications by reducing costs by as much as 75% (~$150,000) and timelines by 12 months.
<br /><br />
Available on <strong>iOS</strong> and <strong>Android</strong>!
</p>
</div>
<br />
<a href="/cardinalkit-docs" class="fl btn interact" target="_blank" style="user-select: auto; margin: 8px">Get
Started</a>
<!--<a href="https://forms.gle/ZHfqKSxhoobA6cYX8" class="fl btn interact" style="user-select: auto;">Interest Form</a> -->
<a target="_blank" href="https://mailman.stanford.edu/mailman/listinfo/cardinalkit"
class="fl btn interact accent" style="margin: 8px">Mailing List</a><br />
<a href="https://github.com/CardinalKit" target="_blank" class="fl btn accent interact" style="
user-select: auto;
border-color: #2c3e50;
color: #2c3e50;
border-width: 3px;
margin: 8px;
">Github</a>
<a target="_blank"
href="https://join.slack.com/t/cardinalkit/shared_invite/zt-1k4bqb13n-eYXWYQ6nRkUOQ9c5f~W6Bw"
class="fl btn interact accent" style="
margin: 8px;
user-select: auto;
border-color: #611f69;
color: #611f69;
border-width: 3px;
">Slack</a>
<a target="_blank" href="https://twitter.com/ck_framework" class="fl btn interact accent" style="
margin: 8px;
user-select: auto;
border-color: #3498db;
color: #3498db;
border-width: 3px;
">Follow Us</a>
<br /><br />
</div>
</div>
<div class="custom-shape-divider-bottom-1593285352">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" class="shape-fill"></path>
</svg>
</div>
</div>
<div class="cksubsection-1" style="margin-top: 100px">
<div class="container">
<div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1 pure-u-lg-1-2">
<h2>CardinalKit iOS</h2>
<div class="sub"></div>
<br />
<p>
CardinalKit provides a robust set of features on iOS, built with native Apple Health frameworks.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> <strong>Simple</strong> configuration and setup for accelerated
development.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Informed consent process and survey generation using <a
style="color: #273c75; text-decoration: underline;" href="http://researchkit.org"
target_blank><strong>ResearchKit</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Track day-to-day adherence with <a
style="color: #273c75; text-decoration: underline;" href="https://developer.apple.com/carekit/"
target_blank><strong>CareKit</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Monitor health data with <a
style="color: #273c75; text-decoration: underline;" href="https://developer.apple.com/carekit/"
target_blank><strong>HealthKit</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Collect movement data using
<a style="color: #273c75; text-decoration: underline;"
href="https://developer.apple.com/documentation/coremotion"
target_blank><strong>CoreMotion</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Automatic data collection and upload to the cloud using <a
style="color: #273c75; text-decoration: underline;"
href="https://developer.apple.com/documentation/coremotion"
target_blank><strong>Firebase</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Data represented according to international healthcare data
standards such as <a style="color: #273c75; text-decoration: underline;"
href="https://www.openmhealth.org/"><strong>Open mHealth</strong></a> and <a
style="color: #273c75; text-decoration: underline;" href="https://www.hl7.org/fhir/"><strong>HL7
FHIR</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> HIPAA-compliant authentication methods, including Sign in with
Apple and Google.
</p>
<p>
<br />
<a href="https://cardinalkit.org/cardinalkit-docs/1-cardinalkit-app/" class="fl btn accent interact">Get Started</a>
<a href="https://github.com/cardinalkit/cardinalkit" class="fl btn accent interact" style="margin-left: 10px">Github</a>
</p>
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<img src="https://raw.githubusercontent.com/CardinalKit/.github/main/assets/CK_Map.jpg" />
</div>
</div>
</div>
<br /><br />
<div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1 pure-u-lg-1-2">
<h2>CardinalKit Android</h2>
<div class="sub"></div>
<br />
<p>
CardinalKit now provides a solid foundation for your digital health
applications on Android too, leveraging cutting edge Android Health APIs.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Generate FHIR Questionnaires using <a
style="color: #273c75; text-decoration: underline;" href="https://github.com/google/android-fhir"
target_blank><strong>Android FHIR</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Schedule daily tasks and track completion</a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Collect health data with <a
style="color: #273c75; text-decoration: underline;" href="https://developer.android.com/guide/health-and-fitness/health-connect"
target_blank><strong>Health Connect</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Automatic data collection and upload to the cloud using <a
style="color: #273c75; text-decoration: underline;"
href="https://developer.apple.com/documentation/coremotion"
target_blank><strong>Firebase</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> Data represented according to international healthcare data
standards such as <a style="color: #273c75; text-decoration: underline;"
href="https://www.openmhealth.org/"><strong>Open mHealth</strong></a> and <a
style="color: #273c75; text-decoration: underline;" href="https://www.hl7.org/fhir/"><strong>HL7
FHIR</strong></a>.
</p>
<p style="font-size: 15px; margin-bottom: 1px;">
<span style="color: #b71440">+</span> HIPAA-compliant authentication methods, including Sign in with
Google.
</p>
<p>
<br />
<a href="https://cardinalkit.org/cardinalkit-docs/android-app" class="fl btn accent interact">Get Started</a>
<a href="https://github.com/cardinalkit/cardinalkit-android" class="fl btn accent interact" style="margin-left: 10px">Github</a>
</p>
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<img src="https://user-images.githubusercontent.com/1212163/187117428-e063f8ba-8cbc-40ee-9ded-b51d2d3f26f6.png" width="600" style="padding-left: 10px" />
</div>
</div>
</div>
<br /><br />
<!-- <div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1">
<center>
<h2>CardinalKit Video Overview</h2>
<div class="sub"></div>
<br />
<iframe src="https://drive.google.com/file/d/1DJ6DClvpb-3IRRIssljx7kCMpcP583jX/preview" width="100%" height="480"></iframe>
<br />
</center>
</div>
</div>
</div>
<br /><br /> -->
<div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1 pure-u-lg-1-2">
<h2>Develop.</h2>
<div class="sub"></div>
<br />
<p>
CardinalKit is an extensible, open-source, and scalable platform built for and by developers,
physicians, and researchers.
</p>
<p style="font-size: 14px">
<strong><span style="color: #b71440">+</span> Extensible</strong>: CardinalKit gives your project access
to several recognized
medical surveys, Bluetooth-wearable integration, and limitless
data collection
</p>
<p style="font-size: 14px">
<strong><span style="color: #b71440">+</span> Open Source</strong>: CardinalKit is entirely available on
Github and is
maintained by a diverse community of medical researchers and
developers.
</p>
<p style="font-size: 14px">
<strong><span style="color: #b71440">+</span> Scalable</strong>: CardinalKit utilizes several Google
Cloud services that can
directly hook into your organization's IT infrastructure for
seamless data collection.
</p>
<a target="_blank" href="https://forms.gle/ZHfqKSxhoobA6cYX8" class="fl btn interact">Research Team
Interest Form</a><br /><br />
<a target="_blank" href="https://forms.gle/rUfnWShC58VasjbH7" class="fl btn interact accent">Developer
Interest Form</a>
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<img src="img/main.svg" />
</div>
</div>
</div>
<br /><br />
<div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1 pure-u-lg-1-2">
<h2>Learn.</h2>
<div class="sub"></div>
<br />
<p>We can teach you to build your own CardinalKit app.</p>
<p>
Throughout the year, we offer <strong>workshops</strong> and
<strong>build-a-thons</strong> to help you learn CardinalKit fluently, as well as its underlying
technologies, like HealthKit, ResearchKit, and Google Cloud.
</p>
<p>
If you need assistance at any other time, feel free to reach out to us.
</p>
<div class="margin: 0 auto; display: block;">
<a href="https://cardinalkit.stanford.edu/people" class="fl btn interact" style="color: white">Events & Contact</a>
<br /><br />
<a href="https://www.youtube.com/channel/UC4id6NE6P2lFwJ2ZjKRwOXw" class="fl btn interact accent">Tutorials</a>
</div>
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<img src="img/code_development_.svg" />
</div>
</div>
</div>
<br /><br />
<div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1 pure-u-lg-1-2">
<h2>Contribute.</h2>
<div class="sub"></div>
<br />
<p>
CardinalKit is entirely <strong>open source</strong> which
means that anyone can contribute to its production.
We're always looking for developers to build out
features that can expand CardinalKit's capabilities and make it easier
to build large scale research applications.
</p>
<p>
Even if you're new to open source and/or Github, feel free to
reach out and we'll get you started!
</p>
<div class="margin: 0 auto; display: block;">
<a href="https://github.com/CardinalKit" class="fl btn interact"
style="color: white">Github</a>
<br /><br />
<a target="_blank" href="https://github.com/CardinalKit/CardinalKit/issues/new/choose"
class="fl btn interact accent">Request a Feature</a>
</div>
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<img src="img/consulting.svg" />
</div>
</div>
</div>
<br /><br />
</div>
<div class="custom-shape-divider-top-1593288572" style="margin-top: 10px">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" class="shape-fill"></path>
</svg>
</div>
</div>
<div style="margin-top: 100px">
<div class="container">
<div class="ckheaderblock" style="display: inline-block">
<h1 class="ckheadertext" style="user-select: auto; font-size: 40px">
Partner Projects
</h1>
<h3 style="user-select: auto">
A showcase of partners and projects that have used CardinalKit to
expedite their development process.
</h3>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="https://www.slocumfoundation.org/news/slocum-starts-iphone-pilot-study-ankle-fracture-patients"
target="_blank">
<div class="card" style="background-color: #fff">
<img src="img/slocum.png" alt="Avatar" style="width: 100%; height: 100%" />
</div>
</a>
<p style="user-select: auto; text-align: center">
Using iPhone gait metrics to benchmark functional recovery after ankle fracture.
</p>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="http://github.com/susom/lifespace/" target="_blank">
<div class="card" style="background-color: #fff">
<img src="img/lifespace.png" alt="Avatar" style="width: 120%; height: 120%" />
</div>
</a>
<p style="user-select: auto; text-align: center">
Life-space mapping to study features of the social and built environment that support health.
</p>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="http://vasctrac.stanford.edu" target="_blank">
<div class="card" style="background-color: #2a2f2f">
<img src="img/vasctrac.png" alt="Avatar" style="width: 120%; height: 120%" />
</div>
</a>
<p style="user-select: auto; text-align: center">
The world's first peripheral artery disease (PAD) study powered completely by the iPhone.
</p>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="https://mudumbailab.sites.stanford.edu/s-smart" target="_blank">
<div class="card">
<img src="img/s-smart.png" alt="Avatar" style="width: 100%" />
</div>
</a>
<p style="user-select: auto; text-align: center">
An early intervention tool to track opioid use and evaluate patient daily functioning post-operation.
</p>
</div>
</div>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="https://careit3.sites.stanford.edu/" target="_blank">
<div class="card">
<center>
<img src="img/care-it.png" alt="Avatar" style="width: 100%" />
</center>
</div>
</a>
<p style="user-select: auto; text-align: center">
Care-It empowers patients and families in advanced care planning.
</p>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="https://neurocoach.sites.stanford.edu" target="_blank">
<div class="card">
<center>
<img src="img/neurocoach.png" alt="Avatar" style="width: 100%" />
</center>
</div>
</a>
<p style="user-select: auto; text-align: center">
A virtual coach for stroke and neuro-rehab patients.
</p>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<div class="partner" style="padding: 30px; margin: 20px">
<a href="https://med.stanford.edu/allergyandasthma/about-us.html" target="_blank">
<div class="card">
<center>
<img src="img/myoit.png" alt="Avatar" style="width: 100%" />
</center>
</div>
</a>
<p style="user-select: auto; text-align: center">
Oral immunotherapy study at the Sean N. Parker Center for Allergy and Asthma Research
</p>
</div>
</div>
</div>
<br><br><br>
<div class="ckheaderblock" style="display: inline-block">
<h1 class="ckheadertext" style="user-select: auto; font-size: 40px">
Open-Source Projects
</h1>
<h3 style="user-select: auto">
These projects were initially built at Stanford for <br />
<a href="https://web.stanford.edu/class/cs342/" target="_blank">CS 342 / MED 253 - Building for Digital
Health</a>.
</h3>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img
src="https://avatars.githubusercontent.com/u/97643362?s=400&u=3655cb73f1dc87d9cf32f44ece0f942b99848038&v=4"
alt="BUDI" style="width: 100%" />
</div>
<br />
<center>
<h2>BUDI</h2>
</center>
<p style="user-select: auto; text-align: center">
A digital health solution for children with cerebral palsy, embedded into an Apple Watch
to track therapeutic movements and provide biofeedback to maximize rehabilitation of the upper limb in
the absence of a clinician.
</p>
<center>
<a href="https://docs.google.com/presentation/d/1f10d0QU0E-5Y0WYRqHamQUPLCmdHF5FOS7oxmlkrQB0"
target="_blank">[ slides ]</a>
<a href="https://github.com/cs342-budi/AssignmentTwo" target="_blank">[ github ]</a>
</center>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 20px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img
src="https://avatars.githubusercontent.com/u/97643524?s=400&u=53ac79f6c1881962ab8dd0ccfb0d7aa1f8f9b097&v=4"
alt="Activate" style="width: 100%" />
</div>
<br />
<center>
<h2>Activate</h2>
</center>
<p style="user-select: auto; text-align: center">
A novel mobile application-based intervention and clinical support tool to help individuals with
schizophrenia spectrum disorders to make positive lifestyle changes.<br><br>
</p>
<center>
<a href="https://docs.google.com/presentation/d/1cJ9kXJIY7LLwrpcJrPMcQpExqJpAf_ytPO-1qrQ2R7o"
target="_blank">[ slides ]</a>
<a href="https://github.com/cs342-activate/activate-app" target="_blank">[ github ]</a>
</center>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img src="https://avatars.githubusercontent.com/u/97643618?s=200&v=4" alt="GaitMate"
style="width: 100%" />
</div>
<br />
<center>
<h2>GaitMate</h2>
</center>
<p style="user-select: auto; text-align: center">
Automated at-home safe functional mobility assessments used to build predictive models to identify
perturbations not identified in sparse healthcare encounters.
</p>
<center>
<a href="https://docs.google.com/presentation/d/1iMuKhzX3AUbPQFL0WM5PhB-VnlZV0PCRuFT1RM-p55I">[ slides
]</a>
<a href="https://github.com/cs342-gaitmate/assignment_4" target="_blank">[ github ]</a>
</center>
</div>
</div>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img
src="https://avatars.githubusercontent.com/u/97643267?s=400&u=0be54f6e4bd0e15f834561bdc956767a1ad504bd&v=4"
alt="CHOIR" style="width: 100%" />
</div>
<br />
<center>
<h2>mCHOIR</h2>
</center>
<p style="user-select: auto; text-align: center">
Integration of sensor data into an open-source learning health system to characterize the associations
between heart rate variability and momentary assessment of chronic pain symptoms.
</p>
<center>
<a href="https://docs.google.com/presentation/d/1TM6uspn5ct6vjborEXFpuVpipwuShN-agF5A0wWXRhA"
target="_blank">[ slides ]</a>
<a href="https://github.com/cs342-choir/Assignment5" target="_blank">[ github ]</a>
</center>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img src="https://avatars.githubusercontent.com/u/24626089?s=200&v=4" alt="VascTracX"
style="width: 100%" />
</div>
<br />
<center>
<h2>VascTracX</h2>
</center>
<p style="user-select: auto; text-align: center">
Passive activity monitoring for early prediction of outcomes from surgery for Peripheral Artery Disease.
</p>
<center>
<a href="https://docs.google.com/presentation/d/1mQPRJrH1XeNA8n8WLbAKHKfoUsw01SBRVjA8_0zOA0s"
target="_blank">[ slides ]</a>
<!-- <a href="https://github.com/cs342-activate/activate-app" target="_blank">[ github ]</a> -->
</center>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img src="img/beatheartdisease-logo.png" alt="BeatHeartDisease" style="width: 100%" />
</div>
<br />
<center>
<h2>BeatHeartDisease</h2>
</center>
<p style="user-select: auto; text-align: center">
A platform for management and prevention of cardiovascular disease with Bluetooth-enabled data
collection from scales and cuffs.<br><br>
<!-- <span style="font-size: 14px">Team Members: Harry Mellsop, Collin Schlager, Colton Swingle</span> -->
</p>
<center><a href="https://web.stanford.edu/class/cs342/public/final_beatheartdisease.pdf">[ slides ]</a>
<a href="https://github.com/CardinalKit/CardinalKit/pull/48" target="_blank">[ github ]</a>
</center>
</div>
</div>
</div>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img src="img/kidneycare-logo.png" alt="KidneyCare" style="width: 100%" />
</div>
<br />
<center>
<h2>Kidney Care</h2>
</center>
<p style="user-select: auto; text-align: center">
Outpatient care for post kidney transplant recovery with variable medication tracking.<br><br>
<!-- <span style="font-size: 14px">Team Members: Kabir Jolly, Amrita Kaur, Rachel Naidich</span> -->
</p>
<center><a href="https://web.stanford.edu/class/cs342/public/final_kidneycare.pdf">[ slides ]</a>
<a href="https://github.com/CardinalKit/CardinalKit/pull/49" target="_blank">[ github ]</a>
</center>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-1-3">
<div class="partner" style="padding: 30px; margin: 20px">
<div class="card" style="width: 50%; margin: auto">
<img src="img/hybridphysicaldigital-logo.png" alt="Hybrid Physical-Digital Spaces"
style="width: 100%" />
</div>
<br />
<center>
<h2>Hybrid Physical-Digital Spaces</h2>
</center>
<p style="user-select: auto; text-align: center">
Tracking physiological data and physical activity using Apple Watches and location data using Bluetooth
beacons to generate new knowledge regarding aspects of the built environment that promote both
environmental sustainability and occupant wellbeing.<br><br>
<!-- <span style="font-size: 14px">Current Team Members: Matthew Jörke, Rishi Sreekanth, and Luke Mann</span><br />
<span style="font-size: 14px">Former Members: Michael Cooper</span> -->
</p>
<center>
<a href="https://hpds.stanford.edu/" target="_blank">[ website ]</a>
<a href="https://web.stanford.edu/class/cs342/public/midterm_hybridspaces.pdf">[ slides ]</a>
<a href="https://github.com/CardinalKit/CardinalKit/pull/53" target="_blank">[ github ]</a>
</center>
</div>
</div>
</div>
<br><br><br>
<div class="custom-shape-divider-bottom-1593285352" style="margin-right: -10px;">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" class="shape-fill"></path>
</svg>
</div>
<br />
<br /><br /><br />
</div>
<div class="cksubsection-1" style="margin-top: 10px">
<div class="container">
<div class="fl-card">
<div class="pure-g" style="user-select: auto">
<div class="pure-u-1">
<center>
<h2>Team</h2>
<div class="sub"></div>
<br />
<p>
CardinalKit is an initiative housed in the <a href="https://biodesign.stanford.edu"
target="_blank">Stanford Byers Center for Biodesign</a> at Stanford University.
<a href="https://cardinalkit.stanford.edu/people">Our team</a> is composed of healthcare
professionals, academic researchers, designers, developers, and students.
<br /><br />
<strong>Director:</strong> Oliver Aalami, MD<br />
<strong>Lead Architect:</strong> Vishnu Ravi, MD<br />
<br />
If you're interested in CardinalKit, please reach out to us at <a target="_blank" href="mailto:cardinalkit@stanford.edu">cardinalkit@stanford.edu</a>!
</p>
<a target="_blank" href="mailto:cardinalkit@stanford.edu" class="fl btn interact">Contact Us</a><br />
</center>
</div>
</div>
</div>
<br><br>
</div>
</div>
<footer class="nav-footer" id="footer">
<section class="copyright">Copyright © 2022 CardinalKit</section>
</footer>
</div>
</body>
</html>