Project

General

Profile

LAOS I2C Panel v03 » History » Version 18

jaap, 2012-11-09 08:23

1 1 Anonymous
h1. LAOS I2C Panel v0.3
2
3
{{>toc}}
4
5 3 Anonymous
!>Panel-rev0.3.jpg!
6 1 Anonymous
7 6 Anonymous
%{color:red}This page needs to be cleaned up!%
8
9 1 Anonymous
h2. Basics
10
11
We designed a panel with a 2x16 LCD, 4 buttons and a joystick. The heart of the panel is a ATMEGA168-20PU running a small Arduino program. The panel uses I2C communication to the MBED board, but there is also a connection for a standard USB->TTL cable. You can use such a cable to upgrade the program in the Arduino chip.
12 17 peter
All the source files of this project are available in the i2c panel project on Github: https://github.com/LaosLaser/AddOns
13 1 Anonymous
14
h2. Functionality
15
16
_The functionality is not implemented in this board, but in the program on the MBED. The Arduino only receives data for the screen and sends keys via I2C. The functionality is stated here just to show what it will do_
17
18
While no job is running:
19
20
* manual focus, using up and down buttons (for some machines this will mean that the Z-axis is moving, others will move the lens-holder up and down)
21
* moving the head to a specific location (X-Y axis)
22
* select the current location and make that the origin (x=0, y=0, z=0)
23
* select print job
24
25
while job is printing:
26
27
* pause printing / continue / cancel
28
29
h2. Electronics
30
31 18 jaap
We designed our own board and software (arduino based) to connect the display board to the mainboard (via I2C). The schematics (in KiCAD) are located ["here":https://github.com/LaosLaser/AddOns]. Most important parts:
32 1 Anonymous
33 15 peter
"Full part list is available in GIT":https://github.com/LaosLaser/AddOns/raw/master/i2c-panel/pcb/bom.ods
34 1 Anonymous
35 18 jaap
* "16x2 LCD Display, RS stocknummer 532-6408
36 1 Anonymous
* ATMega168P-20PU, RS stocknummer 696-2430
37
* 4 pushbuttons
38
* 1 joystick button
39
* and of course, the board
40
41 4 Anonymous
!173px-Panel-rev0.3front.jpg!
42 1 Anonymous
43
h3. Bill of Materials
44
45
|_.Number|_.Component|_.RS Part No.|_.RS Price|_.Farnell Part No.|_.Farnell Price|_.Comment|
46
|1|LCD display, 16x2 characters|532-6408|€ 4,62| | ||
47
|1|ATMega168P-20PU|738-0375|€ 5,22|1636933|€ 4,81||
48
|4|Thru hole tactileswitch12x12x7.3mm|378-6763|€ 0,46| | ||
49
|1|PCB Stick switch, 4 dir + centre push|516-316|€ 2,46|1435775|€ 2,47||
50
|1|Ceramic resonator THT CSTLS 16.00MHz|526-6154|€ 0,56|1448129|€ 0,46||
51
|1|28way low profile DIL socket,0.3in pitch|801-768|€ 0,24| | ||
52
|1|100uF capacitor|711-0703|€ 0,03| | ||
53
|2|100nF capacitor|721-5240|€ 0,07| | ||
54
|1|680R resistor|707-7656|€ 0,02| | ||
55
|1|10K resistor|707-7745|€ 0,02| | ||
56
|1|36 way straight header,7mm top 3mm below|251-8632|€ 0,31| | ||
57
|1|NPN transistor,BC547C|545-2248|€ 0,07| | ||
58
|3|plastic buttoncap black|378-6943|€ 0,11| | ||
59
|1|plastic buttoncap red|378-6937|€ 0,11| | ||
60
|1|Eurocircuits PCB E412106| |€ 7,50| | |Available from LaOS (see [[WebShop]])|
61
62
h2. Mechanical construction
63
64
* printboard is directly under the display
65
* i2c through a 4-pin flatcable with pin-header
66
* 6-pin USB->TTL connector for easy updates on the Arduino
67
* 4 standard pushbuttons
68
* 1 3D-printed joystick button
69
70 18 jaap
The design files for the frontpanel and buttons can be found here: ["Frontplates":https://github.com/LaosLaser/AddOns/tree/master/i2c-panel/frontplates]
71 1 Anonymous
72
h2. Implementation
73
74 15 peter
The software on the arduino chip is "available in GIT":https://github.com/LaosLaser/AddOns/raw/master/i2c-panel/firmware/lasercutterpanelv0_3.pde.
75 1 Anonymous
76
The electronics are based on "John Crouchley's ATTiny2313":http://john.crouchley.com/blog/archives/612 implementation. The Arduino (or Ottantotto) electronics come from "Edwin Dertien":http://wiki.edwindertien.nl/doku.php?id=boards:ottantotto:start#pin_description.
77
78
Relevant Arduino libraries:
79
80
* LCD driver: "http://www.arduino.cc/en/Reference/LiquidCrystal":http://www.arduino.cc/en/Reference/LiquidCrystal
81
* i2c: "http://www.arduino.cc/en/Reference/Wire":http://www.arduino.cc/en/Reference/Wire
82
* Keypad: "http://www.arduino.cc/playground/Code/Keypad":http://www.arduino.cc/playground/Code/Keypad
83
84
I2C on the Mbed: "http://mbed.org/handbook/I2C":http://mbed.org/handbook/I2C <em>"Have a look at this very enlightning drawing!":http://mbed.org/media/uploads/ColonelPewter/i2c_001004.gif</em>
85
86
For debugging, you can use any PC with a home-made I2C adapter:
87
88 5 Anonymous
p(((. http://www.instructables.com/id/Worlds-Cheapest-I2C-I-Squared-C-Adapter/
89 1 Anonymous
http://www.paintyourdragon.com/?p=43
90
91
92
h2. Building your own
93
94
To make life easier, we sell premade PCB's and this panel as a kit. See the "WebShop":/index.php/WebShop.
95
96
The kit contains:
97
98
* PCB
99
* ATMEGA168-20PU, pre-programmed with the Arduino bootloader and this I2C program (so you can install it even if you do not own a USB-&gt;TTL cable).
100
* LCD
101
* other electronic parts
102
* Buttons
103
* I2C wire to motherboard
104
105
Parts it does not contain:
106
107
* laser cut panel. You can make one on your laser, maybe? Probably you want one to fit into your machine, anyway. See below for the panel the MiniFabLab made for its HPC LS3020
108
* 3D printed joystick button. When I design one I'm really proud of, I might include it.
109
110
Feel free to make the panel yourself if you prefer. No need to buy stuff if you have an Arduino lying around with LCD and some buttons!
111
112
h2. Soldering
113
114
* Solder the foot for the Arduino first, making sure the notch is on the same side as the one on the print.
115
* Place the two resistors. The print says 680 for Resistor 1, which means 680 ohm. Put another one of 10k Ohm in the place marked R2.
116
* Solder the two 100nF capacitors
117
* Solder the 100uF capacitor with the plus in the square hole
118
* Bend the wires of the BC547C so it's flat on the print
119
* Place the ceramic filter
120
* Place a 2-pin header in P7, a 4-pin header for I2C and a 6-pin header in P1 (TTL).
121
* Now take a 16-pin header and push it with the long side in the board from the back of the board. The long pins will stick out on the top side of the board. On the back is the black plastic of the header. Measure with the display module to see if the pins are long enough to go just through the module. Solder the 16-pin header to the board on the TOP side of the board (where the rest of the components is).
122
* Place a strong piece of tape on the back side of the board, covering the part of the board that will be under the display module, so that there cannot be any shortcut between the board and the display module. You can use electric shielding tape or gaffer tape.
123
* Solder the display module on the back side board, with the black blocks of the 16-pin header in between.
124
* Solder the 4 buttons in the board (not the joystick yet!) with the buttons on the side of the display. This is confusing: the buttons go on the side where it does NOT say button! See photos.
125
* The joystick has a very small dent in the top metal layer. If you put the joystick in, this dent should be on the right side. Solder it in.
126
* The holes you have left are for making wire-bridges on a single sided board. You don't need them.
127
128 11 pieterb
Back panel
129
!I2CPanelBack-rev0.3.JPG!
130
131 12 pieterb
Front Panel showing dent in joystick
132
!I2CPanelFront-rev0.3.JPG!
133 11 pieterb
134 12 pieterb
Showing connection on the I2C Panel side
135
!I2CPanelBankConnector-rev0.3.JPG!
136
137
Showing connection on the Main Board side
138
!IC2PanelConnectedToMainBoard-rev0.3.jpg!
139
 
140 11 pieterb
141 1 Anonymous
h2. Software installation
142
143
h3. Installing a bootloader
144
145
These instructions are for ATMEGA168P-PU only!
146
147 5 Anonymous
    cd arduino-1.0.1/hardware/arduino/bootloaders/atmega
148 1 Anonymous
avrdude -p m168p -c usbasp -F -U flash:w:ATmegaBOOT_168_diecimila.hex -U hfuse:w:0xdd:m -U lfuse:w:0xff:m -U efuse:w:0xf8:m
149
150
151
Note that the Debian version of avrdude does not support m168p yet, you can use the avrdude version shipped with Arduino.
152
153
Error message while installing:
154
155 5 Anonymous
    avrdude: safemode: efuse changed! Was f8, and is now 0
156 1 Anonymous
Would you like this fuse to be changed back? [y/n]
157
158
159
Answer n !
160
161
h3. Arduino Sketch
162
163 15 peter
Use a USB=&gt;TTL cable to connect the board to your computer. Install "Arduino":http://www.arduino.cc software. Get "lasercutterpanelv0&#95;3.pde from GIT": https://github.com/LaosLaser/AddOns/raw/master/i2c-panel/firmware/lasercutterpanelv0_3.pde
164
165
To test your panel, change:
166 1 Anonymous
167 5 Anonymous
    #define DEBUG 0 
168 1 Anonymous
169
170
to
171
172 5 Anonymous
    #define DEBUG 1
173 1 Anonymous
174
175
Arduino settings: Board: Arduino NG or older with Atmega168
176
177
Upload the file to the board. This will give you a welcome text. After the text has disappeared, all buttons should show a number on the screen. The joystick should show 5 different values for each direction and middle push.
178
179
If it works, upload the code again with *DEBUG 0*. The panel is now ready to be connected to the mainboard.
180
181
h2. Control Panel on the HPC LS3020
182
183 7 bartb
184
To accomodate the display you can cut a replacement for the control panel. 
185
186
!greenpanel-bart.jpg!
187
188
The button laser switch was replaced by a toggle for better on/off reference. So the right serial test button could be omitted. Also the lighting switch was removed, now the light is always on. No modifications are required for the cabletree, just connect the wires from the removed switches. The air pump switch was kept as a compressor can be noisy. It is advised to use a shielded cable between the I2C panel and the board. A cutting file (.svg) of this panel is available on "miniFabLab":http://minifablab.nl/uploads/LaOS3020panel.svg.
189 1 Anonymous
190
h2. Design competition
191
192
I couldn't find a fitting existing joystick button for the joystick in this design, so I made one on the 3D printer. But I'm not entirely happy with it yet. If you design a better one, please upload it here!
193
194 2 Anonymous
h2. Enhancements
195 1 Anonymous
196
Possible enhancements to the display:
197
198
* Make (I2C) connector holes slightly larger to be able to mount JST connector (also, some more clearance to micro controller is required)
199
* larger holes also for USB-&gt;TTL cable and display
200
* move capacitor U4 to a safer place, near micro controller
201
* holes for R2 are too big and texts for resistors are strange
202
* mark clearly on the board that the buttons go on the back side!
203
* Add status LED(s)
204
* buzzer?
205
* Rotary encoder for (power) settings
206
* Graphical touch-screen display?
207
208
h2. More
209
210 14 jaap
For links on previous versions and to get started on designing your own display, see the [[Display-alternatives]] page.