From 6bdebe51b256a7e9e831e7bf0b85db4b46e177a5 Mon Sep 17 00:00:00 2001
From: David Preiss <davepreiss@gmail.com>
Date: Mon, 5 Dec 2022 04:32:32 +0000
Subject: [PATCH] Update README.md

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index b86c2ac..e1ab4b7 100644
--- a/README.md
+++ b/README.md
@@ -2,14 +2,14 @@
 
 Many of the ubiquitous $20 calipers found on amazon and ebay share a relatively accessible serial port and protocol tucked behind the battery compartment. This means that with a level shifter (the calipers run a single coin cell resulting in 1.6V logic level) it's possible to get 10um linear measurement resolution to a microcontroller without having to resort to more expensive linear encoders.
 
-<img src="./images/caliper_port.png" height=400 />
+<img src="./images/caliper_port.png" width=600 />
 
 The caveats are that these calipers are only running at only about 2sps, so not useful for real time loop closing, and the protocol is peripheral-less and must be bit-banged which eats up MCU resources.
 
 Here's a [good reference](https://sites.google.com/site/marthalprojects/home/arduino/arduino-reads-digital-caliper) for getting initial results. I made a few changes in code including printing binary packets for debugging, and flipping all of the reads (we are using a level shifter not a transistor). See below for a simple breadboarded circuit to get up and running.
 
-<img src="./images/calipers_breadboard.png" height=600 />
+<img src="./images/calipers_breadboard.png" width=600 />
 
 Raw scope readings (reading a 0.01mm) can be seen below, transmitted over seven 4-bit chunks. The readings are fixed point with the two LSB in decimal being devoted to 100 and 10 um significant figures. The 21st bit is devoted to measurement sign, and one of the remaining bits is used for unit conversion, while some are unused.
 
-<img src="./images/caliper_scope.png" height=600 />
+<img src="./images/caliper_scope.png" width=600 />
-- 
GitLab