-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontribute.html
More file actions
98 lines (85 loc) · 3.73 KB
/
Copy pathcontribute.html
File metadata and controls
98 lines (85 loc) · 3.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contribute | MEDWEAR</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.svg" type="image/svg+xml" />
</head>
<body>
<header>
<a href="index.html" class="header-brand">MEDWEAR</a>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="documentation.html">Documentation</a>
<a href="schemas.html">Schemas</a>
<a href="med-api.html">MED-API</a>
<a href="use-cases.html">Use Cases</a>
<a href="contribute.html" class="active">Contribute</a>
</nav>
</header>
<div class="page-banner" style="background-image: url('assets/images/hero-about.jpg')">
<div class="page-banner-content">
<h1>Contribute</h1>
<p>Help shape open wearable data standards</p>
</div>
</div>
<div class="content-container">
<main>
<section>
<h2>Contribute to MEDWEAR</h2>
<p>
MEDWEAR is a community-driven project that brings together researchers, industry experts,
and developers to create open standards everyone can use.
We welcome contributions to the schemas, ROS messages, platform, and documentation.
</p>
</section>
<section>
<h2>Choose what to contribute to</h2>
<div class="quick-links">
<a href="https://github.com/SCAI-Lab/ord_schemas" target="_blank" rel="noopener" class="quick-link-card">
<h3>JSON Schemas</h3>
<p>Add or improve physiological signal schemas based on IEEE 1752 and Open mHealth. Propose new signal
types, fix definitions, or improve documentation.</p>
</a>
<a href="https://github.com/SCAI-Lab/healthcare_msgs" target="_blank" rel="noopener" class="quick-link-card">
<h3>ROS 2 Messages</h3>
<p>Contribute to the <code>healthcare_msgs</code> package — add new <code>.msg</code> definitions, improve
existing ones, or extend support for new ROS distros.</p>
</a>
<a href="https://github.com/SCAI-Lab/medwear" target="_blank" rel="noopener" class="quick-link-card">
<h3>MEDWEAR Platform</h3>
<p>Contribute to the data collection platform and MED-API — bug fixes, new features, deployment
improvements, or integration with new storage backends.</p>
</a>
<a href="https://github.com/SCAI-Lab/healthcare_common" target="_blank" rel="noopener"
class="quick-link-card">
<h3>Conversion & Streaming Tools</h3>
<p>Improve conversion scripts, add support for new file formats, or extend the streaming libraries for MQTT,
UDP, WebSockets, or BLE.</p>
</a>
</div>
</section>
<section>
<h2>How to Contribute</h2>
<ol>
<li>Fork the relevant repository on GitHub (links above).</li>
<li>Make your changes or additions, including detailed justifications and documentation.</li>
<li>Submit a Pull Request describing your changes clearly.</li>
<li>We will review your submission and provide feedback.</li>
</ol>
<p>We encourage active participation and welcome discussions on issues and feature requests.</p>
</section>
</main>
</div>
<footer>
<div class="footer-logos">
<img src="assets/images/scai_logo.png" alt="SCAI Lab Logo" />
<img src="assets/images/ethz_logo.png" alt="ETH Zurich Logo" class="ethz-logo" />
</div>
<p>© 2026 ETH Zurich – MEDWEAR Project | Contact: diego.paez@scai.ethz.ch · monica.perezserrano@hest.ethz.ch</p>
</footer>
</body>
</html>