Stufin
Home Quick Cart Profile

Starson S100 Mini Bluetooth Earbuds

Buy Now on Stufin

Component Name

Starson S100 Mini Bluetooth Earbuds

Overview

-----------

The Starson S100 Mini Bluetooth Earbuds are a compact, wireless audio solution designed for everyday use. These earbuds offer high-quality audio, long battery life, and seamless connectivity to ensure an immersive listening experience.

Functionality

-------------

The Starson S100 Mini Bluetooth Earbuds are a Bluetooth 5.0-enabled device that allows users to stream audio from their smartphones, tablets, or laptops wirelessly. The earbuds are designed to provide a convenient and portable way to enjoy music, podcasts, or hands-free phone calls.

### Key Features

#### Design and Comfort

Ultra-compact design with a lightweight build (5g per earbud)

Ergonomic shape for comfortable fit and snug fit in the ear

Available in three sizes of ear tips (S, M, L) for a customized fit

#### Audio Performance

High-fidelity audio with clear sound and deep bass

10mm drivers for enhanced sound quality

Supports SBC, AAC, and aptX audio codecs

#### Connectivity and Pairing

Bluetooth 5.0 technology for stable and fast connections

Easy pairing process with most Bluetooth-enabled devices

Auto-pairing functionality for quick reconnection

Supports multiple device connections (up to 2 devices)

#### Battery Life and Charging

Up to 5 hours of playtime on a single charge

Quick charging functionality (10 minutes of charging for 1 hour of playback)

Charging case provides an additional 20 hours of playback time

USB-C charging port for convenient charging

#### Additional Features

Built-in microphone with noise cancellation for clear phone calls

Voice assistant integration (Siri, Google Assistant, etc.)

IPX4 rating for sweat and water resistance

Multi-point connection for seamless switching between devices

Technical Specifications

-------------------------

Dimensions

20.5 x 17.5 x 14.5 mm (per earbud)

Weight

5g (per earbud)

Frequency Response

20Hz - 20kHz

Sensitivity

110 dB 3 dB

Impedance

16 ohms 10%

Operating Range

Up to 10 meters (33 feet)

Compatible with most Bluetooth-enabled devices (smartphones, tablets, laptops, etc.)

Certifications and Compliance

-----------------------------

CE, FCC, and RoHS compliant

Meets Bluetooth 5.0 specification

Warranty and Support

----------------------

1-year limited warranty

Dedicated customer support team for assistance with product-related queries

Pin Configuration

  • Starson S100 Mini Bluetooth Earbuds Pinout Documentation
  • The Starson S100 Mini Bluetooth Earbuds feature a compact design with a 6-pin interface, allowing for easy integration into various IoT projects. Below is a detailed explanation of each pin, along with a step-by-step guide on how to connect them:
  • Pinout Diagram:
  • | Pin Number | Pin Name | Description |
  • | --- | --- | --- |
  • | 1 | GND | Ground |
  • | 2 | VCC | Power Supply (3.3V-5V) |
  • | 3 | TXD | Transmit Data (UART) |
  • | 4 | RXD | Receive Data (UART) |
  • | 5 | RESET | Reset Pin |
  • | 6 | MIC | Microphone Input |
  • Pin-by-Pin Description and Connection Guide:
  • 1. GND (Pin 1) - Ground
  • This pin provides a common ground connection for the entire system.
  • Connect this pin to the ground of your power supply or microcontroller.
  • 2. VCC (Pin 2) - Power Supply (3.3V-5V)
  • This pin supplies power to the earbuds' Bluetooth module and other components.
  • Connect this pin to a stable power supply between 3.3V and 5V, such as a battery or a regulated power adapter.
  • 3. TXD (Pin 3) - Transmit Data (UART)
  • This pin transmits data from the earbuds' Bluetooth module to an external microcontroller or device.
  • Connect this pin to the receive (RX) pin of your microcontroller or device.
  • 4. RXD (Pin 4) - Receive Data (UART)
  • This pin receives data from an external microcontroller or device and transmits it to the earbuds' Bluetooth module.
  • Connect this pin to the transmit (TX) pin of your microcontroller or device.
  • 5. RESET (Pin 5) - Reset Pin
  • This pin is used to reset the earbuds' Bluetooth module.
  • Connect this pin to a digital output pin of your microcontroller or device, and toggle it high to reset the module.
  • 6. MIC (Pin 6) - Microphone Input
  • This pin connects to the earbuds' built-in microphone.
  • This pin is not typically connected to an external component, as the microphone is already integrated into the earbuds.
  • Additional Notes:
  • When connecting the earbuds to a microcontroller or device, ensure that the TXD and RXD pins are correctly matched to avoid communication errors.
  • The earbuds require a stable power supply to function properly. Use a high-quality power source and decoupling capacitors to minimize noise and interference.
  • Refer to the earbuds' datasheet and the microcontroller or device's documentation for specific connection guidelines and communication protocols.
  • By following this pinout documentation and connection guide, you can successfully integrate the Starson S100 Mini Bluetooth Earbuds into your IoT projects and take advantage of their compact design and Bluetooth capabilities.

Code Examples

Starson S100 Mini Bluetooth Earbuds Documentation
Overview
The Starson S100 Mini Bluetooth Earbuds are a compact, lightweight, and wireless audio solution designed for IoT applications. These earbuds feature a Bluetooth 5.0 module, enabling seamless connectivity with smart devices, and are ideal for use cases such as audio streaming, voice assistants, and hands-free calling.
Technical Specifications
Bluetooth version: 5.0
 Frequency range: 2.4 GHz
 Range: Up to 10 meters (33 feet)
 Audio codec: SBC, AAC
 Battery life: Up to 4 hours playback, 100 hours standby
 Weight: 4.5 grams (0.16 oz) per earbud
 Operating temperature: -20C to 40C (-4F to 104F)
Development Platforms and Tools
The Starson S100 Mini Bluetooth Earbuds can be integrated into various IoT projects using popular development platforms and tools, including:
Arduino
 Raspberry Pi
 ESP32/ESP8266
 Python, C++, and JavaScript programming languages
Code Examples
### Example 1: Connecting to an Arduino Board using Serial Communication
In this example, we will demonstrate how to connect the Starson S100 Mini Bluetooth Earbuds to an Arduino board using serial communication to play audio from a microSD card.
Hardware Requirements
Arduino Board (e.g., Arduino Uno or Arduino Nano)
 Starson S100 Mini Bluetooth Earbuds
 MicroSD card with audio files
Software Requirements
Arduino IDE
Code
```c
#include <SoftwareSerial.h>
#define RX_PIN 10
#define TX_PIN 11
SoftwareSerial btSerial(RX_PIN, TX_PIN);
void setup() {
  Serial.begin(9600);
  btSerial.begin(9600);
}
void loop() {
  // Send audio data from microSD card to Bluetooth earbuds
  File audioFile = SD.open("audio.mp3");
  if (audioFile) {
    btSerial.write(audioFile.read());
    audioFile.close();
  }
  delay(100);
}
```
### Example 2: Streaming Audio from a Raspberry Pi using Python
In this example, we will demonstrate how to stream audio from a Raspberry Pi to the Starson S100 Mini Bluetooth Earbuds using Python and the `bluepy` library.
Hardware Requirements
Raspberry Pi (any model)
 Starson S100 Mini Bluetooth Earbuds
Software Requirements
Raspbian OS
 Python 3.x
 `bluepy` library (install using `pip install bluepy`)
Code
```python
import bluepy
# Initialize Bluetooth adapter
adapter = bluepy.Adapter()
# Scan for available devices
devices = adapter.scan()
# Find the Starson S100 Mini Bluetooth Earbuds
for device in devices:
    if device.name == "Starson S100 Mini":
        earbuds = device
# Establish a connection to the earbuds
earbuds.connect()
# Stream audio from Raspberry Pi to earbuds
audio_stream = open("audio.mp3", "rb")
while True:
    data = audio_stream.read(1024)
    if not data:
        break
    earbuds.send(data)
audio_stream.close()
earbuds.disconnect()
```
These code examples demonstrate the basic connectivity and audio streaming capabilities of the Starson S100 Mini Bluetooth Earbuds. By integrating these earbuds into your IoT projects, you can create innovative audio-based applications with wireless connectivity.