diff --git a/translated/tech/20180331 How to build a plotter with Arduino.md b/published/20180331 How to build a plotter with Arduino.md similarity index 83% rename from translated/tech/20180331 How to build a plotter with Arduino.md rename to published/20180331 How to build a plotter with Arduino.md index 48412c613b..e99f7db8a9 100644 --- a/translated/tech/20180331 How to build a plotter with Arduino.md +++ b/published/20180331 How to build a plotter with Arduino.md @@ -1,18 +1,20 @@ 如何使用 Arduino 制作一个绘图仪 ====== -![](https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/EDU_Arduino_520x292.png?itok=joCojk4e) -在上学时,科学系的壁橱里藏着一台惠普绘图仪。虽然我在上学期间可以经常使用它,但我还是想拥有一台属于自己的绘图仪。许多年之后,步进电机已经很容易获得了,我又在从事电子产品和微控制器方面的工作,最近,我看到有人用丙烯酸塑料(acrylic)制作了一个显示器。这件事启发了我,并最终制作了我自己的绘图仪。 +> 使用开源硬件和软件的 DIY 绘图仪可以自动地绘制、雕刻。 +![](https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/EDU_Arduino_520x292.png?itok=joCojk4e) + +在上学时,科学系的壁橱里藏着一台惠普绘图仪。虽然我在上学的期间可以经常使用它,但我还是想拥有一台属于自己的绘图仪。许多年之后,步进电机已经很容易获得了,我又在从事电子产品和微控制器方面的工作,最近,我看到有人用丙烯酸塑料(acrylic)制作了一个显示器。这件事启发了我,并最终制作了我自己的绘图仪。 ![The plotter in action ][2] -我 DIY 的绘图仪;在这里看它工作的[视频][3]。 +*我 DIY 的绘图仪;在这里看它工作的[视频][3]。* 由于我是一个很怀旧的人,我真的很喜欢最初的 [Arduino Uno][4]。下面是我用到的其它东西的一个清单(仅供参考,其中一些我也不是很满意): * [FabScan shield][5]:承载步进电机驱动器。 - * [SilentStepSticks][6]:步进电机驱动器,因为 Arduino 自身不能处理步进电机所需的电压和电流。因此我使用了一个 Trinamic TMC2130 芯片,但它是工作在单独模式。这些都是为替换 Pololu 4988,但是它们运转更安静。 + * [SilentStepSticks][6]:步进电机驱动器,因为 Arduino 自身不能处理步进电机所需的电压和电流。因此我使用了一个 Trinamic TMC2130 芯片,但它是工作在单独模式。这些替换为 Pololu 4988,但是它们运转更安静。 * [SilentStepStick 保护装置][7]:一个防止你的电机驱动器转动过快的二极管(相信我,你肯定会需要它的)。 * 步进电机:我选择的是使用 12 V 电压的 NEMA 17 电机(如,来自 [Watterott][8] 和 [SparkFun][9] 的型号)。 * [直线导杆][10] @@ -21,32 +23,27 @@ * GT2 皮带 * [GT2 同步滑轮][11] - - 这是我作为个人项目而设计的。如果你想找到一个现成的工具套件,你可以从 German Make 杂志上找到 [MaXYposi][12]。 ### 硬件安装 正如你所看到的,我刚开始做的太大了。这个绘图仪并不合适放在我的桌子上。但是,没有关系,我只是为了学习它(并且,我也将一些东西进行重新制作,下次我将使用一个更小的横梁)。 - ![Plotter base plate with X-axis and Y-axis rails][14] -带 X 轴和 Y 轴轨道的绘图仪基板 +*带 X 轴和 Y 轴轨道的绘图仪基板* 皮带安装在轨道的侧面,并且用它将一些辅助轮和电机挂在一起: - ![The belt routing on the motor][16] -电机上的皮带路由 +*电机上的皮带路由* 我在 Arduino 上堆叠了几个组件。Arduino 在最下面,它之上是 FabScan shield,接着是一个安装在 1 和 2 号电机槽上的 StepStick 保护装置,SilentStepStick 在最上面。注意,SCK 和 SDI 针脚没有连接。 - ![Arduino and Shield][18] -Arduino 堆叠配置([高清大图][19]) +*Arduino 堆叠配置([高清大图][19])* 注意将电机的连接线接到正确的针脚上。如果有疑问,就去查看它的数据表,或者使用欧姆表去找出哪一对线是正确的。 @@ -57,21 +54,19 @@ Arduino 堆叠配置([高清大图][19]) 虽然像 [grbl][20] 这样的软件可以解释诸如像装置移动和其它一些动作的 G-codes,并且,我也可以将它刷进 Arduino 中,但是我很好奇,想更好地理解它是如何工作的。(我的 X-Y 绘图仪软件可以在 [GitHub][21] 上找到,不过我不提供任何保修。) 使用 StepStick(或者其它兼容的)驱动器去驱动步进电机,基本上只需要发送一个高电平信号或者低电平信号到各自的针脚即可。或者使用 Arduino 的术语: + ``` digitalWrite(stepPin, HIGH); - delayMicroseconds(30); - digitalWrite(stepPin, LOW); - ``` 在 `stepPin` 的位置上是步进电机的针脚编号:3 是 1 号电机,而 6 是 2 号电机。 在步进电机能够工作之前,它必须先被启用。 + ``` digitalWrite(enPin, LOW); - ``` 实际上,StepStick 能够理解针脚的三个状态: @@ -80,68 +75,51 @@ digitalWrite(enPin, LOW); * High:电机已禁用 * Pin 未连接:电机已启用,但在一段时间后进入节能模式 - - 电机启用后,它的线圈已经有了力量并用来保持位置。这时候几乎不可能用手来转动它的轴。这样可以保证很好的精度,但是也意味着电机和驱动器芯片都“充满着”力量,并且也因此会发热。 最后,也是很重要的,我们需要一个决定绘图仪方向的方法: + ``` digitalWrite(dirPin, direction); - ``` -下面的表列出了功能和针脚~~(致核对:下面的表格式错误)~~ +下面的表列出了功能和针脚: -Function Motor1 Motor2 Enable 2 5 Direction 4 7 Step 3 6 +| 功能 | 1 号电机 | 2 号电机 | +|---|---|---| +| 启用 | 2 | 5 | +| 方向 | 4 | 7 | +| 步进 | 3 | 6 | 在我们使用这些针脚之前,我们需要在代码的 `setup()` 节中设置它的 `OUTPUT` 模式。 + ``` pinMode(enPin1, OUTPUT); - pinMode(stepPin1, OUTPUT); - pinMode(dirPin1, OUTPUT); - digitalWrite(enPin1, LOW); - ``` 了解这些知识后,我们可以很容易地让步进电机四处移动: + ``` -    totalRounds = ... - -    for (int rounds =0 ; rounds < 2*totalRounds; rounds++) { - -       if (dir==0){ // set direction - -         digitalWrite(dirPin2, LOW); - -       } else { - -         digitalWrite(dirPin2, HIGH); - -       } - -       delay(1); // give motors some breathing time - -       dir = 1-dir; // reverse direction - -       for (int i=0; i < 6400; i++) { - -         int t = abs(3200-i) / 200; - -         digitalWrite(stepPin2, HIGH); - -         delayMicroseconds(70 + t); - -         digitalWrite(stepPin2, LOW); - -         delayMicroseconds(70 + t); - -       } - -    } - + totalRounds = ... + for (int rounds =0 ; rounds < 2*totalRounds; rounds++) { + if (dir==0){ // set direction + digitalWrite(dirPin2, LOW); + } else { + digitalWrite(dirPin2, HIGH); + } + delay(1); // give motors some breathing time + dir = 1-dir; // reverse direction + for (int i=0; i < 6400; i++) { + int t = abs(3200-i) / 200; + digitalWrite(stepPin2, HIGH); + delayMicroseconds(70 + t); + digitalWrite(stepPin2, LOW); + delayMicroseconds(70 + t); + } + } ``` 这将使滑块向左和向右移动。这些代码只操纵一个步进电机,但是,对于一个 X-Y 绘图仪,我们要考虑两个轴。 @@ -149,9 +127,9 @@ digitalWrite(enPin1, LOW); #### 命令解释器 我开始做一个简单的命令解释器去使用规范的路径,比如: + ``` "X30|Y30|X-30 Y-30|X-20|Y-20|X20|Y20|X-40|Y-25|X40 Y25 - ``` 用毫米来描述相对移动(1 毫米等于 80 步)。 @@ -166,54 +144,39 @@ digitalWrite(enPin1, LOW); ![Servo to raise/lower the pen ][24] -图中的特写镜头就是伺服器臂提起笔的图像 +*图中的特写镜头就是伺服器臂提起笔的图像* 笔是用一个小夹具固定住的(图上展示的是一个大小为 8 的夹具,它一般用于将线缆固定在墙上)。伺服器臂能够提起笔;当伺服器臂放下来的时候,笔就会被放下来。 #### 驱动伺服器 驱动伺服器是非常简单的:只需要提供位置,伺服器就可以完成所有的工作。 + ``` #include - - // Servo pin - #define servoData PIN_A1 - - // Positions - #define PEN_UP 10 - #define PEN_DOWN 50 - - Servo penServo; - - void setup() { - -  // Attach to servo and raise pen - -  penServo.attach(servoData); - -  penServo.write(PEN_UP); - + // Attach to servo and raise pen + penServo.attach(servoData); + penServo.write(PEN_UP); } - ``` 我把伺服器接头连接在 FabScan shield 的 4 号电机上,因此,我将用 1 号模拟针脚。 放下笔也很容易: + ```   penServo.write(PEN_DOWN); - ``` ### 进一步扩展 @@ -230,7 +193,7 @@ via: https://opensource.com/article/18/3/diy-plotter-arduino 作者:[Heiko W.Rupp][a] 译者:[qhwdw](https://github.com/qhwdw) -校对:[校对者ID](https://github.com/校对者ID) +校对:[wxy](https://github.com/wxy) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出