Skip to content

Commit

Permalink
bluetooth intro
Browse files Browse the repository at this point in the history
  • Loading branch information
ImplFerris committed Feb 8, 2025
1 parent be37fcd commit 453e8ac
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,5 @@
- [Pin layout](./joystick/pin-layout.md)
- [Circuit](./joystick/circuit.md)
- [Print ADC Values](./joystick/print-adc-values.md)
- [Bluetooth](./bluettoh/index.md)
- [Projects](./projects.md)
30 changes: 30 additions & 0 deletions src/bluettoh/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Bluetooth

Bluetooth needs no introduction. You probably use it daily; connecting your wireless headphones with your phone, wireless mouse, smartwatch, and more. In smart homes, Bluetooth helps link different devices. For example, you can control lights, appliances, and thermostats using Bluetooth-enabled apps on your phone.

<div class="alert-box alert-box-info">
<span class="icon"><i class="fa fa-info"></i></span>
<div class="alert-content">
<b class="alert-title">Did you know?</b>
<p>Bluetooth was named after King Harald "Bluetooth" Gormsson. During a meeting, Jim Kardach from Intel suggested it as a temporary code name. Kardach later said, "King Harald Bluetooth…was famous for uniting Scandinavia just as we intended to unite the PC and cellular industries with a short-range wireless link"</p>
</div>
</div>


## Categories

Bluetooth technology is divided into two main types: Bluetooth Classic and Bluetooth Low Energy (BLE).

### **Bluetooth Classic**
Bluetooth Classic is the original version of Bluetooth, commonly used in devices that require continuous data transfer, such as wireless headsets, speakers, and mouse. Before BLE was introduced, it was simply called "Bluetooth," but now it's referred to as Bluetooth Classic to distinguish it from BLE. It offers higher data rates, making it ideal for real-time applications like audio streaming.

### **Bluetooth Low Energy (BLE)**
BLE is designed for low power consumption, making it great for devices that send small amounts of data from time to time. This is especially useful for battery-powered IoT devices, such as fitness trackers and environmental sensors. Compared to Classic, BLE has lower latency, meaning it takes less time to start sending or receiving data after a connection is made.

### **Dual Mode**
Many modern devices support both Bluetooth Classic and BLE, a feature known as "Dual Mode." For example, a smartphone might use Classic for streaming music and BLE to connect to a smartwatch.

In general, Bluetooth Classic is better suited for continuous data transmission, such as real-time audio and video, while BLE is ideal for low-power communication with health monitors, sensors, and other small gadgets.

### **What About the ESP32?**
The ESP32 supports **dual-mode Bluetooth**, meaning it is compatible with both Bluetooth Classic and BLE.

0 comments on commit 453e8ac

Please sign in to comment.