Self-powered Wireless Switch (BLE Beacon) - แท้ DFRobot

Self-powered Wireless Switch (BLE Beacon) - แท้ DFRobot
Self-powered Wireless Switch (BLE Beacon) - แท้ DFRobotSelf-powered Wireless Switch (BLE Beacon) - แท้ DFRobotSelf-powered Wireless Switch (BLE Beacon) - แท้ DFRobotSelf-powered Wireless Switch (BLE Beacon) - แท้ DFRobotSelf-powered Wireless Switch (BLE Beacon) - แท้ DFRobotSelf-powered Wireless Switch (BLE Beacon) - แท้ DFRobot
รหัสสินค้า SG00668
หมวดหมู่ Bluetooth (BT)
ราคา 425.00 บาท
สถานะสินค้า พร้อมส่ง
จำนวน
ชิ้น
หยิบลงตะกร้า
หนังสือรับรองบริษัท
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
Description:
The self-powered wireless switch series by DFRobot advances the traditional wireless control paradigm by completely removing the need for batteries. This next-generation self-powered wireless switch - BLE Beacon, unlike its predecessor, the self-powered wireless switch - 433MHz, features a micro power generator and an energy storage RF circuit that captures kinetic energy from each press, converting it into electrical power. This energy is then stored and utilized to transmit wireless signals, making the switch maintenance-free and ideal for long-term applications like wireless doorbells, call buttons, ordering devices, and wall switches.

Self-Sustaining Power Generation
This new model eliminates the need for batteries, addressing common issues such as battery replacement, corrosion in humid environments, and environmental pollution from battery waste. The self-sustaining power mechanism ensures uninterrupted operation and significantly reduces maintenance efforts.
 
Enhanced Wireless Signal Capabilities
The switch offers robust wireless transmission without the need for wiring, ensuring flexible and hassle-free installation. The latest BLE beacon version supports BLE 5.3, enabling seamless integration with smartphones and other Bluetooth-enabled devices for versatile control applications. Compared to the previous 433MHz RF version, the BLE beacon provides faster transmission rates (1Mbps vs. 10kbps) and enhanced anti-interference capabilities with GFSK modulation.
 
Unique Address Code for Secure Transmission
Each switch is equipped with a unique 6-byte address code, guaranteeing secure and reliable signal transmission without interference. This feature ensures consistent performance even in complex wireless environments.
 
Improved Durability and Press Performance
Designed for durability, the switch can withstand up to 100,000 presses. The BLE beacon version features a lower press force requirement (1300g vs. 1800g) and a shorter press distance (1.3mm vs. 2.6mm), offering better tactile feedback and user experience. The power efficiency is also enhanced, requiring only 250uJ per press compared to the previous 600uJ.
 
Enhanced Application Suitability
The BLE beacon version is particularly suited for users familiar with ESP32 and other Bluetooth-enabled MCUs or those integrating with smartphones. It eliminates the need for a dedicated receiver, offering greater flexibility. While the 433MHz version remains ideal for scenarios requiring penetration through multiple walls due to its strong penetration capabilities, the BLE version provides superior anti-interference performance and faster transmission, making it a more advanced choice for modern applications.

The upgraded self-powered wireless switch series offers significant improvements in power efficiency, signal transmission, and user experience, making it an essential component for long-term, maintenance-free wireless control solutions in various applications.
Board Overview and Port Function
Board Overview and Port Function
 
How to use mobile app or ESP32 scan the BLE information

Features

  • Wireless doorbells
  • Call buttons
  • Order buttons
  • Wall switches
Features
  • No battery needed, maintenance-free
  • Wireless signal, wiring-free
  • 6-byte unique address code
  • Advertising BLE signals
  • 100,000 press lifespan
Specification
  • Frequency: 2.4GHz
  • Advertising channels: 37 + 38 + 39 (2402MHz, 2426MHz, 2480MHz)
  • Advertising data format: Supplier-customized Beacon
  • Generated energy: 250µJ
  • Actuation force: typical value 1300g
  • Module weight: 14g ± 2.5g (excluding antenna)
  • Module dimensions: 44 x 22 x 11mm
  • Press frequency: up to 2 presses per second (pressing too quickly may trigger a protection state, requiring approximately 10 seconds to reset)
  • Communication distance: >40m (with a smartphone as the receiver, in open outdoor conditions)
Documentation
Shipping List
  • Self-powered Wireless Switch-BLE Beacon x 1
  • 2.4G FPC IPEX1 antenna x 1

Board Overview

Name Function
1. Programming port Reserved for custom functions
2. Expansion port Reserved for custom functions
3. Power generation button Generates energy when pressed
  • Note: For custom advertising formats, please contact us. Supported advertising formats and related functionality can be tested using TEL0168-Fermion: BLE Sensor Beacon

Scan with mobile app

  • 1.Install and openNanoBeacon™ BLE Scanner
  • 2.Click on the top-left filter button to open the filter, then filter by name "WS_DF". Once done, click the filter button again to close the filter. Note that if there is a triangle symbol at the bottom-right, it means scanning is paused. You can resume scanning by clicking the triangle symbol or scrolling down the page.

  • 3.Press the power generation button to see the app detect the button press.

Scan with ESP32

/*
Based on Neil Kolban example for IDF: https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleScan.cpp
Ported to Arduino ESP32 by Evandro Copercini
Changed to a beacon scanner to report iBeacon, EddystoneURL and EddystoneTLM beacons by beegee-tokyo
*/

#include <Arduino.h>
#include <BLEDevice.h>
#include <BLEUtils.h>
#include <BLEScan.h>
#include <BLEAdvertisedDevice.h>
#include <BLEEddystoneURL.h>
#include <BLEEddystoneTLM.h>
#include <BLEBeacon.h>
#define ENDIAN_CHANGE_U16(x) ((((x)&0xFF00) >> 8) + (((x)&0xFF) << 8))

float TemperatureData,HumidityData;
float Temperature,Humidity;

int scanTime = 3; //In seconds
BLEScan *pBLEScan;

class MyAdvertisedDeviceCallbacks : public BLEAdvertisedDeviceCallbacks
{
void onResult(BLEAdvertisedDevice advertisedDevice)
{
if (advertisedDevice.haveName())
{
if(String(advertisedDevice.getName().c_str()) == "WS_DF")
{
std::string strManufacturerData = advertisedDevice.getManufacturerData();
uint8_t cManufacturerData[100];
strManufacturerData.copy((char *)cManufacturerData, strManufacturerData.length(), 0);
Serial.printf("Address:");

for (int i = 2; i < 8; i++)
{
Serial.printf("[%X]", cManufacturerData[i]);
}
Serial.println();
Serial.println("------------------");
}
}
}
};
void setup()
{
Serial.begin(115200);
Serial.println("Scanning...");

BLEDevice::init("");
pBLEScan = BLEDevice::getScan(); //create new scan
pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks());
pBLEScan->setActiveScan(true); //active scan uses more power, but get results faster
pBLEScan->setInterval(100);
pBLEScan->setWindow(99); // less or equal setInterval value
}
void loop()
{
// put your main code here, to run repeatedly:
BLEScanResults foundDevices = pBLEScan->start(scanTime, false);
pBLEScan->clearResults(); // delete results fromBLEScan buffer to release memory
delay(2000);
}
  • Open the serial monitor and press the power generation button to view the device's address.

FAQ

  • 1:After pressing the button, sometimes the mobile app cannot scan BLE information?

    • Please close other background processes on your phone, disconnect from WiFi and mobile networks, and only enable Bluetooth. When your phone is busy processing tasks from other apps, it can cause the NanoBeacon BLE Scanner app to miss some BLE broadcasts during scanning.
    • When there are many obstacles between the receiver and transmitter, it significantly reduces the communication distance.
    • Pressing the button too quickly can lead to excessive power generation, causing the module to enter a protection state. Stop pressing the button and wait for about 10 seconds for it to recover on its own.
    • When the mobile app hasn't received BLE advertisements for a long time, it automatically enters sleep mode and stops scanning. Click the start button in the bottom right corner or pull down the interface to refresh.
  • 2:After pressing the button, sometimes the ESP32 cannot scan BLE information?

    • Please avoid testing in environments with too many electronic devices. In surroundings where there are numerous BLE devices, the ESP32's processing speed may be insufficient, leading to missed BLE advertisement scans.

วิธีการชำระเงิน

ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB

กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ

 

ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ

https://www.arduitronics.com/informpayment

 

บมจ. ธนาคารกสิกรไทย สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 สะสมทรัพย์
ธนาคารทหารไทยธนชาต จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 กระแสรายวัน

เพิ่มเพื่อน

@rfm0967y

ติดต่อสอบถาม

เพิ่มเพื่อน

CATEGORY

Sensors / Modules [1695]

CONTACT US

มือถือ 0887823467 แฟกซ์ 02-0153201

Join เป็นสมาชิกร้านค้า

ร้านArduitronics
ร้านArduitronics
/www.arduitronics.com/
Join เป็นสมาชิกร้าน
2118
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

STATISTICS

หน้าที่เข้าชม15,375,197 ครั้ง
ผู้ชมทั้งหมด5,878,275 ครั้ง
เปิดร้าน21 พ.ค. 2556
ร้านค้าอัพเดท5 ก.ย. 2568

MEMBER

พูดคุย-สอบถาม