Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Project Documentation

Arduino UNO and Bluetooth Module HM-10 Based Wireless Communication System

Image of Arduino UNO and Bluetooth Module HM-10 Based Wireless Communication System

Circuit Documentation

Summary

This circuit involves an Arduino UNO microcontroller connected to an HM-10 Bluetooth module. The Arduino UNO provides power and communication to the Bluetooth module, enabling wireless communication capabilities.

Component List

Arduino UNO

  • Description: A microcontroller board based on the ATmega328P.
  • Pins: UNUSED, IOREF, Reset, 3.3V, 5V, GND, Vin, A0, A1, A2, A3, A4, A5, SCL, SDA, AREF, D13, D12, D11, D10, D9, D8, D7, D6, D5, D4, D3, D2, D1, D0
  • Purpose in Circuit: Acts as the main controller, providing power and communication to the Bluetooth module.

Bluetooth Module HM-10

  • Description: A Bluetooth Low Energy (BLE) module used for wireless communication.
  • Pins: BRK, RX, TX, GND, VCC, State
  • Purpose in Circuit: Enables wireless communication with other Bluetooth-enabled devices.

Wiring Details

Arduino UNO

  • 5V: Connected to VCC of the Bluetooth module.
  • GND: Connected to GND of the Bluetooth module.
  • D3: Connected to RX of the Bluetooth module.
  • D2: Connected to TX of the Bluetooth module.

Bluetooth Module HM-10

  • VCC: Connected to 5V of the Arduino UNO.
  • GND: Connected to GND of the Arduino UNO.
  • RX: Connected to D3 of the Arduino UNO.
  • TX: Connected to D2 of the Arduino UNO.

Documented Code

Arduino UNO Code (sketch.ino)

void setup() {
  // put your setup code here, to run once:

}

void loop() {
  // put your main code here, to run repeatedly:

}

Documentation (documentation.txt)


This documentation provides a comprehensive overview of the circuit, including a summary, detailed component descriptions, wiring details, and the code used in the microcontroller.