Wish List 0

Hm10 Ble V4.0 cc2541

Rs. 293.00 Rs. 337.00

  • Product Code: BLE
  • SKU - SE-4391
  • Availability: In Stock
  • Price in reward points: 2
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
HM-10 BLE Bluetooth 4.0 CC2541 Wireless Module is a BLE module for an embedded system to get BLE wireless communication with BLE capable devices (e.g. Android, iPhone, and iPad).
It is fully configurable by a rich and well documented AT command-set and allows transparent data communication via serial UART (default baud rate 9600bps). The Bluetooth 4.0 HM-10 is basically a breakout board for cc2541, it broke out the LED pins, RX/TX and also adding the voltage regulator that regular 5v to 3.3 v.
HM-10 and HM-11 series Bluetooth module use TI CC2540 chip, configure 256KB space and support the AT command. Users can change the role (master, slave mode) and the serial port baud rate, equipment name, matching password and other parameters on-demand. It is very flexible to use.
The most complete, most convenient, and most stable Bluetooth data transmission, remote control and data acquisition module. Master-slave in one, transparent transmission, replacing the serial port. Remote control, transparent transmission, MCU is unnecessary. Remote data acquisition, transparent transmission, MCU is unnecessary.
Pin Description of HM-10 BLE Bluetooth 4.0 CC2541 Wireless Module
pins, connected to an internal LED, generally keep it unconnected.
STATE state test pins, connected to an internal LED, generally keep it unconnected.
BRK   break connect, it means breaking the Bluetooth connection, generally keep it unconnected.
VCC   positive pole of the power source.
GND   Ground.
TX    serial interface, transmitting terminal.
RXD   serial interface, receiving terminal.


Features:

-It’s easy to use and completely encapsulated.

-You can set it as a slave or master.

-You can use the AT command set the baud rate.

-Coverage up to 60 meters.

-Built-in PCB antenna.

-UART design.

-Support bridge direct-driven mode simultaneously (no need for extra CPU).

-20ms connection interval (default), quick to connect; Support AT instruction, to modify the baud rate of the serial port, gain MAC address and modify module name.

-Support AT instruction, to adjust the Bluetooth connection interval and control the forwarding rate (dynamic power consumption adjustment).

-Support APP; IO expansion.

-2 channel ADC input (14 bit).

-4 channel PWM (120Hz) output.

-The RSSI successive acquisition, auto read, and notification to APP (used in anti-lost alarm).

-Power indicator/alert.

-Support anti-hijack password setup, modification, and restoration.

-Ultra-low power consumption standby mode.




SPECIFICATION:
Input Supply voltage (V)      5
USB Protocol                  USB V2.0
Operating Frequency           2.4GHz ISM band
Modulation Mode               GFSK
Transmitting Power (dBm)      ≤4
Coverage Range (m)            60
Sensitivity                   ≤-84dBm at 0.1% BER
OVERVIEW
Bluetooth Protocol     Bluetooth Specification V4.0 BLE
USB Protocol           USB V2.0
Operating Frequency    2.4GHz ISM band
Modulation Mode        GFSK (Gaussian Frequency Shift Keying)
Transmitting Power     ≤4dBm
Sensitivity            ≤-84dBm at 0.1% BER


-It’s easy to use and completely encapsulated.

-You can set it as slave or master.

-You can use AT command set the baud rate.

PACKAGE INCLUDES:

1 PCS x Hm 10 Ble Bluetooth 4.0 Cc2541 Wireless Module



//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/ingo-lohs/bluetooth-hm-10-module-6eb803

void loop() {

 if (SerialBT.available()){      // Daten liegen an

    msg = SerialBT.readString(); // Nachricht lesen

    if (msg == "ein") {

        digitalWrite(LED, HIGH);

        digitalWrite(LED_ext, HIGH);

        SerialBT.print("LED an Pin ");

        SerialBT.print(LED);

        SerialBT.println(" ist eingeschaltet!");

     } 

     else

     if (msg == "aus") {

        digitalWrite(LED, LOW);

        digitalWrite(LED_ext, LOW);

        SerialBT.print("LED an Pin ");

        SerialBT.print(LED);

        SerialBT.println(" ist ausgeschaltet!");

     }

     else {

        SerialBT.print("Kommando <");

        SerialBT.print(msg);

        SerialBT.println("> nicht bekannt");

     }

   }

}                                       

15 DAYS

Write a review

Please login or register to review