{"id":930,"date":"2021-07-27T20:02:27","date_gmt":"2021-07-27T20:02:27","guid":{"rendered":"https:\/\/justanotherelectronicsblog.com\/?p=930"},"modified":"2021-07-28T20:34:16","modified_gmt":"2021-07-28T20:34:16","slug":"a-dive-into-the-an9002-bluetooth-multi-meter","status":"publish","type":"post","link":"https:\/\/justanotherelectronicsblog.com\/?p=930","title":{"rendered":"A look at the AN9002 Bluetooth Multi-meter protocol"},"content":{"rendered":"\n<p>I have been using an Aneng AN8008 multi-meter for a while now and I quite like it. It&#8217;s small, accurate enough and has some interesting measurement options for embedded electronics. Moreover, it&#8217;s very affordable. Looking at what multi-meters Aneng also sells, I spotted a multi-meter with Bluetooth for a low price as well. Bluetooth in a multi-meter, that&#8217;s a new one for me. But thinking about it, for logging data, why not. It&#8217;ll be very galvanicly isolated at least :)<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg\" alt=\"\" class=\"wp-image-936\" width=\"319\" height=\"512\" srcset=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg 637w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-187x300.jpg 187w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-768x1235.jpg 768w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter.jpg 796w\" sizes=\"auto, (max-width: 319px) 100vw, 319px\" \/><\/a><\/figure>\n\n\n\n<p>After receiving the meter and trying it out for a bit, the app left me a little disappointed. There is just a phone app that can show the values and log them, but sadly storing the logged data to a file is not possible. This is be useful if you want to analyze the data at a later time or put graphs in a report or such. So time to look at what makes the multi-meter tick and see if I can make my own data logger with it.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">A look inside<\/h2>\n\n\n\n<p>First of all, let&#8217;s look inside. Maybe an off the shelf multi-meter chip has been used and I can just find a datasheet for it.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/insides.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/insides-504x1024.jpg\" alt=\"\" class=\"wp-image-937\" width=\"252\" height=\"512\" srcset=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/insides-504x1024.jpg 504w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/insides-148x300.jpg 148w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/insides.jpg 630w\" sizes=\"auto, (max-width: 252px) 100vw, 252px\" \/><\/a><\/figure>\n\n\n\n<p>Ah, black blob. Goodie. The black blob is connected to an F9788 Bluetooth module. At least the <a href=\"https:\/\/fccid.io\/2AR7VF-9788\/User-Manual\/15-F-9788-UserMan-r1-4697443.pdf\">datasheet<\/a> of that one can be found. It seems to be a BLE (Bluetooth Low Energy) module with an ARM9 core, interesting but not directly useful. I have worked with BLE before and still had the handy Nordic nRF Connect app installed on my phone. This app can scan, connect and show BLE services. BLE is an interesting protocol, with some unique ideas and terms. Luckily Adafruit has made a <a href=\"https:\/\/learn.adafruit.com\/introduction-to-bluetooth-low-energy\">great introduction<\/a> into the world of BLE.<\/p>\n\n\n\n<p>One scan later revealed a device called &#8220;Bluetooth DMM&#8221;, goodie. Some poking in the advertised services and characteristics later I saw one called &#8220;Unknown Characteristic&#8221; that I could be notified off. The content is a 11 byte packet of data that changes if the display of the multi-meter changes. Bingo. Now to figure out it&#8217;s content.<\/p>\n\n\n\n<p>As just an app on my phone would make this a bit of a hassle, I had a look at talking to it via a computer. A python library called <a href=\"https:\/\/github.com\/hbldh\/bleak\">Bleak<\/a> came up and it seemed pretty nice. <a href=\"https:\/\/github.com\/hbldh\/bleak\/tree\/develop\/examples\">There<\/a> are a few small examples on scanning, enabling notifications and such so that all looked like a great starting point. I used the examples to create a small script that enabled notifications on the magic characteristic and started reverse engineering. The entire code is just 25 lines:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import sys\nimport asyncio\nimport platform\nfrom bleak import BleakClient\n\nADDRESS = ( \"FC:58:FA:3C:94:16\" )\nCHARACTERISTIC_UUID = \"0000fff4-0000-1000-8000-00805f9b34fb\"\n\ndef notification_handler(sender, data):\n    # Simple notification handler which prints the data received\n    print(\"Data multimeter: {0}\".format(data.hex(' ') ))\n\nasync def run(address):\n    client = BleakClient(address)\n        \n    async with BleakClient(address) as client:\n        await client.start_notify(CHARACTERISTIC_UUID, notification_handler)\n        await asyncio.sleep(60.0)  #show data for a minute\n        await client.stop_notify(CHARACTERISTIC_UUID)\n\n\nif __name__ == \"__main__\":\n    loop = asyncio.get_event_loop()\n    loop.set_debug(False)\n    loop.run_until_complete(run(ADDRESS))\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">It&#8217;s all segments<\/h2>\n\n\n\n<p>First I went for the low hanging fruit. With the inputs shorted and reading 0.000, switch the multi-meter between V, mV, Hz, A and such see what changes. In all cases a single bit of the 11 byte changed, often in the 4th or 8th byte. I decided to fill everything in in a spreadsheet to keep track of it. After the units where figured out, I set the multi-meter on manual mode to see if the dots operated in a similar way, and they did. A single bit changed when a dot appeared or disappeared. <\/p>\n\n\n\n<p>Next up, the actual 7 segment displays. Looking at the Sigrok multi meter <a href=\"https:\/\/sigrok.org\/wiki\/Multimeter_ICs\">page<\/a> for ideas, I saw quite some multi-meters just transmit the 7 segment data as raw 7 segment data. The data so far was send in binary, so I kind of expected this multi-meter to do the same. So armed with a lab power supply I changed the last digit from 0, to 1, to 2 and so on till it showed a 9. Analyzing the binary data, 2 bytes changed, or more precise, a 2 nibbles changed<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Data multimeter: 1b 84 70 b1 49 2a f9 7e 66 fa 3b\tDigit shown: 9\nData multimeter: 1b 84 70 b1 49 2a d9 7e 66 fa 3b\tDigit shown: 8\nData multimeter: 1b 84 70 b1 49 2a b9 7b 66 fa 3b\tDigit shown: 7\nData multimeter: 1b 84 70 b1 49 2a d9 76 66 fa 3b\tDigit shown: 6\nData multimeter: 1b 84 70 b1 49 2a f9 76 66 fa 3b\tDigit shown: 5\nData multimeter: 1b 84 70 b1 49 2a 79 7f 66 fa 3b\tDigit shown: 4\nData multimeter: 1b 84 70 b1 49 2a b9 7e 66 fa 3b\tDigit shown: 3\nData multimeter: 1b 84 70 b1 49 2a 99 7c 66 fa 3b\tDigit shown: 2\nData multimeter: 1b 84 70 b1 49 2a 39 7b 66 fa 3b\tDigit shown: 1\nData multimeter: 1b 84 70 b1 49 2a d9 7a 66 fa 3b\tDigit shown: 0<\/pre>\n\n\n\n<p>Some manual decoding later and indeed, it seems to be 7 segment data just transmitted over Bluetooth, neat. Some bits are inverted, as in, the bit is 0 when the segment is on and 1 when the segment is off. Well, some <a href=\"https:\/\/ko-fi.com\/riktw\">coffee<\/a> and a lot more decoding later, I had a somewhat complete spreadsheet with what each bit is doing. Time to finally make a program that logs me some data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Connecting an AN9002 to a PC<\/h2>\n\n\n\n<p>With all that yak shaving done, time for the PC side of things. As I already was able to read in data via Python, I decided to turn the example code into something that could log data for me. I added some code to decode the incoming bytes and print out the value + unit. As a graph is always nice, I used the great matplotlib to graph it out. Store the data to a CSV file and perfect. Well ok, good enough. The multi-meter takes around 2.6 measurements per second and I have not found a way to change this.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"635\" height=\"549\" src=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-1.png\" alt=\"\" class=\"wp-image-942\" srcset=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-1.png 635w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-1-300x259.png 300w\" sizes=\"auto, (max-width: 635px) 100vw, 635px\" \/><\/a><figcaption>A small graph of my finger heating the temperature sensor<\/figcaption><\/figure>\n\n\n\n<p>So let&#8217;s log some data. For example, the temperature of the heat sink of a lab power supply I really should finish soon:<br><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"641\" src=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-1024x641.png\" alt=\"\" class=\"wp-image-940\" srcset=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-1024x641.png 1024w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-300x188.png 300w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image-768x481.png 768w, https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/image.png 1120w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption>taken over a period of around 30 minutes<\/figcaption><\/figure>\n\n\n\n<p>Great, while not ideal, logging data and being able to manipulate it in a tool of my choice is, in my opinion, a big improvement. All the code can be found <a href=\"https:\/\/github.com\/riktw\/AN9002_info\">here<\/a>, but keep in mind that I am by no means a python expert, or even a python novice. <\/p>\n\n\n\n<p>If you enjoyed this project, consider buying me a <a href=\"https:\/\/ko-fi.com\/riktw\">coffee<\/a>. And if you have this multi-meter, please do give it a try and let me know if it worked for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have been using an Aneng AN8008 multi-meter for a while now and I quite like it. It&#8217;s small, accurate enough and has some interesting measurement options for embedded electronics. Moreover, it&#8217;s very affordable. Looking at what multi-meters Aneng also sells, I spotted a multi-meter with Bluetooth for a low price as well. Bluetooth in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-930","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>A look at the AN9002 Bluetooth Multi-meter protocol - jaeblog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/justanotherelectronicsblog.com\/?p=930\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A look at the AN9002 Bluetooth Multi-meter protocol - jaeblog\" \/>\n<meta property=\"og:description\" content=\"I have been using an Aneng AN8008 multi-meter for a while now and I quite like it. It&#8217;s small, accurate enough and has some interesting measurement options for embedded electronics. Moreover, it&#8217;s very affordable. Looking at what multi-meters Aneng also sells, I spotted a multi-meter with Bluetooth for a low price as well. Bluetooth in [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/justanotherelectronicsblog.com\/?p=930\" \/>\n<meta property=\"og:site_name\" content=\"jaeblog\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-27T20:02:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-28T20:34:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg\" \/>\n<meta name=\"author\" content=\"riktw\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"riktw\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#article\",\"isPartOf\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930\"},\"author\":{\"name\":\"riktw\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/#\/schema\/person\/d77e39721321c4a472b49909a8f1982b\"},\"headline\":\"A look at the AN9002 Bluetooth Multi-meter protocol\",\"datePublished\":\"2021-07-27T20:02:27+00:00\",\"dateModified\":\"2021-07-28T20:34:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930\"},\"wordCount\":920,\"commentCount\":13,\"image\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage\"},\"thumbnailUrl\":\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/justanotherelectronicsblog.com\/?p=930#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930\",\"url\":\"https:\/\/justanotherelectronicsblog.com\/?p=930\",\"name\":\"A look at the AN9002 Bluetooth Multi-meter protocol - jaeblog\",\"isPartOf\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage\"},\"image\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage\"},\"thumbnailUrl\":\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg\",\"datePublished\":\"2021-07-27T20:02:27+00:00\",\"dateModified\":\"2021-07-28T20:34:16+00:00\",\"author\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/#\/schema\/person\/d77e39721321c4a472b49909a8f1982b\"},\"breadcrumb\":{\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/justanotherelectronicsblog.com\/?p=930\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage\",\"url\":\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter.jpg\",\"contentUrl\":\"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter.jpg\",\"width\":796,\"height\":1280},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/?p=930#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/justanotherelectronicsblog.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A look at the AN9002 Bluetooth Multi-meter protocol\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/#website\",\"url\":\"https:\/\/justanotherelectronicsblog.com\/\",\"name\":\"jaeblog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/justanotherelectronicsblog.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/justanotherelectronicsblog.com\/#\/schema\/person\/d77e39721321c4a472b49909a8f1982b\",\"name\":\"riktw\",\"url\":\"https:\/\/justanotherelectronicsblog.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A look at the AN9002 Bluetooth Multi-meter protocol - jaeblog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/justanotherelectronicsblog.com\/?p=930","og_locale":"en_US","og_type":"article","og_title":"A look at the AN9002 Bluetooth Multi-meter protocol - jaeblog","og_description":"I have been using an Aneng AN8008 multi-meter for a while now and I quite like it. It&#8217;s small, accurate enough and has some interesting measurement options for embedded electronics. Moreover, it&#8217;s very affordable. Looking at what multi-meters Aneng also sells, I spotted a multi-meter with Bluetooth for a low price as well. Bluetooth in [&hellip;]","og_url":"https:\/\/justanotherelectronicsblog.com\/?p=930","og_site_name":"jaeblog","article_published_time":"2021-07-27T20:02:27+00:00","article_modified_time":"2021-07-28T20:34:16+00:00","og_image":[{"url":"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg","type":"","width":"","height":""}],"author":"riktw","twitter_card":"summary_large_image","twitter_misc":{"Written by":"riktw","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#article","isPartOf":{"@id":"https:\/\/justanotherelectronicsblog.com\/?p=930"},"author":{"name":"riktw","@id":"https:\/\/justanotherelectronicsblog.com\/#\/schema\/person\/d77e39721321c4a472b49909a8f1982b"},"headline":"A look at the AN9002 Bluetooth Multi-meter protocol","datePublished":"2021-07-27T20:02:27+00:00","dateModified":"2021-07-28T20:34:16+00:00","mainEntityOfPage":{"@id":"https:\/\/justanotherelectronicsblog.com\/?p=930"},"wordCount":920,"commentCount":13,"image":{"@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage"},"thumbnailUrl":"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/justanotherelectronicsblog.com\/?p=930#respond"]}]},{"@type":"WebPage","@id":"https:\/\/justanotherelectronicsblog.com\/?p=930","url":"https:\/\/justanotherelectronicsblog.com\/?p=930","name":"A look at the AN9002 Bluetooth Multi-meter protocol - jaeblog","isPartOf":{"@id":"https:\/\/justanotherelectronicsblog.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage"},"image":{"@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage"},"thumbnailUrl":"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter-637x1024.jpg","datePublished":"2021-07-27T20:02:27+00:00","dateModified":"2021-07-28T20:34:16+00:00","author":{"@id":"https:\/\/justanotherelectronicsblog.com\/#\/schema\/person\/d77e39721321c4a472b49909a8f1982b"},"breadcrumb":{"@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/justanotherelectronicsblog.com\/?p=930"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#primaryimage","url":"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter.jpg","contentUrl":"https:\/\/justanotherelectronicsblog.com\/wp-content\/uploads\/2021\/07\/multimeter.jpg","width":796,"height":1280},{"@type":"BreadcrumbList","@id":"https:\/\/justanotherelectronicsblog.com\/?p=930#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/justanotherelectronicsblog.com\/"},{"@type":"ListItem","position":2,"name":"A look at the AN9002 Bluetooth Multi-meter protocol"}]},{"@type":"WebSite","@id":"https:\/\/justanotherelectronicsblog.com\/#website","url":"https:\/\/justanotherelectronicsblog.com\/","name":"jaeblog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/justanotherelectronicsblog.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/justanotherelectronicsblog.com\/#\/schema\/person\/d77e39721321c4a472b49909a8f1982b","name":"riktw","url":"https:\/\/justanotherelectronicsblog.com\/?author=1"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=\/wp\/v2\/posts\/930","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=930"}],"version-history":[{"count":12,"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=\/wp\/v2\/posts\/930\/revisions"}],"predecessor-version":[{"id":947,"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=\/wp\/v2\/posts\/930\/revisions\/947"}],"wp:attachment":[{"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=930"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=930"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/justanotherelectronicsblog.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=930"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}