Fix whitespace errors

This commit is contained in:
Dhananjay Balan 2019-03-13 15:28:02 -04:00
parent eed134df58
commit 3e814e99da

View File

@ -27,6 +27,7 @@ made working with raster images hard, and plotters didn't need much operating
memory.
## HP7440A
HP7440A _"ColorPro"_ was an affordable plotter manufactured by HP, it can hold
and switch between 8 pens simultaneously and draw on surfaces as large as A4.
[HP Museum has a longer post about this
@ -39,9 +40,9 @@ easy it is to open, take that 2018 tech!
![7440A Top cover open](/images/7440a_open.jpg){ width=600px }
The internal mechanism is pretty simple, There are two servos. One for
moving the paper back and forward, and the other for moving the pen left and
right. There is also a solenoid based lever to switch pen down and up.
The internal mechanism is pretty simple, There are two servos. One for moving
the paper back and forward, and the other for moving the pen left and right.
There is also a solenoid based lever to switch pen down and up.
## Talk To Me
@ -60,11 +61,10 @@ Communication turned out be just standard serial, however our plotter has a
`DB-22` adaptor, so we had to use a `DB-22` to `DB-9` adpator and then `DB-9` to
`usb` adaptor.
The final step was writing in the only language the plotter can
understand, [`HP-GL`](https://en.wikipedia.org/wiki/HP-GL) or
`HP Graphics Langauge`. Lucky for us, HP was on top of the plotter game when
plotters were popular, so `HP-GL` has become a de facto standard
for talking to plotters.
The final step was writing in the only language the plotter can understand,
[`HP-GL`](https://en.wikipedia.org/wiki/HP-GL) or `HP Graphics Langauge`. Lucky
for us, HP was on top of the plotter game when plotters were popular, so `HP-GL`
has become a de facto standard for talking to plotters.
.. and finally our plotter moves!