Code-Pulse
FeaturesHow It WorksEditorDocs
Documentation

Learn Code-Pulse

Everything you need to get started with bio-feedback live-coding.

Quick Start

5 min
Getting Started
Set up your first bio-feedback coding session in under 5 minutes.
3 min
Connect BLE Device
Learn how to pair your Bluetooth heart rate monitor.
2 min
Enable Webcam Detection
Set up rPPG pulse detection using your webcam.
10 min
Your First Session
Write and run code while monitoring your biometrics.

Documentation

Getting Started
Start using Code-Pulse in minutes.
  • What is Code-Pulse?
  • System Requirements
  • Your First Session
  • Supported Browsers
Device Setup
Connect your heart rate monitor or webcam.
  • Bluetooth Setup
  • Troubleshooting BLE
  • Webcam Setup
  • Webcam Troubleshooting
Code Editor
How to use the JavaScript editor.
  • Editor Basics
  • Running Code
  • Console Output
  • Error Messages
Session Data
View and understand your session history.
  • Viewing Sessions
  • Heart Rate Data
  • Exporting Data
  • Data Privacy
Privacy & Security
How we protect your biometric data.
  • Data Processing
  • Privacy Controls
  • GDPR Compliance
  • Security Practices

Code Examples

Connect BLE Heart Rate Monitor
javascript
// Request Bluetooth device
const device = await navigator.bluetooth.requestDevice({
  filters: [{ services: ['heart_rate'] }]
});

// Connect to GATT server
const server = await device.gatt.connect();
const service = await server.getPrimaryService('heart_rate');
const characteristic = await service.getCharacteristic(
  'heart_rate_measurement'
);

// Start notifications
await characteristic.startNotifications();
characteristic.addEventListener(
  'characteristicvaluechanged',
  handleHeartRate
);
API Reference
Complete API documentation with examples and SDKs.
Explore API
Configuration
Learn how to customize your Code-Pulse experience.
View Config
Need Help?
Can't find what you're looking for? Contact our support team.
Get Support
Code-Pulse

JavaScript code editor with live heart rate display.

workwithme785@gmail.com

Product

  • Features
  • Pricing
  • Integrations
  • Changelog

Resources

  • Documentation
  • Blog
  • Community
  • Support

Company

  • About
  • Careers
  • Privacy
  • Terms

© 2026 Code-Pulse Live. All rights reserved.

GitHubTwitterEmail