Capture
Sensor modules generate candidate body or environment data.
OpenPulse is open-source-inspired: transparent data flows, controllable exports and APIs designed for teams building their own apps, dashboards or experiments.
const stream = await openpulse.connect({
device: "pilot-band-01",
modules: ["skin.puck.1", "environment.puck"],
});
stream.pipe({
sampleRate: partnerDefined,
ownership: "customer-controlled",
destination: partnerSystem,
});
The developer story should make the data path visible. OpenPulse is not claiming finished SDKs yet; this is the integration direction the platform is being built around.
Sensor modules generate candidate body or environment data.
The base board handles firmware, power, wireless and module routing.
Data becomes structured enough for export, dashboards or partner APIs.
The customer decides where the data goes and how it is used.
await openpulse.device("pilot-01")
.modules(["skin.puck.1", "skin.puck.2"])
.authorize(partnerToken);
{
"module": "skin.puck.1",
"signal": "candidate_biosignal",
"timestamp": 1780147200000,
"quality": "pilot"
}
stream.on("sample", sample => {
partner.dashboard.write(sample);
partner.archive.append(sample);
});
Join the technical interest list for API concepts, hardware updates and developer kit availability.