"/>

Yavilevich.com valuation and analysis

Robots.txt Information
Robot Path Permission
GoogleBot /
BingBot /
BaiduSpider /
YandexBot /
Meta Tags
Title Arik Yavilevich's blog | "Code IT", my thoughts on technology
Description With the release of Android 8.0 ("Oreo"), I as well as others have noticed that they cannot find some HM-10 clone BLE modules when scanning for them with an Android 8.0 (or newer) phone. Why is that happening and what can you do about it? tl;dr, the issue is due to a bug in the firmware of those modules, typically referred to as CC41 firmware. Fixing these modules is too much of a hassle and you would probably be better off getting a new module for communicating with Android 8.0 and perhaps use the problematic ones for iOS and pre Android 8.0 devices only. I have several projects which involve BLE, most noticeably Fochica, a system that alerts parents if they have unintentionally left their children in a vehicle. As a result I have been dealing with all sort of BLE modules in the last couple of years. Many of these modules are in a category called "HM-10 clones". I have written an Arduino sketch, arduino-ble-ident-n-set, to help identify the specific module type and to help configure it easily. Typically listed or sold as just "HM-10" these modules are a group of modules that share a form factor, pin layout and a micro-controller (the TI CC2541). While trying to mimic the original HM-10 by "Jinan Huamao technology Co" they differ by firmware, breakout board and daughter board. When ordering online it is very difficult to know which exact combination you will get. Only the original HM-10 modules have some kind of support, while other variations are mostly made by anonymous clone manufactures. I personally have dozens of modules with 6 different unique combinations, including 2 variants of CC41, 2 variants of MLT-BT05, an original HM-10 and a botched CC41 that I will describe in more detail later in the article. The bug When these modules fail, it could be due to an issue in the daughter board, the breakout board or in the firmware. This case is due to a bug in the CC41 firmware. When a BLE device receives a scan request it responds with a scan response. The response includes information about the device such as device name, services offered, etc. The length of the response depends on the amount of bytes in the response fields. The CC41 firmware always sends a response with length of 31 bytes. It basically performs a "read beyond bound" from the variable that stores the scan response. The first part of the 31 bytes is a valid scan response and the second part is some padding containing either uninitialized memory or data of the next variable in memory. iOS and pre Android 8.0 systems ignored this corrupt data but starting with Android 8.0 Google decided to perform stricter validation of this data. This was probably done to prevent potential security issues, crashes and to follow the standard more closely. The malformed response is ignored and the resulting behavior is as if the CC41 is not responding at all. I was able to reproduce and observe this behavior with the following BLE sniffing setup: TI SmartRF Protocol Packet Sniffer software - CC2540 USB device - - I got mine from eBay, probably a clone. SmartRF Flash Programmer software - TI SmartRF04EB programmer device - - I got mine from eBay, probably a clone. For a more DIY approach, there are articles showing how you can use an Arduino as a TI programmer. The steps are: Install the right software versions for your matching devices. Install a driver for the programmer. Program the "CC2540 USB" device with "Texas Instruments\SmartRF Tools\Packet Sniffer\bin\general\firmware\sniffer_fw_cc2540_usb.hex" firmware. Connect the CC2540 USB to your computer and run the packet sniffer software. I found the following guide from TI useful. We can now observe BLE traffic. Setting a filter on scan responses will make it easier to see the bug. Here are some responses from different BLE devices: CC41: 0D 09 46 6F 63 68 69 63 61 5F 33 31 41 44 00 00 81 00 10 00 FF FF FF FF FF FF FF FF FF FF ESP32: 02 01 06 0F 09 45 53 50 5F 47 41 54 54 53 5F 44 45 4D 4F 02 0A EB 05 03 EE 00 FF 00 HM-10: 07 09 48 4D 53 6F 66 74 MLT-BT05-V4.0: 09 09 4D 4C 54 2D 42 54 30 35 Local name, Field type, Length, Junk. I have color-coded the various parts to easily convey the issue in the response. For exact protocol details see the specifications. Few observations: A spontaneous idea might be to change the name of the CC41 device to something longer such that we have a valid response or at least a zero-padded one. However, the CC41 firmware doesn't allow to set a name longer than 18 characters. Most modules send only their name in response to a scan, while the ESP32 device in this example was programmed to send 3 other fields as well. Solutions It is unlikely that Android's new behavior will change so the typical resolution would be to update the firmware of the device to a bug free version. Unfortunately Bolutek, who seem to be the company behind the CC41, doesn't provide updated CC41 firmware or any easy way to upload the firmware to the device. We are left with the following options: Use another module Painful process to flash a different working available firmware Trying to hack the device Use another module This is probably the easiest option in terms of invested time. HM-10 clone modules are sold at $2 a piece so if you need to replace just a few it might be easier to order another HM-10 (clone) module. New modules will most likely come with a different firmware such as a MLT-BT05 variant, or even better an original HM-10 which has means for over-the-serial flash updates. If you still get a CC41 module nowadays I feel it is a valid reason to ask for a refund. Personally I am a bit tired of dealing with issues of the HM-10 ecosystem. You never know what you will get as the variability is so high. Most modules have an anonymous entity behind them and no way to get updates. The original model lost its value as a unique identifier of a specific model and became a generic identifier. Pairing/bonding is poorly implemented in the clones compared to alternatives. Due to these reasons and more you too might want to stay away from HM-10 all together. Nowadays I prefer using an ESP32 instead of an Arduino + HM-10 combination. The main reasons are: It is a bit more complex but you have full control of the firmware, you can define your own services/characteristics and use this for more than just wireless UART. There is a company behind the device and you don't need to do any wiring as the BLE (+BT+WiFi) is built into to the micro-controller. The ESP32 is a much more powerful chip than a typical Uno/Nano but still can be programmed the same way from an Arduino IDE. The ESP32 now has a decent BLE library. The big difference between the two approaches is that with the ESP32 you don't have a separate firmware for the external module, instead the code of the BLE is compiled together with the code of your program. When you upload your code you upload both your program and any BLE related code/libraries. Re-flashing to another firmware Those looking to "fix" their CC41 flashed modules can flash them with a different firmware. The only other firmware I am aware of that is available in a file that can be flashed is the HM-10 original firmware. Any modules with other firmware that I have tested always came "chip locked" so you can't read the firmware from the module. I guess the HM-10 firmware once leaked or was distributed without a "chip lock", which resulted in its availability. If you are aware of another firmware that exists for this purpose, please mention that in the comments. There are advantages and disadvantages to flashing the HM-10 original firmware to a clone device. Advantages: Pairing/bonding works better and with more phones models and OS versions Ability to do over-the-serial updates Works with Android 8.0 Works better as a beacon (iBeacon) Less bugs in general Disadvantages You will need to cut the shrink warp of your module You will need to do some soldering You will probably need to buy/build some tools (clips, programmer, etc) You might have to fix issues and apply workarounds to make the STATE pin work as expected PSA: The jnhuamao.cn site contained downloads with trojans and was classified as a malicious site on several instances so if you are downloading executables from there you have a chance of getting infected. You can do the process without going there which is what I would recommend, otherwise be careful. The instructions below are not going to be a complete tutorial for re-flashing the CC41, for detailed instructions, firmware files and discussion see the following resources: JDY-08 : bluetooth 4.0 module How to flash genuine HM-10 firmware on CC2541 (make genuine HM-10 from CC41) - Video I used the following tools to re-flash the module: SmartRF Flash Programmer software - TI SmartRF04EB programmer device - - I got mine from eBay, probably a clone. See CCLoader for a DIY approach. DIP16 programming clip/clamp - an option to consider instead of soldering wires to the module The steps I took for flashing Cutting the transparent shrink wrap that protects the module. You should consider taping it back when you are done flashing. Identifying the pins needed for programming: debug clock, debug data, reset, power 3.3V and ground. Adding solder to the pins/pads where connection are to be made. Bending the connectors of the DIP16 clip so they align to the pads of the castellated daughter board. They are not the same pitch by default. Running the SmartRF programmer software and setting the settings for writing the desired firmware. Connecting Gnd to the 2.54mm module pin and the other programmer connections via the clip. Connecting the programmer to the USB. Performing the program. Verifying the result through a BLE app and a serial connection. This worked surprisingly well. The difficult part was holding the clip in place steady for a good connection to the pads. If the connection is not good, then the device would not be detected in the programmer when it is plugged in. Fixing the STATE pin All works well with the new firmware except for the STATE pin. In the clones this pin is supposed to be HIGH when the module is connected and LOW when the module is disconnected. To accomplish that the clones use pin P1_1 (PIO2) which is connected directly to STATE while also having a separate pin P1_2 (PIO1) to drive the on board LED. The default behavior for the LED is to blink when the module is not connected and HIGH when the module is connected. In the original module, P1_1 is not used and is configured as OUTPUT LOW. Instead P1_2 is used for both the STATE and the LED. This means that by default the STATE will blink when the module is not connected, which is a weird behavior for a digital output signal. To compensate for that, the original HM-10 allows to reconfigure the behavior of P1_2 (PIO1) through AT commands to have it as LOW when the device is not connected. This is one aspect where I believe the clones are actually better than the original. It makes much more sense to have separate digital signal and visual LED indicator pins as each has its own expected logic. If, like me, you rely on the proper operation of the STATE pin for your application logic, then you will have to make another alteration to the module to reconnect the STATE pin to P1_2 instead of P1_1. Note that it is not enough to bridge the two, you have to actually cut the previous connection, otherwise there will be a short circuit between P1_2 and P1_1. Identify the trace that connects between STATE and pin P1_1 and cut it using a hobby knife. Verify that there is no conductivity. Then solder a bridge between STATE and the P1_2 pin or the LED or the LED resistor (depending on what is convenient on your breakout board). Verify that the two pins are not connected and that STATE is now properly connected to pin P1_2. Using AT commands or arduino-ble-ident-n-set configure the module to drive the LED in a boolean fashion. You should now have a proper STATE pin. Note, some HM-10 clone modules come with no solder bridge between pin P1_1 and the matching pad on the breakout board. If you intend to re-flash those, this can actually be an advantage. Don't fix this connection, re-flash the module and then bridge the two pads on the breakout board without bridging the matching pads on the daughter board. This should connect STATE to P1_2 while leaving P1_1 disconnected. Here you can see a CC41 module which was previously fixed to support STATE, now re-worked to support STATE in a HM-10 configuration: Creative solutions Perhaps there are additional ways to hack the CC41 module. I am really interested to know if you have any ideas. We know that there is at least one bug in the firmware and perhaps there are others, which can allow us to take control of the device, alter its behavior or dump its firmware. Perhaps somebody has an updated firmware or an original extracted firmware that can be patched... Conclusion It is possible to fix misbehaving modules by re-flashing them, but it is not a quick or easy process. Might be better to get new HM-10 modules or switch to alternatives. It would be nice to have more options. The importance of software updates is demonstrated once again. For the benefit of the community and other buyers, you are encouraged to leave reviews for any modules you get from eBay/aliexpress and describe their parameters such as type, version, STATE pin implementation, etc. This is the only way we can beat the huge fragmentation in the market and educate the sellers about the items they sell.
Keywords android,ble,cc41,hm-10,oreo,capacitive,capacitor,seat,sensor,cars,kids,mlt-bt05,module,buck,converter,dc,step-down,bluetooth,fsk,keyboard,rapoo,fht,microphone,sound,burst,fosphor,rf,spectrum
Server Information
WebSite yavilevich favicon www.yavilevich.com
Host IP 160.153.94.101
Location Scottsdale, Arizona, United States
Related Websites
Site Rank
hangar42.nl #2,569,210
netcomplete.ch #2,591,426
prodctodc.com #3,574,206
blecentral.com #5,475,989
martyncurrey.com #232,638
More to Explore
youthideas.co.uk
zamanlazim.com
zamiin.ir
zenetdnepr.com.ua
zetsuen.jp
zotashop.ru
99mst.com
cryptoboom.com
gruene.de
todecacho.com.br
mustard-flower.myshopify.com
mudraacareers.com
Yavilevich.com Valuation
US$4,778
Last updated: Nov 24, 2019

Yavilevich.com has global traffic rank of 3,552,735. Yavilevich.com has an estimated worth of US$ 4,778, based on its estimated Ads revenue. Yavilevich.com receives approximately 872 unique visitors each day. Its web server is located in Scottsdale, Arizona, United States, with IP address 160.153.94.101. According to SiteAdvisor, yavilevich.com is safe to visit.

Traffic & Worth Estimates
Purchase/Sale Value US$4,778
Daily Ads Revenue US$2
Monthly Ads Revenue US$78
Yearly Ads Revenue US$955
Daily Unique Visitors 872
Note: All traffic and earnings values are estimates.
Traffic Ranks
Global Rank 3,552,735
Delta (90 Days) 0
Most Popular In Country N/A
Country Rank N/A
DNS Records
Host Type TTL Data
yavilevich.com A 3599 IP: 160.153.94.101
yavilevich.com MX 3599 Priority: 0
Target: smtp.secureserver.net.
yavilevich.com NS 3599 Target: ns53.domaincontrol.com.
yavilevich.com NS 3599 Target: ns54.domaincontrol.com.
yavilevich.com TXT 21599 TXT: v=spf1 a mx include:secureserver.net include:hotmail.com ~all
yavilevich.com SOA 3599 MNAME: ns53.domaincontrol.com.
RNAME: dns.jomax.net.
Serial: 2019020403
Refresh: 28800
Retry: 7200
Expire: 604800
Minimum TTL: 3600
HTTP Headers
HTTP/1.1 302 Found
Date: Sun, 24 Nov 2019 21:22:08 GMT
Server: Apache
Location: http://blog.yavilevich.com/
Content-Length: 211
Content-Type: text/html; charset=iso-8859-1

HTTP/1.1 301 Moved Permanently
Date: Sun, 24 Nov 2019 21:22:09 GMT
Server: Apache
Location: https://blog.yavilevich.com/
Content-Length: 236
Content-Type: text/html; charset=iso-8859-1

HTTP/2 200 
date: Sun, 24 Nov 2019 21:22:10 GMT
server: Apache
x-powered-by: PHP/7.2.20
link: <https://blog.yavilevich.com/wp-json/>; rel="https://api.w.org/"
vary: Accept-Encoding,User-Agent
content-type: text/html; charset=UTF-8

Yavilevich.com Whois Information
   Domain Name: YAVILEVICH.COM
   Registry Domain ID: 1148022959_DOMAIN_COM-VRSN
   Registrar WHOIS Server: whois.godaddy.com
   Registrar URL: http://www.godaddy.com
   Updated Date: 2019-08-13T07:12:58Z
   Creation Date: 2007-08-11T21:28:13Z
   Registry Expiry Date: 2020-08-11T21:28:13Z
   Registrar: GoDaddy.com, LLC
   Registrar IANA ID: 146
   Registrar Abuse Contact Email: abuse@godaddy.com
   Registrar Abuse Contact Phone: 480-624-2505
   Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
   Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
   Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
   Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
   Name Server: NS53.DOMAINCONTROL.COM
   Name Server: NS54.DOMAINCONTROL.COM
   DNSSEC: unsigned
   URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/

Domain Name: YAVILEVICH.COM
Registry Domain ID: 1148022959_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2019-08-13T07:12:56Z
Creation Date: 2007-08-11T21:28:13Z
Registrar Registration Expiration Date: 2020-08-11T21:28:13Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited http://www.icann.org/epp#clientUpdateProhibited
Domain Status: clientRenewProhibited http://www.icann.org/epp#clientRenewProhibited
Domain Status: clientDeleteProhibited http://www.icann.org/epp#clientDeleteProhibited
Registrant Organization: 
Registrant State/Province: Haifa
Registrant Country: IL
Registrant Email: Select Contact Domain Holder link at https://www.godaddy.com/whois/results.aspx?domain=YAVILEVICH.COM
Admin Email: Select Contact Domain Holder link at https://www.godaddy.com/whois/results.aspx?domain=YAVILEVICH.COM
Tech Email: Select Contact Domain Holder link at https://www.godaddy.com/whois/results.aspx?domain=YAVILEVICH.COM
Name Server: NS53.DOMAINCONTROL.COM
Name Server: NS54.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/