
Medical Touch Interaction Product Line
Extreme Touch Hardware + Open Software Toolchain
Creating “Focused • Efficient • Hands-Free” Al Gateway for Healthcare
One-Touch Clinmic – Experience the Future of Healthcare

Between the beeps of monitors and the urgency of trauma
bays, technology should be as invisible as air—yet vital in
every breath.
That is why Clinic exists: one touch, instant insight, no
screens, no wake words.
Attention returns to the patient; Al handles the rest.
Learn More
Al-Powered Healthcare
A Major Transformation in Healthcare

Our Mission
Revolutionizing Healthcare Al Seamless Interaction, Lightning Speed, and Open Security

Attention-First Design
Enables “screen-free operation via tactile buttons
with LED/Vibration feedback, minimizing clinician
distraction.

Clinical Efficiency Boost
Completes voice-to-structured-data conversion
in ≤3 seconds, saving 70% documentation time.

Open & Secure Infrastructure
Hardware-embedded encryption ensures HIPAA
complance while offering REST APis and on-prem
deployment
Four Value Pillars

Residential
Zero-screen operation with LED/haptic
cues. “Press-hold-to-record” prevent
false triggers while maintaining full
situational awareness.

Commercial
28 Al response, 5s/command time
saved Tap-to-Mark flags
critical 60s clips with Al summaries,
accelerating clinical workflows.

Natural Interaction
Wake-word-free design with
tactle buttons/gestures. Real-time
57+ language translation breaks
down clinical language barriers globally.

Controllability
AES-256 hardware encryption.
HIPAA/GDPR on-prem/edge. SDK
Integrates private LLM + FHIR/CDS
via Python/Java/REST.
product portfolio
Product Line up

Clinmic 04

Clinmic 05

Clinpen 01

Under Development
Clinmic 06

Clinmic T01*
| Feature | Clippen 01 | Clinmic 04 | Clinmic 05 | Clinmic 06 | Clinmic T01* |
|---|---|---|---|---|---|
| Core Use Case | Recording + Writing with Real Ink | Recording + Upload Transcription | Noise-Canceling Recording + Voice Interaction | Smart Recording + Interaction (Tap-to-Mark) | Multi-Task Voice Terminal (Recording + Query, etc.) |
| Writing Capability | Yes (Real ink cartridge) | No | No | No | No |
| Built-in Speaker | No | No | Yes | Yes (inherits 05 features) | Yes |
| NFC Communication | No | No | Yes | Yes (inherits 05 features) | Yes |
| Motion Sensor | No | No | No | Six-Axis Sensor (Tap-to-Mark) | Yes (supports multiple gestures) |
| Security Chip | No | No | Software Encryption (No dedicated chip) | Yes (Hardware-level security) | Yes |
| BLE Broadcast | Basic Broadcast (Pairing only) | Basic Broadcast (Pairing only) | No (Mainly BT connection) | Yes (Supports broadcast mode) | Yes |
| Button Design | Single Button (Long press to power on, short press to record) | Single Button (Long press to power on, short press to record) | Single Button (Side mode key) | Single Button (Tap replaces some operations) | Multi-Button Design (Multi-function keys) |
| Applicable Roles/Scenarios | Traditional note-taking, quick audio memos | Personal notes, basic recording | Ward rounds, small clinics, translation aid | Doctor consultations, nursing inquiries, data security | Mobile medical stations, front desk, multi-task collaboration |
Typical Workflows
End-to-End Data Flow: From Device Integration to Clinical Decision
Outpatient MD Nurse Pharmacist Paramedic
Uncovering Opportunity: Mapping Your Path to Market Success
01. Press button to start consultation recording
02. Release when finished
03. Clinmic generates SOAP draft and pushes to EHR
04. Saves average 3 minutes typing per consultation.

Focusing on Value: Architecting the Core Product Experience
01. Double-tap to mark critical condition changes
02. AI auto-extracts 1-min surrounding audio, generates nursing record highlights & task reminders.

Solidifying the Blueprint: Translating Vision into Engineering Language
01. Light tap device for pharmacology questions
02. Audio instantly sent to hospital pharmacy LLM
03. Haptic notification when complete
04. Tap again to play voice answer

De-risking Innovation: Ensuring a Robust Implementation Path
01. Long press to sync patient information
02. Clinmic caches offline and transmits via 4G to emergency backend, enabling “treatment starts in ambulance.”

/** * 标签系统JavaScript代码 * 用于处理标签切换功能 */ // 等待DOM加载完成后执行 document.addEventListener(‘DOMContentLoaded’, function() { // 初始化标签系统 function initTabSystem() { // 获取所有标签系统容器 const tabSystems = document.querySelectorAll(‘.tabs-system-one’); tabSystems.forEach(function(system) { // 获取当前系统内的按钮和面板 const buttons = system.querySelectorAll(‘.btn-system-one’); const panels = system.querySelectorAll(‘.panel-one’); // 确保第一个按钮和面板处于激活状态 if (buttons.length > 0 && panels.length > 0) { // 移除所有激活状态 buttons.forEach(btn => btn.classList.remove(‘active’)); panels.forEach(panel => panel.classList.remove(‘active’)); // 激活第一个标签和面板 buttons[0].classList.add(‘active’); panels[0].classList.add(‘active’); } // 为每个按钮添加点击事件 buttons.forEach(function(button, index) { button.addEventListener(‘click’, function(e) { e.preventDefault(); // 获取目标面板ID const targetId = button.getAttribute(‘data-target’); const targetPanel = system.querySelector(‘#’ + targetId); if (targetPanel) { // 移除所有按钮的激活状态 buttons.forEach(btn => btn.classList.remove(‘active’)); // 隐藏所有面板 panels.forEach(panel => { panel.classList.remove(‘active’); }); // 激活当前按钮 button.classList.add(‘active’); // 显示目标面板(添加小延迟以实现平滑动画) setTimeout(function() { targetPanel.classList.add(‘active’); }, 50); // 触发自定义事件 const event = new CustomEvent(‘tabChanged’, { detail: { activeTab: button, activePanel: targetPanel, tabIndex: index } }); system.dispatchEvent(event); } }); }); }); } // 初始化函数 initTabSystem(); // 处理动态加载的内容(如果需要) const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.type === ‘childList’) { mutation.addedNodes.forEach(function(node) { if (node.nodeType === 1) { // 元素节点 if (node.classList && node.classList.contains(‘tabs-system-one’)) { initTabSystem(); } else if (node.querySelector && node.querySelector(‘.tabs-system-one’)) { initTabSystem(); } } }); } }); }); // 开始观察DOM变化 observer.observe(document.body, { childList: true, subtree: true }); // 公开API(可选) window.TabSystem = { // 切换到指定标签 switchTab: function(systemSelector, tabIndex) { const system = document.querySelector(systemSelector); if (system) { const buttons = system.querySelectorAll(‘.btn-system-one’); if (buttons[tabIndex]) { buttons[tabIndex].click(); } } }, // 获取当前激活的标签 getActiveTab: function(systemSelector) { const system = document.querySelector(systemSelector); if (system) { const activeButton = system.querySelector(‘.btn-system-one.active’); const activePanel = system.querySelector(‘.panel-one.active’); return { button: activeButton, panel: activePanel }; } return null; }, // 重新初始化标签系统 reinit: function() { initTabSystem(); } }; console.log(‘标签系统已初始化’); }); // 为WordPress主题兼容性添加额外的初始化 if (typeof jQuery !== ‘undefined’) { jQuery(document).ready(function($) { // 如果页面使用jQuery,也在这里初始化 console.log(‘jQuery环境下标签系统已就绪’); // 处理WordPress可能的延迟加载内容 $(window).on(‘load’, function() { setTimeout(function() { // 重新检查并初始化标签系统 const tabSystems = document.querySelectorAll(‘.tabs-system-one’); if (tabSystems.length > 0) { console.log(‘页面完全加载后重新初始化标签系统’); window.TabSystem && window.TabSystem.reinit(); } }, 500); }); }); }
Integration Blueprint
Clinmic System Architecture (Bottom-Up View)
| Layer | Component | Function & Offering |
|---|---|---|
| Hardware Entry Point | Clinmic Devices (MIC04/05/06/T01/PEN02) | * • Screenless, wearable, ambient AI voice capture * • BLE / Wi-Fi / 4G Cat-1 connectivity * • Full ODM customization (design + certification) |
| Edge Middleware | Clinmic OS / Edge Relay | * • BLE/Wi-Fi SDK + TapTap real-time trigger * • SDKs in Python / C / C++ * • Includes firmware & edge relay box |
| Cloud AI Services | Medical ASR Layer | * • Delayed transcription for HIPAA-compliant care * • Use your own API or our SaaS * • Private cloud kits available |
| AI Orchestration | ChatGPT-Agent / n8n Layer | * • Virtual Assistant + Workflow Automation * • Prebuilt medical agents * • Deployable in private cloud |
| Top Layer | EHR Systems (Epic, Cerner, Athena…) | * • REST / qRPC / FHIR Integration * • Zero modification to existing systems |
ODM Scope & Capabilities
Clinmic System Architecture (Bottom-Up View)
| Domain | What We Offer |
|---|---|
| Hardware | Device design, mold customization, BLE/Wi-Fi/4G integration, FCC/CE/FDA support |
| Firmware / OS | Tap-to-Talk API, SDKs, edge relay box with BLE/Wi-Fi forwarding |
| Cloud AI | Optional SaaS for transcription + SOAP summarization, or private kit deployment |
| Agent Layer | Prebuilt agents, workflow logic, reminder/order handlers, n8n & GPT integration |
| Integration | EHR-ready output via FHIR/REST/HL7—no disruption to existing records system |
GMIC • Clinmic
Deployment Options
Cloud Saas

Scale: Clinics / Small hospitals
Features: Zero maintenance; multi-tenant isolation
Notes: Accelerated launch, pay-per-use
Private Cloud

Scale: Medium to large hospitals
Features: VPN dedicated line + dedicated VPC
Notes: Hardware/software isolation key
support
On-Prem / Edge

Scale: Military medical, remote rescue
Features: Full local inference; offline caching
Notes: Zero extemal network, highest privacy level
Partnership Models
Device Purchase + SaaS Subscription

Plug-and-play solution, fastest deployment within 1 week.
Joint Development (OEM/ODM)

Custom appearance, button mapping,
deep SDK integration.
Ecosystem Partners

ISV/SI partners integrate proprietary LLMs or knowledge bases, co-building industry solutions.
We win when clinicians forget the technology is even there.
Next Steps
Online Demo
Schedule 30-min remote demo, experience 2-second ultra-fast AI interaction
Pilot Program
Apply for 30-day trial kit (≥5 Clinmic 06 units), includes private API access
Developer Documentation
gmic.ai/clinmic/dev – Complete SDK, Webhooks, sample code
Let technology disappear — so care can reappear.