Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zanjie1999/dingble
esp32修改蓝牙mac地址 模拟蓝牙打卡机
https://github.com/zanjie1999/dingble
Last synced: 2 days ago
JSON representation
esp32修改蓝牙mac地址 模拟蓝牙打卡机
- Host: GitHub
- URL: https://github.com/zanjie1999/dingble
- Owner: zanjie1999
- Created: 2019-09-29T08:10:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T06:48:18.000Z (over 1 year ago)
- Last Synced: 2024-04-30T09:03:45.769Z (7 months ago)
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 87
- Watchers: 2
- Forks: 29
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dingBle
修改esp32的蓝牙mac地址,模拟各种蓝牙设备
并且还可以按照指定的raw内容来返回扫描结果
比如模拟某钉的打卡机,实现蓝牙打卡### 如何使用
首先,装一个叫 nRF Connect 的app,走到打卡机旁边,找到信号最强那个,记下他的mac地址,复制raw
然后修改 dingBle.ino 中的 bleMac 和 bleRaw ,去掉最前面的0x,两个一组,前面加上0x,是不是很直观?
还是不能理解?那就举个🌰:
0x112233445566778899
就会变成:
{0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99}
然后用arduino开发环境编译上传到esp32就可以用了
App需要新一点的版本,例如Android下需要4.7.5以上的,不然不会蓝牙打卡