├── CircuitPythonCode-Amiga600Keyboard_USB_Pico ├── code.py ├── layout-images │ ├── A600 Keyboard-Base.PNG │ ├── A600 Keyboard-Function and Keypad.PNG │ └── A600 Keyboard-Media Keys.PNG └── readme.md ├── LICENSE ├── PCB-Amiga600Keyboard_USB_Pico ├── A600Keyboard_USB_Pico-cache.lib ├── A600Keyboard_USB_Pico.kicad_pcb ├── A600Keyboard_USB_Pico.pro ├── A600Keyboard_USB_Pico.sch ├── fp-info-cache ├── pcb-images │ ├── pcb-back.PNG │ └── pcb-front.PNG ├── plots │ ├── A600Keyboard_USB_Pico-B_Cu.gbr │ ├── A600Keyboard_USB_Pico-B_Mask.gbr │ ├── A600Keyboard_USB_Pico-B_SilkS.gbr │ ├── A600Keyboard_USB_Pico-Edge_Cuts.gbr │ ├── A600Keyboard_USB_Pico-F_Cu.gbr │ ├── A600Keyboard_USB_Pico-F_Mask.gbr │ ├── A600Keyboard_USB_Pico-F_SilkS.gbr │ └── A600Keyboard_USB_Pico.drl ├── readme.md └── schematic.pdf ├── images ├── pcb.jpg └── pcb_with_keyboard.jpg └── readme.md /CircuitPythonCode-Amiga600Keyboard_USB_Pico/code.py: -------------------------------------------------------------------------------- 1 | import usb_hid 2 | import board 3 | import digitalio 4 | from adafruit_hid.keyboard import Keyboard 5 | from adafruit_hid.keycode import Keycode 6 | from adafruit_hid.consumer_control import ConsumerControl 7 | from adafruit_hid.consumer_control_code import ConsumerControlCode 8 | 9 | import time 10 | 11 | import board 12 | import busio 13 | from adafruit_mcp230xx.mcp23008 import MCP23008 14 | 15 | i2c = busio.I2C(scl=board.GP27, sda=board.GP26) 16 | mcp = MCP23008(i2c) # MCP23008 17 | 18 | # Initialize consumer control 19 | cc = ConsumerControl(usb_hid.devices) 20 | 21 | # Initialize Keyboard 22 | kbd = Keyboard(usb_hid.devices) 23 | 24 | leds = { 25 | "onboard": digitalio.DigitalInOut(board.LED), 26 | "caplock": digitalio.DigitalInOut(board.GP14), 27 | "fdd": digitalio.DigitalInOut(board.GP1), 28 | "hdd": digitalio.DigitalInOut(board.GP0), 29 | } 30 | 31 | for led, pinio in leds.items(): 32 | pinio.direction = digitalio.Direction.OUTPUT 33 | 34 | class key: 35 | def __init__(self, keycode, value, type): 36 | self.keycode = keycode 37 | self.value = value 38 | self.type = type 39 | def keypress(self): 40 | if self.type == "hidkb": 41 | kbd.press(self.value) 42 | elif self.type == "consumercontrol": 43 | cc.send(self.value) 44 | def keyrelease(self): 45 | if self.type == "hidkb": 46 | kbd.release(self.value) 47 | 48 | class keyboard: 49 | def __init__(self): 50 | # use adafruit_hid.keycodes 51 | self.__keycodes = { kc: getattr(Keycode, kc) for kc in dir(Keycode) if not kc.startswith('__') and not callable(getattr(Keycode, kc)) } 52 | for (k,v) in self.__keycodes.items(): 53 | setattr(self, k, key(k, v, "hidkb")) 54 | # use adafruit_hid.consumer_control_codes 55 | self.__consumercontrolcodes = {c: getattr(ConsumerControlCode, c) for c in dir(ConsumerControlCode) if not c.startswith('__') and not callable(getattr(ConsumerControlCode, c)) } 56 | # lots of consumer control codes are not in adafruit library but we can add https://www.usb.org/sites/default/files/hut1_21_0.pdf#page=123. 57 | self.__additionalconsumercontrolcodes = { "CALC": 0x192 } 58 | self.__consumercontrolcodes.update(self.__additionalconsumercontrolcodes) 59 | for (k,v) in self.__consumercontrolcodes.items(): 60 | setattr(self, k, key(k, v, "consumercontrol")) 61 | self.__layershiftcodes = { "LAYERSHIFT_0": 0, "LAYERSHIFT_1": 1, "LAYERSHIFT_2": 2 } 62 | for (k,v) in self.__layershiftcodes.items(): 63 | setattr(self, k, key(k, v, "layershift")) 64 | 65 | KC = keyboard() 66 | 67 | def initmatrix(rows, cols): 68 | """initmatrix 69 | 70 | Set the pins in array rows as output and with value high 71 | Set the pins in array cols as input and with pullups enabled 72 | 73 | returns nothing 74 | """ 75 | for row in rows: 76 | row.direction = digitalio.Direction.OUTPUT 77 | row.value = True 78 | for column in cols: 79 | column.direction = digitalio.Direction.INPUT 80 | column.pull = digitalio.Pull.UP 81 | 82 | 83 | def scanmatrix(rows, cols): 84 | """scanmatrix 85 | 86 | Incrementally set each row pin to low and see if a col pin is pulled low 87 | False indicates that a key is pressed, True key not pressed 88 | 89 | returns a matrix of rows and cols 90 | """ 91 | matrix = [] 92 | for row, r in enumerate(rows): 93 | rows[row].value = False 94 | for column, c in enumerate(cols): 95 | matrix.append(cols[column].value) 96 | rows[row].value = True 97 | time.sleep(0.01) 98 | return matrix 99 | 100 | 101 | def keystatechange(matrix, oldmatrix, KEYMAP, LAYER): 102 | """keystatechange 103 | 104 | compares the current matrix (matrix) with the previous (oldmatrix) to see if there are 105 | any key changes or not 106 | 107 | If they are, consider the active keymap via Layer and determine if a key press, release 108 | or layer change should occur 109 | 110 | returns NEWLAYER 111 | """ 112 | 113 | NEWLAYER = LAYER 114 | if matrix != oldmatrix: 115 | for k, v in enumerate(matrix): 116 | if matrix[k] != oldmatrix[k] and KEYMAP[LAYER][k] != None: 117 | # False if Key is pressed 118 | if matrix[k] is False: 119 | if KEYMAP[LAYER][k].type == "layershift": 120 | NEWLAYER = KEYMAP[LAYER][k].value 121 | KEYMAP[LAYER][k].keypress() 122 | # True if Key is released 123 | elif matrix[k] is True: 124 | if KEYMAP[LAYER][k].type == "layershift": 125 | NEWLAYER = 0 126 | KEYMAP[LAYER][k].keyrelease() 127 | return NEWLAYER 128 | 129 | def a600keyboard(): 130 | """a600keyboard 131 | 132 | Initialize system to use two keyboard matrices KEYMAP_M1 and KEYMAP_M2 133 | that combined represent the entire A600 keyboard 134 | 135 | Keyboard state changes are read and sent as USB HID messages to the host computer 136 | 137 | HID reports from the computer with regard to CAPS_LOCK, SCROLL_LOCK and NUM_LOCK 138 | for setting LED states 139 | 140 | The main while state loop will forever 141 | """ 142 | 143 | rows1 = [ 144 | mcp.get_pin(0), 145 | digitalio.DigitalInOut(board.GP16), 146 | mcp.get_pin(1), 147 | digitalio.DigitalInOut(board.GP17), 148 | digitalio.DigitalInOut(board.GP15), 149 | ] 150 | cols1 = [ 151 | digitalio.DigitalInOut(board.GP19), 152 | digitalio.DigitalInOut(board.GP11), 153 | mcp.get_pin(2), 154 | digitalio.DigitalInOut(board.GP20), 155 | mcp.get_pin(6), 156 | digitalio.DigitalInOut(board.GP10), 157 | mcp.get_pin(7), 158 | digitalio.DigitalInOut(board.GP9), 159 | digitalio.DigitalInOut(board.GP21), 160 | digitalio.DigitalInOut(board.GP8), 161 | digitalio.DigitalInOut(board.GP22), 162 | digitalio.DigitalInOut(board.GP6), 163 | digitalio.DigitalInOut(board.GP7), 164 | digitalio.DigitalInOut(board.GP4), 165 | digitalio.DigitalInOut(board.GP3), 166 | ] 167 | rows2 = [digitalio.DigitalInOut(board.GP2)] 168 | cols2 = [ 169 | mcp.get_pin(3), 170 | digitalio.DigitalInOut(board.GP13), 171 | mcp.get_pin(5), 172 | mcp.get_pin(4), 173 | digitalio.DigitalInOut(board.GP12), 174 | digitalio.DigitalInOut(board.GP18), 175 | digitalio.DigitalInOut(board.GP5), 176 | ] 177 | 178 | # Initialize the matrix row and col pins 179 | initmatrix(rows1, cols1) 180 | initmatrix(rows2, cols2) 181 | 182 | # Initialize the old matrix values 183 | oldmatrix1 = [True] * (len(rows1) * len(cols1)) 184 | oldmatrix2 = [True] * (len(rows2) * len(cols2)) 185 | 186 | # Each Keymap matrix has 3 layers (layer 0 is the normal/default) 187 | KEYMAP_M1 = ["LAYER0","LAYER1","LAYER2"] 188 | KEYMAP_M2 = ["LAYER0","LAYER1","LAYER2"] 189 | 190 | # Based on http://www.amigawiki.org/dnl/schematics/A600_R1.5.pdf (last page) 191 | # When LAYER = 0 192 | KEYMAP_M1[0] = [ KC.ESCAPE, None, KC.F1, KC.F2, KC.F3, KC.F4, KC.F5, None, KC.F6, None, KC.F7, KC.F8, KC.F9, KC.F10, KC.F1, 193 | KC.GRAVE_ACCENT, KC.ONE, KC.TWO, KC.THREE, KC.FOUR, KC.FIVE, KC.SIX, KC.SEVEN, KC.EIGHT, KC.NINE, KC.ZERO, KC.MINUS, KC.EQUALS, KC.BACKSLASH, KC.UP_ARROW, 194 | KC.TAB, KC.Q, KC.W, KC.E, KC.R, KC.T, KC.Y, KC.U, KC.I, KC.O, KC.P, KC.LEFT_BRACKET, KC.RIGHT_BRACKET, KC.RETURN, KC.LEFT_ARROW, 195 | KC.CAPS_LOCK, KC.A, KC.S, KC.D, KC.F, KC.G, KC.H, KC.J, KC.K, KC.L, KC.SEMICOLON , KC.QUOTE, KC.LAYERSHIFT_1, KC.DELETE, KC.RIGHT_ARROW, 196 | KC.LAYERSHIFT_2, KC.Z, KC.X, KC.C, KC.V, KC.B, KC.N, KC.M, KC.COMMA, KC.PERIOD, KC.FORWARD_SLASH, None, KC.SPACE, KC.BACKSPACE, KC.DOWN_ARROW ] 197 | KEYMAP_M2[0] = [ KC.RIGHT_SHIFT, KC.RIGHT_ALT, KC.RIGHT_GUI, KC.CONTROL, KC.LEFT_SHIFT, KC.LEFT_ALT, KC.LEFT_GUI] 198 | 199 | # When LAYER = 1 200 | KEYMAP_M1[1] = [ None, None, KC.F11, KC.F12, None, None, None, None, None, None, None, None, None, None, KC.MUTE, 201 | KC.KEYPAD_ASTERISK, KC.KEYPAD_ONE, KC.KEYPAD_TWO, KC.KEYPAD_THREE, KC.KEYPAD_FOUR, KC.KEYPAD_FIVE, KC.KEYPAD_SIX, KC.KEYPAD_SEVEN, KC.KEYPAD_EIGHT, KC.KEYPAD_NINE, KC.KEYPAD_ZERO, KC.KEYPAD_MINUS, KC.KEYPAD_PLUS, KC.KEYPAD_BACKSLASH, KC.PAGE_UP, 202 | None, None, None, None, None, None, None, None, None, None, KC.PRINT_SCREEN, None, None, KC.KEYPAD_ENTER, KC.HOME, 203 | None, None, KC.SCROLL_LOCK,None, None, None, KC.PAUSE, None, None, None, None, None, KC.LAYERSHIFT_0, None, KC.END, 204 | None, None, None, None, None, None, KC.KEYPAD_NUMLOCK,None, None, KC.KEYPAD_PERIOD,KC.KEYPAD_FORWARD_SLASH,None, None, None, KC.PAGE_DOWN ] 205 | KEYMAP_M2[1] = [ None, None, None, None, None, None, None ] 206 | 207 | # When LAYER = 2 208 | KEYMAP_M1[2] = [ None, None, None, None, None, None, None, None, None, None, None, None, None, None, KC.MUTE, 209 | None, None, None, None, None, None, None, None, None, None, None, None, None, None, KC.VOLUME_INCREMENT, 210 | None, None, None, None, None, None, None, None, None, None, None, None, None, KC.STOP, KC.SCAN_PREVIOUS_TRACK, 211 | None, None, None, None, None, None, None, None, None, None, None, None, None, None, KC.SCAN_NEXT_TRACK, 212 | KC.LAYERSHIFT_0, None, None, KC.CALC, None, None, None, None, None, None, None, None, KC.PLAY_PAUSE, None, KC.VOLUME_DECREMENT ] 213 | KEYMAP_M2[2] = [ None, None, None, None, None, None, None ] 214 | 215 | LAYER = 0 216 | 217 | kbd.release_all() 218 | 219 | # Main Keyboard Loop 220 | while 1: 221 | matrix1 = scanmatrix(rows1, cols1) 222 | LAYER = keystatechange(matrix1, oldmatrix1, KEYMAP_M1, LAYER) 223 | 224 | matrix2 = scanmatrix(rows2, cols2) 225 | LAYER = keystatechange(matrix2, oldmatrix2, KEYMAP_M2, LAYER) 226 | 227 | oldmatrix1 = matrix1 228 | oldmatrix2 = matrix2 229 | 230 | leds["caplock"].value = kbd.led_on(Keyboard.LED_CAPS_LOCK) 231 | leds["fdd"].value = kbd.led_on(Keyboard.LED_NUM_LOCK) 232 | leds["hdd"].value = kbd.led_on(Keyboard.LED_SCROLL_LOCK) 233 | 234 | 235 | if __name__ == "__main__": 236 | a600keyboard() 237 | -------------------------------------------------------------------------------- /CircuitPythonCode-Amiga600Keyboard_USB_Pico/layout-images/A600 Keyboard-Base.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/CircuitPythonCode-Amiga600Keyboard_USB_Pico/layout-images/A600 Keyboard-Base.PNG -------------------------------------------------------------------------------- /CircuitPythonCode-Amiga600Keyboard_USB_Pico/layout-images/A600 Keyboard-Function and Keypad.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/CircuitPythonCode-Amiga600Keyboard_USB_Pico/layout-images/A600 Keyboard-Function and Keypad.PNG -------------------------------------------------------------------------------- /CircuitPythonCode-Amiga600Keyboard_USB_Pico/layout-images/A600 Keyboard-Media Keys.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/CircuitPythonCode-Amiga600Keyboard_USB_Pico/layout-images/A600 Keyboard-Media Keys.PNG -------------------------------------------------------------------------------- /CircuitPythonCode-Amiga600Keyboard_USB_Pico/readme.md: -------------------------------------------------------------------------------- 1 | # Amiga600 Keyboard USB Adapter CircuitPython Firmware 2 | This project enables an existing Amiga 600 Keyboard to be USB enabled via a Raspberry Pi Pico and MCP20008. 3 | 4 | Keyboard Maintainer: https://github.com/thinghacker 5 | 6 | Supported Hardware: [Amiga 600 USB Keyboard Adapter](https://github.com/thinghacker/Amiga600KeyboardUSBAdapter/tree/main/PCB-Amiga600Keyboard_USB_Pico) 7 | 8 | ### Features 9 | 10 | - Uses CircuitPython and two Adafruit Libraries 11 | - Uses the Amiga 600 case LEDs for Power / Number Lock (FDD) and Scroll Lock (HDD) 12 | - For the English keyboard variant, the two blank "International" keys shift layers to support more contemporary functions such as F11, F12, Numeric Keypad and Media Keys 13 | - [Uses a simple PCB Design](https://github.com/thinghacker/Amiga600KeyboardUSBAdapter/tree/main/PCB-Amiga600Keyboard_USB_Pico) with a small number of components 14 | 15 | ### Build Instructions 16 | - Construct the PCB and connect it to the USB port of your computer where the Pi Pico should appear as a USB flash drive 17 | - Download the **uf2** file from [install CircuitPython](https://circuitpython.org/board/raspberry_pi_pico/) and copy it to your Pico Pico (this code was written using version 6.3.0) 18 | - Copy the CircuitPython HID library [Adafruit_CircuitPython_HID](https://github.com/adafruit/Adafruit_CircuitPython_HID) (adafruit_hid directory) to the **lib** directory on your Pi Pico 19 | - Copy the CircuitPython mcp230xx library [Adafruit_CircuitPython_MCP230xx](https://github.com/adafruit/Adafruit_CircuitPython_MCP230xx) (adafruit_mcp230xx directory) to the **lib** directory on your Pi Pico 20 | - Copy the code.py file from this repo to your Pi Pico 21 | - Remove the USB cable, attach the keyboard and LEDs to the Adapter 22 | - Reattach the USB cable and type away! 23 | 24 | ### Keyboard Layer Configuration 25 | 26 | #### Base Layer 27 | ![Base Layer](layout-images/A600%20Keyboard-Base.PNG) 28 | 29 | - My particular keyboard is the UK variant (differences are shown as Green on the keys), however this keymap is configured as if it was USA. 30 | - The Left "Blank" Key (immediately to the right of left shift) is used to enable the Additional Function Keys and Numeric Keypad Layer 31 | - The Right "Blank" Key (above right shift) is used to enable the Media Keys Layer 32 | 33 | #### Additional Function Keys and Numeric Keypad Layer 34 | ![Additional Function Keys and Numeric Keypad Layer](layout-images/A600%20Keyboard-Function%20and%20Keypad.PNG) 35 | 36 | #### Media Keys Layer 37 | ![Media Keys Layer](layout-images/A600%20Keyboard-Media%20Keys.PNG) 38 | 39 | This is broadly inspired but very much a poor mans representation of the amazing [QMK firmware](https://github.com/qmk/qmk_firmware) that is extremely limited in scope and capability but seems good enough for me. 40 | 41 | The software as written is distributed under a GPL Version 3 License 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/A600Keyboard_USB_Pico-cache.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # Connector_Conn_01x04_Male 5 | # 6 | DEF Connector_Conn_01x04_Male J 0 40 Y N 1 F N 7 | F0 "J" 0 200 50 H V C CNN 8 | F1 "Connector_Conn_01x04_Male" 0 -300 50 H V C CNN 9 | F2 "" 0 0 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | $FPLIST 12 | Connector*:*_1x??_* 13 | $ENDFPLIST 14 | DRAW 15 | S 34 -195 0 -205 1 1 6 F 16 | S 34 -95 0 -105 1 1 6 F 17 | S 34 5 0 -5 1 1 6 F 18 | S 34 105 0 95 1 1 6 F 19 | P 2 1 1 6 50 -200 34 -200 N 20 | P 2 1 1 6 50 -100 34 -100 N 21 | P 2 1 1 6 50 0 34 0 N 22 | P 2 1 1 6 50 100 34 100 N 23 | X Pin_1 1 200 100 150 L 50 50 1 1 P 24 | X Pin_2 2 200 0 150 L 50 50 1 1 P 25 | X Pin_3 3 200 -100 150 L 50 50 1 1 P 26 | X Pin_4 4 200 -200 150 L 50 50 1 1 P 27 | ENDDRAW 28 | ENDDEF 29 | # 30 | # Device_R 31 | # 32 | DEF Device_R R 0 0 N Y 1 F N 33 | F0 "R" 80 0 50 V V C CNN 34 | F1 "Device_R" 0 0 50 V V C CNN 35 | F2 "" -70 0 50 V I C CNN 36 | F3 "" 0 0 50 H I C CNN 37 | $FPLIST 38 | R_* 39 | $ENDFPLIST 40 | DRAW 41 | S -40 -100 40 100 0 1 10 N 42 | X ~ 1 0 150 50 D 50 50 1 1 P 43 | X ~ 2 0 -150 50 U 50 50 1 1 P 44 | ENDDRAW 45 | ENDDEF 46 | # 47 | # Interface_Expansion_MCP23008-xP 48 | # 49 | DEF Interface_Expansion_MCP23008-xP U 0 20 Y Y 1 F N 50 | F0 "U" -350 550 50 H V C CNN 51 | F1 "Interface_Expansion_MCP23008-xP" 350 550 50 H V C CNN 52 | F2 "Package_DIP:DIP-18_W7.62mm" 0 -1050 50 H I C CNN 53 | F3 "" 1300 -1200 50 H I C CNN 54 | $FPLIST 55 | DIP*W7.62mm* 56 | $ENDFPLIST 57 | DRAW 58 | S -400 500 400 -500 0 1 10 f 59 | X SCL 1 -500 300 100 R 50 50 1 1 I 60 | X GP0 10 500 400 100 L 50 50 1 1 B 61 | X GP1 11 500 300 100 L 50 50 1 1 B 62 | X GP2 12 500 200 100 L 50 50 1 1 B 63 | X GP3 13 500 100 100 L 50 50 1 1 B 64 | X GP4 14 500 0 100 L 50 50 1 1 B 65 | X GP5 15 500 -100 100 L 50 50 1 1 B 66 | X GP6 16 500 -200 100 L 50 50 1 1 B 67 | X GP7 17 500 -300 100 L 50 50 1 1 B 68 | X VDD 18 0 600 100 D 50 50 1 1 W 69 | X SDA 2 -500 200 100 R 50 50 1 1 B 70 | X A2 3 -500 -200 100 R 50 50 1 1 I 71 | X A1 4 -500 -300 100 R 50 50 1 1 I 72 | X A0 5 -500 -400 100 R 50 50 1 1 I 73 | X ~RESET 6 -500 400 100 R 50 50 1 1 I 74 | X NC 7 -400 -100 100 R 50 50 1 1 N N 75 | X INT 8 -500 0 100 R 50 50 1 1 O 76 | X VSS 9 0 -600 100 U 50 50 1 1 W 77 | ENDDRAW 78 | ENDDEF 79 | # 80 | # MCU_RaspberryPi_and_Boards_Pico 81 | # 82 | DEF MCU_RaspberryPi_and_Boards_Pico U 0 40 Y Y 1 F N 83 | F0 "U" -550 1100 50 H V C CNN 84 | F1 "MCU_RaspberryPi_and_Boards_Pico" 0 750 50 H V C CNN 85 | F2 "RPi_Pico:RPi_Pico_SMD_TH" 0 0 50 V I C CNN 86 | F3 "" 0 0 50 H I C CNN 87 | DRAW 88 | T 0 0 850 50 0 0 0 "Raspberry Pi" Normal 0 C C 89 | S -600 1050 600 -1050 0 1 0 f 90 | X GPIO0 1 -700 950 100 R 50 50 1 1 B 91 | X GPIO7 10 -700 50 100 R 50 50 1 1 B 92 | X GPIO8 11 -700 -50 100 R 50 50 1 1 B 93 | X GPIO9 12 -700 -150 100 R 50 50 1 1 B 94 | X GND 13 -700 -250 100 R 50 50 1 1 w 95 | X GPIO10 14 -700 -350 100 R 50 50 1 1 B 96 | X GPIO11 15 -700 -450 100 R 50 50 1 1 B 97 | X GPIO12 16 -700 -550 100 R 50 50 1 1 B 98 | X GPIO13 17 -700 -650 100 R 50 50 1 1 B 99 | X GND 18 -700 -750 100 R 50 50 1 1 w 100 | X GPIO14 19 -700 -850 100 R 50 50 1 1 B 101 | X GPIO1 2 -700 850 100 R 50 50 1 1 B 102 | X GPIO15 20 -700 -950 100 R 50 50 1 1 B 103 | X GPIO16 21 700 -950 100 L 50 50 1 1 B 104 | X GPIO17 22 700 -850 100 L 50 50 1 1 B 105 | X GND 23 700 -750 100 L 50 50 1 1 w 106 | X GPIO18 24 700 -650 100 L 50 50 1 1 B 107 | X GPIO19 25 700 -550 100 L 50 50 1 1 B 108 | X GPIO20 26 700 -450 100 L 50 50 1 1 B 109 | X GPIO21 27 700 -350 100 L 50 50 1 1 B 110 | X GND 28 700 -250 100 L 50 50 1 1 w 111 | X GPIO22 29 700 -150 100 L 50 50 1 1 B 112 | X GND 3 -700 750 100 R 50 50 1 1 w 113 | X RUN 30 700 -50 100 L 50 50 1 1 I 114 | X GPIO26_ADC0 31 700 50 100 L 50 50 1 1 B 115 | X GPIO27_ADC1 32 700 150 100 L 50 50 1 1 B 116 | X AGND 33 700 250 100 L 50 50 1 1 w 117 | X GPIO28_ADC2 34 700 350 100 L 50 50 1 1 B 118 | X ADC_VREF 35 700 450 100 L 50 50 1 1 U 119 | X 3V3 36 700 550 100 L 50 50 1 1 U 120 | X 3V3_EN 37 700 650 100 L 50 50 1 1 I 121 | X GND 38 700 750 100 L 50 50 1 1 w 122 | X VSYS 39 700 850 100 L 50 50 1 1 U 123 | X GPIO2 4 -700 650 100 R 50 50 1 1 B 124 | X VBUS 40 700 950 100 L 50 50 1 1 U 125 | X SWCLK 41 -100 -1150 100 U 50 50 1 1 I 126 | X GND 42 0 -1150 100 U 50 50 1 1 w 127 | X SWDIO 43 100 -1150 100 U 50 50 1 1 B 128 | X GPIO3 5 -700 550 100 R 50 50 1 1 B 129 | X GPIO4 6 -700 450 100 R 50 50 1 1 B 130 | X GPIO5 7 -700 350 100 R 50 50 1 1 B 131 | X GND 8 -700 250 100 R 50 50 1 1 w 132 | X GPIO6 9 -700 150 100 R 50 50 1 1 B 133 | ENDDRAW 134 | ENDDEF 135 | # 136 | # eec_39-53-2304 137 | # 138 | DEF eec_39-53-2304 J 0 0 Y Y 1 L N 139 | F0 "J" 0 500 50 H V L CNN 140 | F1 "eec_39-53-2304" 0 600 50 H V L CNN 141 | F2 "Molex-39-53-2304-*" 0 700 50 H I L CNN 142 | F3 "http://www.molex.com/webdocs/datasheets/pdf/en-us/0039532304_FFC_FPC_CONNECTORS.pdf" 0 800 50 H I L CNN 143 | F4 "30" 0 900 50 H I L CNN "Circuits Loaded" 144 | F5 "Manufacturer URL" 0 1000 50 H I L CNN "Component Link 1 Description" 145 | F6 "http://www.molex.com/molex/index.jsp" 0 1100 50 H I L CNN "Component Link 1 URL" 146 | F7 "Package Specification" 0 1200 50 H I L CNN "Component Link 3 Description" 147 | F8 "http://www.molex.com/pdm_docs/sd/039532304_sd.pdf" 0 1300 50 H I L CNN "Component Link 3 URL" 148 | F9 "Top" 0 1400 50 H I L CNN "Contact Position" 149 | F10 "1A" 0 1500 50 H I L CNN "Current Max per Contact" 150 | F11 "30" 0 1600 50 H I L CNN "Durability mating cycles max" 151 | F12 "90degrees Angle" 0 1700 50 H I L CNN "Entry Angle" 152 | F13 "5.00mm" 0 1800 50 H I L CNN "Mated Height" 153 | F14 "Phosphor Bronze" 0 1900 50 H I L CNN "Material Metal" 154 | F15 "Tin-Bismuth" 0 2000 50 H I L CNN "Material Plating Mating" 155 | F16 "Tin-Bismuth" 0 2100 50 H I L CNN "Material Plating Termination" 156 | F17 "Through Hole" 0 2200 50 H I L CNN "Mounting Technology" 157 | F18 "1" 0 2300 50 H I L CNN "Number of Rows" 158 | F19 "Right Angle" 0 2400 50 H I L CNN "Orientation" 159 | F20 "No" 0 2500 50 H I L CNN "PCB Locator" 160 | F21 "None" 0 2600 50 H I L CNN "PCB Retention" 161 | F22 "30-Lead FPC Connector, Pitch 1.25 mm" 0 2700 50 H I L CNN "Package Description" 162 | F23 "Rev. B, 04/2007" 0 2800 50 H I L CNN "Package Version" 163 | F24 "Tray" 0 2900 50 H I L CNN "Packing" 164 | F25 "1.25mm" 0 3000 50 H I L CNN "Pitch Mating Interface" 165 | F26 "No" 0 3100 50 H I L CNN "Polarized to PCB" 166 | F27 "No" 0 3200 50 H I L CNN "Stackable" 167 | F28 "200V" 0 3300 50 H I L CNN "Voltage Max" 168 | F29 "Conn" 0 3400 50 H I L CNN "category" 169 | F30 "2481314" 0 3500 50 H I L CNN "ciiva ids" 170 | F31 "36aa6e089076200f" 0 3600 50 H I L CNN "library id" 171 | F32 "Molex" 0 3700 50 H I L CNN "manufacturer" 172 | F33 "39-53-2304" 0 3800 50 H I L CNN "package" 173 | F34 "1411372251" 0 3900 50 H I L CNN "release date" 174 | F35 "Yes" 0 4000 50 H I L CNN "rohs" 175 | F36 "2DF75EBE-5122-45C7-8C6B-FF0608AD78B9" 0 4100 50 H I L CNN "vault revision" 176 | F37 "yes" 0 4200 50 H I L CNN "imported" 177 | DRAW 178 | C 0 300 30 1 1 0 N 179 | C 100 300 30 1 1 0 N 180 | C 200 300 30 1 1 0 N 181 | C 300 300 30 1 1 0 N 182 | C 400 300 30 1 1 0 N 183 | C 500 300 30 1 1 0 N 184 | C 600 300 30 1 1 0 N 185 | C 700 300 30 1 1 0 N 186 | C 800 300 30 1 1 0 N 187 | C 900 300 30 1 1 0 N 188 | C 1000 300 30 1 1 0 N 189 | C 1100 300 30 1 1 0 N 190 | C 1200 300 30 1 1 0 N 191 | C 1200 300 30 1 1 0 N 192 | C 1300 300 30 1 1 0 N 193 | C 1400 300 30 1 1 0 N 194 | C 1500 300 30 1 1 0 N 195 | C 1600 300 30 1 1 0 N 196 | C 1700 300 30 1 1 0 N 197 | C 1800 300 30 1 1 0 N 198 | C 1800 300 30 1 1 0 N 199 | C 1900 300 30 1 1 0 N 200 | C 2000 300 30 1 1 0 N 201 | C 2000 300 30 1 1 0 N 202 | C 2100 300 30 1 1 0 N 203 | C 2100 300 30 1 1 0 N 204 | C 2200 300 30 1 1 0 N 205 | C 2200 300 30 1 1 0 N 206 | C 2300 300 30 1 1 0 N 207 | C 2300 300 30 1 1 0 N 208 | C 2400 300 30 1 1 0 N 209 | C 2400 300 30 1 1 0 N 210 | C 2500 300 30 1 1 0 N 211 | C 2500 300 30 1 1 0 N 212 | C 2600 300 30 1 1 0 N 213 | C 2600 300 30 1 1 0 N 214 | C 2700 300 30 1 1 0 N 215 | C 2700 300 30 1 1 0 N 216 | C 2800 300 30 1 1 0 N 217 | C 2800 300 30 1 1 0 N 218 | C 2900 300 30 1 1 0 N 219 | C 2900 300 30 1 1 0 N 220 | S -100 400 3000 200 1 1 0 f 221 | P 2 1 1 0 0 200 0 270 N 222 | P 2 1 1 0 100 200 100 270 N 223 | P 2 1 1 0 200 200 200 270 N 224 | P 2 1 1 0 300 200 300 270 N 225 | P 2 1 1 0 400 200 400 270 N 226 | P 2 1 1 0 500 200 500 270 N 227 | P 2 1 1 0 600 200 600 270 N 228 | P 2 1 1 0 700 200 700 270 N 229 | P 2 1 1 0 800 200 800 270 N 230 | P 2 1 1 0 900 200 900 270 N 231 | P 2 1 1 0 1000 200 1000 270 N 232 | P 2 1 1 0 1100 200 1100 270 N 233 | P 2 1 1 0 1200 200 1200 270 N 234 | P 2 1 1 0 1200 200 1200 270 N 235 | P 2 1 1 0 1300 200 1300 270 N 236 | P 2 1 1 0 1400 200 1400 270 N 237 | P 2 1 1 0 1500 200 1500 270 N 238 | P 2 1 1 0 1600 200 1600 270 N 239 | P 2 1 1 0 1700 200 1700 270 N 240 | P 2 1 1 0 1800 200 1800 270 N 241 | P 2 1 1 0 1800 200 1800 270 N 242 | P 2 1 1 0 1900 200 1900 270 N 243 | P 2 1 1 0 2000 200 2000 270 N 244 | P 2 1 1 0 2000 200 2000 270 N 245 | P 2 1 1 0 2100 200 2100 270 N 246 | P 2 1 1 0 2100 200 2100 270 N 247 | P 2 1 1 0 2200 200 2200 270 N 248 | P 2 1 1 0 2200 200 2200 270 N 249 | P 2 1 1 0 2300 200 2300 270 N 250 | P 2 1 1 0 2300 200 2300 270 N 251 | P 2 1 1 0 2400 200 2400 270 N 252 | P 2 1 1 0 2400 200 2400 270 N 253 | P 2 1 1 0 2500 200 2500 270 N 254 | P 2 1 1 0 2500 200 2500 270 N 255 | P 2 1 1 0 2600 200 2600 270 N 256 | P 2 1 1 0 2600 200 2600 270 N 257 | P 2 1 1 0 2700 200 2700 270 N 258 | P 2 1 1 0 2700 200 2700 270 N 259 | P 2 1 1 0 2800 200 2800 270 N 260 | P 2 1 1 0 2800 200 2800 270 N 261 | P 2 1 1 0 2900 200 2900 270 N 262 | P 2 1 1 0 2900 200 2900 270 N 263 | X 1 1 0 100 100 U 40 0 1 1 P 264 | X 10 10 900 100 100 U 40 0 1 1 P 265 | X 11 11 1000 100 100 U 40 0 1 1 P 266 | X 12 12 1100 100 100 U 40 0 1 1 P 267 | X 13 13 1200 100 100 U 40 0 1 1 P 268 | X 14 14 1300 100 100 U 40 0 1 1 P 269 | X 15 15 1400 100 100 U 40 0 1 1 P 270 | X 16 16 1500 100 100 U 40 0 1 1 P 271 | X 17 17 1600 100 100 U 40 0 1 1 P 272 | X 18 18 1700 100 100 U 40 0 1 1 P 273 | X 19 19 1800 100 100 U 40 0 1 1 P 274 | X 2 2 100 100 100 U 40 0 1 1 P 275 | X 20 20 1900 100 100 U 40 0 1 1 P 276 | X 21 21 2000 100 100 U 40 0 1 1 P 277 | X 22 22 2100 100 100 U 40 0 1 1 P 278 | X 23 23 2200 100 100 U 40 0 1 1 P 279 | X 24 24 2300 100 100 U 40 0 1 1 P 280 | X 25 25 2400 100 100 U 40 0 1 1 P 281 | X 26 26 2500 100 100 U 40 0 1 1 P 282 | X 27 27 2600 100 100 U 40 0 1 1 P 283 | X 28 28 2700 100 100 U 40 0 1 1 P 284 | X 29 29 2800 100 100 U 40 0 1 1 P 285 | X 3 3 200 100 100 U 40 0 1 1 P 286 | X 30 30 2900 100 100 U 40 0 1 1 P 287 | X 4 4 300 100 100 U 40 0 1 1 P 288 | X 5 5 400 100 100 U 40 0 1 1 P 289 | X 6 6 500 100 100 U 40 0 1 1 P 290 | X 7 7 600 100 100 U 40 0 1 1 P 291 | X 8 8 700 100 100 U 40 0 1 1 P 292 | X 9 9 800 100 100 U 40 0 1 1 P 293 | ENDDRAW 294 | ENDDEF 295 | # 296 | # power_GND 297 | # 298 | DEF power_GND #PWR 0 0 Y Y 1 F P 299 | F0 "#PWR" 0 -250 50 H I C CNN 300 | F1 "power_GND" 0 -150 50 H V C CNN 301 | F2 "" 0 0 50 H I C CNN 302 | F3 "" 0 0 50 H I C CNN 303 | DRAW 304 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 305 | X GND 1 0 0 0 D 50 50 1 1 W N 306 | ENDDRAW 307 | ENDDEF 308 | # 309 | #End Library 310 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/A600Keyboard_USB_Pico.pro: -------------------------------------------------------------------------------- 1 | update=14/06/2021 9:56:17 PM 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [pcbnew] 9 | version=1 10 | LastNetListRead= 11 | UseCmpFile=1 12 | PadDrill=0.600000000000 13 | PadDrillOvalY=0.600000000000 14 | PadSizeH=1.500000000000 15 | PadSizeV=1.500000000000 16 | PcbTextSizeV=1.500000000000 17 | PcbTextSizeH=1.500000000000 18 | PcbTextThickness=0.300000000000 19 | ModuleTextSizeV=1.000000000000 20 | ModuleTextSizeH=1.000000000000 21 | ModuleTextSizeThickness=0.150000000000 22 | SolderMaskClearance=0.000000000000 23 | SolderMaskMinWidth=0.000000000000 24 | DrawSegmentWidth=0.200000000000 25 | BoardOutlineThickness=0.100000000000 26 | ModuleOutlineThickness=0.150000000000 27 | [cvpcb] 28 | version=1 29 | NetIExt=net 30 | [eeschema] 31 | version=1 32 | LibDir= 33 | [eeschema/libraries] 34 | [schematic_editor] 35 | version=1 36 | PageLayoutDescrFile= 37 | PlotDirectoryName= 38 | SubpartIdSeparator=0 39 | SubpartFirstId=65 40 | NetFmtName=Pcbnew 41 | SpiceAjustPassiveValues=0 42 | LabSize=50 43 | ERC_TestSimilarLabels=1 44 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/A600Keyboard_USB_Pico.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "" 8 | Date "" 9 | Rev "" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L eec:39-53-2304 J2 18 | U 1 1 606181D5 19 | P 2100 3800 20 | F 0 "J2" V 3504 4228 50 0000 L CNN 21 | F 1 "39-53-2304" V 3595 4228 50 0000 L CNN 22 | F 2 "eec:Molex-39-53-2304-Manufacturer_Recommended" H 2100 4500 50 0001 L CNN 23 | F 3 "http://www.molex.com/webdocs/datasheets/pdf/en-us/0039532304_FFC_FPC_CONNECTORS.pdf" H 2100 4600 50 0001 L CNN 24 | F 4 "30" H 2100 4700 50 0001 L CNN "Circuits Loaded" 25 | F 5 "Manufacturer URL" H 2100 4800 50 0001 L CNN "Component Link 1 Description" 26 | F 6 "http://www.molex.com/molex/index.jsp" H 2100 4900 50 0001 L CNN "Component Link 1 URL" 27 | F 7 "Package Specification" H 2100 5000 50 0001 L CNN "Component Link 3 Description" 28 | F 8 "http://www.molex.com/pdm_docs/sd/039532304_sd.pdf" H 2100 5100 50 0001 L CNN "Component Link 3 URL" 29 | F 9 "Top" H 2100 5200 50 0001 L CNN "Contact Position" 30 | F 10 "1A" H 2100 5300 50 0001 L CNN "Current Max per Contact" 31 | F 11 "30" H 2100 5400 50 0001 L CNN "Durability mating cycles max" 32 | F 12 "90degrees Angle" H 2100 5500 50 0001 L CNN "Entry Angle" 33 | F 13 "5.00mm" H 2100 5600 50 0001 L CNN "Mated Height" 34 | F 14 "Phosphor Bronze" H 2100 5700 50 0001 L CNN "Material Metal" 35 | F 15 "Tin-Bismuth" H 2100 5800 50 0001 L CNN "Material Plating Mating" 36 | F 16 "Tin-Bismuth" H 2100 5900 50 0001 L CNN "Material Plating Termination" 37 | F 17 "Through Hole" H 2100 6000 50 0001 L CNN "Mounting Technology" 38 | F 18 "1" H 2100 6100 50 0001 L CNN "Number of Rows" 39 | F 19 "Right Angle" H 2100 6200 50 0001 L CNN "Orientation" 40 | F 20 "No" H 2100 6300 50 0001 L CNN "PCB Locator" 41 | F 21 "None" H 2100 6400 50 0001 L CNN "PCB Retention" 42 | F 22 "30-Lead FPC Connector, Pitch 1.25 mm" H 2100 6500 50 0001 L CNN "Package Description" 43 | F 23 "Rev. B, 04/2007" H 2100 6600 50 0001 L CNN "Package Version" 44 | F 24 "Tray" H 2100 6700 50 0001 L CNN "Packing" 45 | F 25 "1.25mm" H 2100 6800 50 0001 L CNN "Pitch Mating Interface" 46 | F 26 "No" H 2100 6900 50 0001 L CNN "Polarized to PCB" 47 | F 27 "No" H 2100 7000 50 0001 L CNN "Stackable" 48 | F 28 "200V" H 2100 7100 50 0001 L CNN "Voltage Max" 49 | F 29 "Conn" H 2100 7200 50 0001 L CNN "category" 50 | F 30 "2481314" H 2100 7300 50 0001 L CNN "ciiva ids" 51 | F 31 "36aa6e089076200f" H 2100 7400 50 0001 L CNN "library id" 52 | F 32 "Molex" H 2100 7500 50 0001 L CNN "manufacturer" 53 | F 33 "39-53-2304" H 2100 7600 50 0001 L CNN "package" 54 | F 34 "1411372251" H 2100 7700 50 0001 L CNN "release date" 55 | F 35 "Yes" H 2100 7800 50 0001 L CNN "rohs" 56 | F 36 "2DF75EBE-5122-45C7-8C6B-FF0608AD78B9" H 2100 7900 50 0001 L CNN "vault revision" 57 | F 37 "yes" H 2100 8000 50 0001 L CNN "imported" 58 | 1 2100 3800 59 | 0 -1 1 0 60 | $EndComp 61 | Wire Wire Line 62 | 2000 3800 4700 3800 63 | Wire Wire Line 64 | 6300 2150 6400 2150 65 | Wire Wire Line 66 | 6700 1650 5900 1650 67 | NoConn ~ 5100 2400 68 | $Comp 69 | L Device:R R2 70 | U 1 1 607293D8 71 | P 4800 1800 72 | F 0 "R2" V 4593 1800 50 0000 C CNN 73 | F 1 "4K7" V 4684 1800 50 0000 C CNN 74 | F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" V 4730 1800 50 0001 C CNN 75 | F 3 "~" H 4800 1800 50 0001 C CNN 76 | 1 4800 1800 77 | -1 0 0 1 78 | $EndComp 79 | Text Label 2100 3800 0 50 ~ 0 80 | M1Row0 81 | Text Label 2100 3900 0 50 ~ 0 82 | M1Row1 83 | Text Label 2100 4000 0 50 ~ 0 84 | M1Row2 85 | Text Label 2100 4100 0 50 ~ 0 86 | CapsLockLEDNeg 87 | Text Label 2100 4600 0 50 ~ 0 88 | CapsLockLEDPos 89 | Text Label 2100 4200 0 50 ~ 0 90 | M1Row3 91 | Text Label 2100 4300 0 50 ~ 0 92 | M2Col0 93 | Text Label 2100 4400 0 50 ~ 0 94 | M1Row4 95 | Text Label 2100 4500 0 50 ~ 0 96 | M2Col1 97 | Text Label 2100 4700 0 50 ~ 0 98 | M2Col2 99 | Text Label 2100 4800 0 50 ~ 0 100 | M2Col3 101 | Text Label 2100 4900 0 50 ~ 0 102 | M2Col4 103 | Text Label 2100 5000 0 50 ~ 0 104 | M2Col5 105 | Text Label 2100 5100 0 50 ~ 0 106 | M2Col6 107 | Text Label 2100 5200 0 50 ~ 0 108 | M1Col0 109 | Text Label 2100 5300 0 50 ~ 0 110 | M1Col1 111 | Text Label 2100 5400 0 50 ~ 0 112 | M1Col2 113 | Text Label 2100 5500 0 50 ~ 0 114 | M1Col3 115 | Text Label 2100 5600 0 50 ~ 0 116 | M1Col4 117 | Text Label 2100 5700 0 50 ~ 0 118 | M1Col5 119 | Text Label 2100 5800 0 50 ~ 0 120 | M1Col6 121 | Text Label 2100 5900 0 50 ~ 0 122 | M1Col7 123 | Text Label 2100 6000 0 50 ~ 0 124 | M1Col8 125 | Text Label 2100 6100 0 50 ~ 0 126 | M1Col9 127 | Text Label 2100 6200 0 50 ~ 0 128 | M1Col10 129 | Text Label 2100 6300 0 50 ~ 0 130 | M1Col11 131 | Text Label 2100 6400 0 50 ~ 0 132 | M1Col12 133 | Text Label 2100 6500 0 50 ~ 0 134 | M1Col13 135 | Text Label 2100 6600 0 50 ~ 0 136 | M1Col14 137 | Text Label 2100 6700 0 50 ~ 0 138 | M2Row0 139 | Text Label 4900 2350 1 50 ~ 0 140 | SDA 141 | Text Label 4800 2350 1 50 ~ 0 142 | SCL 143 | $Comp 144 | L Device:R R1 145 | U 1 1 6072877A 146 | P 5200 1800 147 | F 0 "R1" V 4993 1800 50 0000 C CNN 148 | F 1 "4K7" V 5084 1800 50 0000 C CNN 149 | F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" V 5130 1800 50 0001 C CNN 150 | F 3 "~" H 5200 1800 50 0001 C CNN 151 | 1 5200 1800 152 | -1 0 0 1 153 | $EndComp 154 | Connection ~ 4800 1650 155 | Wire Wire Line 156 | 4800 1950 4800 2050 157 | Connection ~ 4800 2050 158 | Wire Wire Line 159 | 2000 5000 4000 5000 160 | Wire Wire Line 161 | 2000 5100 6900 5100 162 | Connection ~ 5750 4100 163 | Wire Wire Line 164 | 2000 4100 5750 4100 165 | Wire Wire Line 166 | 2000 4300 5000 4300 167 | Wire Wire Line 168 | 2000 4700 5200 4700 169 | Wire Wire Line 170 | 5100 3400 5100 4800 171 | Wire Wire Line 172 | 5100 4800 2000 4800 173 | Wire Wire Line 174 | 2000 5200 4100 5200 175 | Wire Wire Line 176 | 2000 5500 4200 5500 177 | Wire Wire Line 178 | 2000 5400 4900 5400 179 | Wire Wire Line 180 | 4900 5400 4900 3400 181 | Text Label 6700 1750 0 50 ~ 0 182 | 3.3V 183 | Wire Wire Line 184 | 5900 4000 5900 1650 185 | Connection ~ 5900 1650 186 | Wire Wire Line 187 | 2000 6000 4300 6000 188 | Wire Wire Line 189 | 2000 6100 7300 6100 190 | Wire Wire Line 191 | 2000 6200 4400 6200 192 | Wire Wire Line 193 | 2000 6300 7100 6300 194 | Wire Wire Line 195 | 2000 6500 6800 6500 196 | Wire Wire Line 197 | 2000 6600 6700 6600 198 | Wire Wire Line 199 | 6600 6700 2000 6700 200 | $Comp 201 | L Interface_Expansion:MCP23008-xP U2 202 | U 1 1 60624C98 203 | P 5100 2900 204 | F 0 "U2" H 5100 3700 50 0000 C CNN 205 | F 1 "MCP23008_SP" H 5150 3600 50 0000 C CNN 206 | F 2 "Package_DIP:DIP-18_W7.62mm" H 5300 1900 50 0001 L CNN 207 | F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf" H 5300 1800 50 0001 L CNN 208 | 1 5100 2900 209 | 0 -1 1 0 210 | $EndComp 211 | Wire Wire Line 212 | 5750 2350 5750 2900 213 | Wire Wire Line 214 | 4900 1950 5200 1950 215 | Wire Wire Line 216 | 4800 2400 4800 2050 217 | Wire Wire Line 218 | 4800 2050 7100 2050 219 | Wire Wire Line 220 | 4800 1650 5200 1650 221 | Connection ~ 5200 1650 222 | Wire Wire Line 223 | 5200 1650 5900 1650 224 | Connection ~ 5200 1950 225 | Wire Wire Line 226 | 5200 1950 7200 1950 227 | Wire Wire Line 228 | 4500 2900 4500 1650 229 | Wire Wire Line 230 | 4500 1650 4700 1650 231 | Wire Wire Line 232 | 5700 2900 5750 2900 233 | Connection ~ 5750 2900 234 | Wire Wire Line 235 | 5750 2900 5750 4100 236 | Wire Wire Line 237 | 5300 2400 5300 2350 238 | Wire Wire Line 239 | 5400 2400 5400 2350 240 | Wire Wire Line 241 | 5300 2350 5400 2350 242 | Connection ~ 5400 2350 243 | Wire Wire Line 244 | 5500 2400 5500 2350 245 | Wire Wire Line 246 | 5400 2350 5500 2350 247 | Connection ~ 5500 2350 248 | Wire Wire Line 249 | 5500 2350 5750 2350 250 | Wire Wire Line 251 | 4700 3400 4700 3800 252 | Wire Wire Line 253 | 4700 2400 4700 1650 254 | Connection ~ 4700 1650 255 | Wire Wire Line 256 | 4700 1650 4800 1650 257 | Wire Wire Line 258 | 4800 3400 4800 4000 259 | Wire Wire Line 260 | 4800 4000 2000 4000 261 | Wire Wire Line 262 | 8100 1050 3800 1050 263 | Wire Wire Line 264 | 3800 1050 3800 4200 265 | Wire Wire Line 266 | 2000 4200 3800 4200 267 | Wire Wire Line 268 | 8200 950 3900 950 269 | Wire Wire Line 270 | 3900 950 3900 3900 271 | Wire Wire Line 272 | 2000 3900 3900 3900 273 | Wire Wire Line 274 | 2000 4600 8100 4600 275 | Wire Wire Line 276 | 5000 3400 5000 4300 277 | Wire Wire Line 278 | 2000 4500 7900 4500 279 | Wire Wire Line 280 | 5200 3400 5200 4700 281 | Wire Wire Line 282 | 7900 1150 4000 1150 283 | Wire Wire Line 284 | 4000 1150 4000 5000 285 | Wire Wire Line 286 | 2000 4900 7800 4900 287 | Wire Wire Line 288 | 7800 1250 4100 1250 289 | Wire Wire Line 290 | 4100 1250 4100 5200 291 | Wire Wire Line 292 | 6500 2150 7000 2150 293 | Connection ~ 7000 2150 294 | Wire Wire Line 295 | 7000 2150 7500 2150 296 | Connection ~ 7500 2150 297 | Wire Wire Line 298 | 7500 2150 8000 2150 299 | Connection ~ 8000 2150 300 | Wire Wire Line 301 | 8000 2150 8500 2150 302 | $Comp 303 | L power:GND #PWR0101 304 | U 1 1 606B582E 305 | P 8500 4200 306 | F 0 "#PWR0101" H 8500 3950 50 0001 C CNN 307 | F 1 "GND" H 8550 4050 50 0000 R CNN 308 | F 2 "" H 8500 4200 50 0001 C CNN 309 | F 3 "" H 8500 4200 50 0001 C CNN 310 | 1 8500 4200 311 | 1 0 0 -1 312 | $EndComp 313 | Wire Wire Line 314 | 9850 3800 6300 3800 315 | Wire Wire Line 316 | 6400 3900 9850 3900 317 | Wire Wire Line 318 | 9850 4000 5900 4000 319 | $Comp 320 | L Connector:Conn_01x04_Male J1 321 | U 1 1 60673B8D 322 | P 10050 4000 323 | F 0 "J1" H 10158 4281 50 0000 C CNN 324 | F 1 "Conn_01x04_Male" H 10158 4190 50 0000 C CNN 325 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Horizontal" H 10050 4000 50 0001 C CNN 326 | F 3 "~" H 10050 4000 50 0001 C CNN 327 | 1 10050 4000 328 | -1 0 0 1 329 | $EndComp 330 | Wire Wire Line 331 | 6500 3700 7000 3700 332 | Wire Wire Line 333 | 7000 3700 7500 3700 334 | Connection ~ 7000 3700 335 | Wire Wire Line 336 | 7500 3700 8000 3700 337 | Connection ~ 7500 3700 338 | Wire Wire Line 339 | 8000 3700 8500 3700 340 | Wire Wire Line 341 | 8500 2150 8500 2900 342 | Connection ~ 8000 3700 343 | Connection ~ 8500 2900 344 | Wire Wire Line 345 | 8500 2900 8500 3700 346 | Wire Wire Line 347 | 8500 3700 8500 4100 348 | Connection ~ 8500 3700 349 | Connection ~ 8500 4100 350 | Wire Wire Line 351 | 8500 4100 8500 4200 352 | Wire Wire Line 353 | 9850 4100 8500 4100 354 | Wire Wire Line 355 | 5300 3400 5300 5600 356 | Wire Wire Line 357 | 5300 5600 2000 5600 358 | Wire Wire Line 359 | 5400 3400 5400 5800 360 | Wire Wire Line 361 | 2000 5800 5400 5800 362 | Wire Wire Line 363 | 4900 1950 4900 2400 364 | Wire Wire Line 365 | 2000 5300 7700 5300 366 | Wire Wire Line 367 | 7700 1350 4200 1350 368 | Wire Wire Line 369 | 4200 1350 4200 5500 370 | Wire Wire Line 371 | 2000 5700 7600 5700 372 | Wire Wire Line 373 | 7600 1450 4300 1450 374 | Wire Wire Line 375 | 4300 1450 4300 6000 376 | Wire Wire Line 377 | 2000 5900 7400 5900 378 | Wire Wire Line 379 | 7400 1550 4400 1550 380 | Wire Wire Line 381 | 4400 1550 4400 6200 382 | Wire Wire Line 383 | 2000 6400 7200 6400 384 | Wire Wire Line 385 | 8500 4100 5750 4100 386 | Wire Wire Line 387 | 7100 3600 7100 6300 388 | Wire Wire Line 389 | 7000 3700 7000 3600 390 | Wire Wire Line 391 | 6900 5100 6900 3600 392 | Wire Wire Line 393 | 6800 6500 6800 3600 394 | Wire Wire Line 395 | 6700 3600 6700 6600 396 | NoConn ~ 8400 2800 397 | Wire Wire Line 398 | 8400 2900 8500 2900 399 | NoConn ~ 8400 3000 400 | Wire Wire Line 401 | 6300 2200 6300 2150 402 | Wire Wire Line 403 | 6600 3600 6600 6700 404 | Wire Wire Line 405 | 6400 2150 6400 2200 406 | Wire Wire Line 407 | 6500 2200 6500 2150 408 | NoConn ~ 6600 2200 409 | Wire Wire Line 410 | 6700 2200 6700 1650 411 | NoConn ~ 6800 2200 412 | NoConn ~ 6900 2200 413 | Wire Wire Line 414 | 7000 2200 7000 2150 415 | Wire Wire Line 416 | 7100 2200 7100 2050 417 | Wire Wire Line 418 | 7200 2200 7200 1950 419 | NoConn ~ 7300 2200 420 | Wire Wire Line 421 | 6500 3700 6500 3600 422 | Wire Wire Line 423 | 7400 2200 7400 1550 424 | Wire Wire Line 425 | 7500 2200 7500 2150 426 | Wire Wire Line 427 | 7600 1450 7600 2200 428 | Wire Wire Line 429 | 7700 2200 7700 1350 430 | Wire Wire Line 431 | 7800 2200 7800 1250 432 | Wire Wire Line 433 | 7900 1150 7900 2200 434 | Wire Wire Line 435 | 8000 2150 8000 2200 436 | Wire Wire Line 437 | 8100 1050 8100 2200 438 | Wire Wire Line 439 | 8200 950 8200 2200 440 | Wire Wire Line 441 | 6400 3600 6400 3900 442 | Wire Wire Line 443 | 8100 3600 8100 4600 444 | Wire Wire Line 445 | 8000 3700 8000 3600 446 | Wire Wire Line 447 | 7900 3600 7900 4500 448 | Wire Wire Line 449 | 7800 3600 7800 4900 450 | Wire Wire Line 451 | 7700 3600 7700 5300 452 | Wire Wire Line 453 | 7600 3600 7600 5700 454 | Wire Wire Line 455 | 7500 3700 7500 3600 456 | Wire Wire Line 457 | 7400 3600 7400 5900 458 | Wire Wire Line 459 | 7300 6100 7300 3600 460 | Wire Wire Line 461 | 7200 3600 7200 6400 462 | Wire Wire Line 463 | 6300 3800 6300 3600 464 | $Comp 465 | L MCU_RaspberryPi_and_Boards:Pico U1 466 | U 1 1 60650F3D 467 | P 7250 2900 468 | F 0 "U1" V 7296 3978 50 0000 L CNN 469 | F 1 "Pico" V 7205 3978 50 0000 L CNN 470 | F 2 "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" V 7250 2900 50 0001 C CNN 471 | F 3 "" H 7250 2900 50 0001 C CNN 472 | 1 7250 2900 473 | 0 -1 -1 0 474 | $EndComp 475 | Wire Wire Line 476 | 8200 4400 8200 3600 477 | Wire Wire Line 478 | 2000 4400 8200 4400 479 | Text Label 9500 4100 0 50 ~ 0 480 | GND 481 | Text Label 9500 4000 0 50 ~ 0 482 | PWR_LED 483 | Text Label 9500 3900 0 50 ~ 0 484 | FDD_LED 485 | Text Label 9500 3800 0 50 ~ 0 486 | HDD_LED 487 | $EndSCHEMATC 488 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/pcb-images/pcb-back.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/PCB-Amiga600Keyboard_USB_Pico/pcb-images/pcb-back.PNG -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/pcb-images/pcb-front.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/PCB-Amiga600Keyboard_USB_Pico/pcb-images/pcb-front.PNG -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/plots/A600Keyboard_USB_Pico-B_Cu.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1* 2 | G04 #@! TF.CreationDate,2021-07-09T21:47:44+10:00* 3 | G04 #@! TF.ProjectId,A600Keyboard_USB_Pico,41363030-4b65-4796-926f-6172645f5553,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Copper,L2,Bot* 6 | G04 #@! TF.FilePolarity,Positive* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.10)-1) date 2021-07-09 21:47:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 #@! TA.AperFunction,ComponentPad* 15 | %ADD10O,1.600000X1.600000*% 16 | G04 #@! TD* 17 | G04 #@! TA.AperFunction,ComponentPad* 18 | %ADD11R,1.600000X1.600000*% 19 | G04 #@! TD* 20 | G04 #@! TA.AperFunction,ComponentPad* 21 | %ADD12C,1.300000*% 22 | G04 #@! TD* 23 | G04 #@! TA.AperFunction,ComponentPad* 24 | %ADD13R,1.300000X1.300000*% 25 | G04 #@! TD* 26 | G04 #@! TA.AperFunction,ComponentPad* 27 | %ADD14O,1.700000X1.700000*% 28 | G04 #@! TD* 29 | G04 #@! TA.AperFunction,ComponentPad* 30 | %ADD15R,1.700000X1.700000*% 31 | G04 #@! TD* 32 | G04 #@! TA.AperFunction,ComponentPad* 33 | %ADD16C,1.600000*% 34 | G04 #@! TD* 35 | G04 #@! TA.AperFunction,Conductor* 36 | %ADD17C,0.250000*% 37 | G04 #@! TD* 38 | G04 #@! TA.AperFunction,Conductor* 39 | %ADD18C,0.254000*% 40 | G04 #@! TD* 41 | G04 #@! TA.AperFunction,Conductor* 42 | %ADD19C,0.100000*% 43 | G04 #@! TD* 44 | G04 APERTURE END LIST* 45 | D10* 46 | X178308000Y-94742000D03* 47 | X170688000Y-115062000D03* 48 | X178308000Y-97282000D03* 49 | X170688000Y-112522000D03* 50 | X178308000Y-99822000D03* 51 | X170688000Y-109982000D03* 52 | X178308000Y-102362000D03* 53 | X170688000Y-107442000D03* 54 | X178308000Y-104902000D03* 55 | X170688000Y-104902000D03* 56 | X178308000Y-107442000D03* 57 | X170688000Y-102362000D03* 58 | X178308000Y-109982000D03* 59 | X170688000Y-99822000D03* 60 | X178308000Y-112522000D03* 61 | X170688000Y-97282000D03* 62 | X178308000Y-115062000D03* 63 | D11* 64 | X170688000Y-94742000D03* 65 | D12* 66 | X182706000Y-86739999D03* 67 | X187706000Y-87989999D03* 68 | X182706000Y-89239999D03* 69 | X187706000Y-90489999D03* 70 | X182706000Y-91739999D03* 71 | X187706000Y-92989999D03* 72 | X182706000Y-94239999D03* 73 | X187706000Y-95490000D03* 74 | X182706000Y-96740000D03* 75 | X187706000Y-97990000D03* 76 | X182706000Y-99240000D03* 77 | X187706000Y-100490000D03* 78 | X182706000Y-101740000D03* 79 | X187706000Y-102990000D03* 80 | X182706000Y-104240000D03* 81 | X187706000Y-105490000D03* 82 | X182706000Y-106740000D03* 83 | X187706000Y-107990000D03* 84 | X182706000Y-109240000D03* 85 | D13* 86 | X187706000Y-110490000D03* 87 | D12* 88 | X187706000Y-85489999D03* 89 | X182706000Y-84239999D03* 90 | X187706000Y-82989999D03* 91 | X182706000Y-81739999D03* 92 | X187706000Y-80489999D03* 93 | X182706000Y-79239999D03* 94 | X187706000Y-77989999D03* 95 | X182706000Y-76739999D03* 96 | X187706000Y-75489999D03* 97 | X182706000Y-74239999D03* 98 | D14* 99 | X154940000Y-114011000D03* 100 | D15* 101 | X152400000Y-114011000D03* 102 | D14* 103 | X149860000Y-114011000D03* 104 | X161290000Y-65981000D03* 105 | X161290000Y-68521000D03* 106 | D15* 107 | X161290000Y-71061000D03* 108 | D14* 109 | X161290000Y-73601000D03* 110 | X161290000Y-76141000D03* 111 | X161290000Y-78681000D03* 112 | X161290000Y-81221000D03* 113 | D15* 114 | X161290000Y-83761000D03* 115 | D14* 116 | X161290000Y-86301000D03* 117 | X161290000Y-88841000D03* 118 | X161290000Y-91381000D03* 119 | X161290000Y-93921000D03* 120 | D15* 121 | X161290000Y-96461000D03* 122 | D14* 123 | X161290000Y-99001000D03* 124 | X161290000Y-101541000D03* 125 | X161290000Y-104081000D03* 126 | X161290000Y-106621000D03* 127 | D15* 128 | X161290000Y-109161000D03* 129 | D14* 130 | X161290000Y-111701000D03* 131 | X161290000Y-114241000D03* 132 | X143510000Y-114241000D03* 133 | X143510000Y-111701000D03* 134 | D15* 135 | X143510000Y-109161000D03* 136 | D14* 137 | X143510000Y-106621000D03* 138 | X143510000Y-104081000D03* 139 | X143510000Y-101541000D03* 140 | X143510000Y-99001000D03* 141 | D15* 142 | X143510000Y-96461000D03* 143 | D14* 144 | X143510000Y-93921000D03* 145 | X143510000Y-91381000D03* 146 | X143510000Y-88841000D03* 147 | X143510000Y-86301000D03* 148 | D15* 149 | X143510000Y-83761000D03* 150 | D14* 151 | X143510000Y-81221000D03* 152 | X143510000Y-78681000D03* 153 | X143510000Y-76141000D03* 154 | X143510000Y-73601000D03* 155 | D15* 156 | X143510000Y-71061000D03* 157 | D14* 158 | X143510000Y-68521000D03* 159 | X143510000Y-65981000D03* 160 | D10* 161 | X179070000Y-84836000D03* 162 | D16* 163 | X168910000Y-84836000D03* 164 | D10* 165 | X179070000Y-89408000D03* 166 | D16* 167 | X168910000Y-89408000D03* 168 | D14* 169 | X177800000Y-79756000D03* 170 | X175260000Y-79756000D03* 171 | X172720000Y-79756000D03* 172 | D15* 173 | X170180000Y-79756000D03* 174 | D17* 175 | X182706000Y-87437002D02* 176 | X182706000Y-86485999D01* 177 | X179610001Y-90533001D02* 178 | X182706000Y-87437002D01* 179 | X172711997Y-90533001D02* 180 | X179610001Y-90533001D01* 181 | X163068997Y-100176001D02* 182 | X172711997Y-90533001D01* 183 | X160628001Y-100176001D02* 184 | X163068997Y-100176001D01* 185 | X159453000Y-99001000D02* 186 | X160628001Y-100176001D01* 187 | X143510000Y-99001000D02* 188 | X159453000Y-99001000D01* 189 | X182398999Y-88985999D02* 190 | X182706000Y-88985999D01* 191 | X175517997Y-95867001D02* 192 | X182398999Y-88985999D01* 193 | X170437997Y-95867001D02* 194 | X175517997Y-95867001D01* 195 | X164763998Y-101541000D02* 196 | X170437997Y-95867001D01* 197 | X161290000Y-101541000D02* 198 | X164763998Y-101541000D01* 199 | X178308000Y-109982000D02* 200 | X178308000Y-109440998D01* 201 | X188174001Y-96465001D02* 202 | X188681001Y-95958001D01* 203 | X187787997Y-96465001D02* 204 | X188174001Y-96465001D01* 205 | X186730999Y-97521999D02* 206 | X187787997Y-96465001D01* 207 | X186730999Y-101658003D02* 208 | X186730999Y-97521999D01* 209 | X183174001Y-105215001D02* 210 | X186730999Y-101658003D01* 211 | X188681001Y-95958001D02* 212 | X188681001Y-91465000D01* 213 | X182787997Y-105215001D02* 214 | X183174001Y-105215001D01* 215 | X188681001Y-91465000D02* 216 | X187706000Y-90489999D01* 217 | X180574999Y-107427999D02* 218 | X182787997Y-105215001D01* 219 | X180574999Y-107715001D02* 220 | X180574999Y-107427999D01* 221 | X178308000Y-109982000D02* 222 | X180574999Y-107715001D01* 223 | X178057997Y-95867001D02* 224 | X178848001Y-95867001D01* 225 | X182706000Y-92009002D02* 226 | X182706000Y-91485999D01* 227 | X175517997Y-98407001D02* 228 | X178057997Y-95867001D01* 229 | X166128997Y-102716001D02* 230 | X170437997Y-98407001D01* 231 | X178848001Y-95867001D02* 232 | X182706000Y-92009002D01* 233 | X170437997Y-98407001D02* 234 | X175517997Y-98407001D01* 235 | X144685001Y-102716001D02* 236 | X166128997Y-102716001D01* 237 | X143510000Y-101541000D02* 238 | X144685001Y-102716001D01* 239 | X185480999Y-95215000D02* 240 | X187706000Y-92989999D01* 241 | X179595997Y-98407001D02* 242 | X182787998Y-95215000D01* 243 | X173614407Y-100947001D02* 244 | X176154407Y-98407001D01* 245 | X176154407Y-98407001D02* 246 | X179595997Y-98407001D01* 247 | X170147999Y-100947001D02* 248 | X173614407Y-100947001D01* 249 | X167014000Y-104081000D02* 250 | X170147999Y-100947001D01* 251 | X182787998Y-95215000D02* 252 | X185480999Y-95215000D01* 253 | X161290000Y-104081000D02* 254 | X167014000Y-104081000D01* 255 | X187706000Y-95429002D02* 256 | X187706000Y-95236000D01* 257 | X183120589Y-100215001D02* 258 | X187706000Y-95629590D01* 259 | X182787997Y-100215001D02* 260 | X183120589Y-100215001D01* 261 | X187706000Y-95629590D02* 262 | X187706000Y-95490000D01* 263 | X179515997Y-103487001D02* 264 | X182787997Y-100215001D01* 265 | X175517997Y-106027001D02* 266 | X178057997Y-103487001D01* 267 | X170437997Y-106027001D02* 268 | X175517997Y-106027001D01* 269 | X178057997Y-103487001D02* 270 | X179515997Y-103487001D01* 271 | X169843998Y-106621000D02* 272 | X170437997Y-106027001D01* 273 | X161290000Y-106621000D02* 274 | X169843998Y-106621000D01* 275 | X182706000Y-97089002D02* 276 | X182706000Y-96486000D01* 277 | X178848001Y-100947001D02* 278 | X182706000Y-97089002D01* 279 | X178057997Y-100947001D02* 280 | X178848001Y-100947001D01* 281 | X168668997Y-105256001D02* 282 | X170437997Y-103487001D01* 283 | X170437997Y-103487001D02* 284 | X175517997Y-103487001D01* 285 | X160628001Y-105256001D02* 286 | X168668997Y-105256001D01* 287 | X159453000Y-104081000D02* 288 | X160628001Y-105256001D01* 289 | X175517997Y-103487001D02* 290 | X178057997Y-100947001D01* 291 | X143510000Y-104081000D02* 292 | X159453000Y-104081000D01* 293 | X178848001Y-106027001D02* 294 | X182706000Y-102169002D01* 295 | X178057997Y-106027001D02* 296 | X178848001Y-106027001D01* 297 | X175517997Y-108567001D02* 298 | X178057997Y-106027001D01* 299 | X182706000Y-102169002D02* 300 | X182706000Y-101486000D01* 301 | X170147999Y-108567001D02* 302 | X175517997Y-108567001D01* 303 | X169376999Y-107796001D02* 304 | X170147999Y-108567001D01* 305 | X144685001Y-107796001D02* 306 | X169376999Y-107796001D01* 307 | X143510000Y-106621000D02* 308 | X144685001Y-107796001D01* 309 | X182706000Y-103986000D02* 310 | X180594000Y-106098000D01* 311 | X179652000Y-106098000D02* 312 | X178308000Y-107442000D01* 313 | X180594000Y-106098000D02* 314 | X179652000Y-106098000D01* 315 | X180730998Y-85961001D02* 316 | X182706000Y-83985999D01* 317 | X176011177Y-85961001D02* 318 | X180730998Y-85961001D01* 319 | X166876177Y-95096001D02* 320 | X176011177Y-85961001D01* 321 | X144685001Y-95096001D02* 322 | X166876177Y-95096001D01* 323 | X143510000Y-93921000D02* 324 | X144685001Y-95096001D01* 325 | X161290000Y-99001000D02* 326 | X161739000Y-99001000D01* 327 | X185480999Y-85215000D02* 328 | X187706000Y-82989999D01* 329 | X180372997Y-87630000D02* 330 | X182787997Y-85215000D01* 331 | X174978588Y-87630000D02* 332 | X180372997Y-87630000D01* 333 | X163607588Y-99001000D02* 334 | X174978588Y-87630000D01* 335 | X182787997Y-85215000D02* 336 | X185480999Y-85215000D01* 337 | X161290000Y-99001000D02* 338 | X163607588Y-99001000D01* 339 | X144874999Y-92745999D02* 340 | X165572001Y-92745999D01* 341 | X143510000Y-91381000D02* 342 | X144874999Y-92745999D01* 343 | X169005358Y-91694000D02* 344 | X179213359Y-81485999D01* 345 | X179213359Y-81485999D02* 346 | X182706000Y-81485999D01* 347 | X166624000Y-91694000D02* 348 | X169005358Y-91694000D01* 349 | X165572001Y-92745999D02* 350 | X166624000Y-91694000D01* 351 | X167414768Y-93921000D02* 352 | X178324770Y-83010998D01* 353 | X161290000Y-93921000D02* 354 | X167414768Y-93921000D01* 355 | X184931001Y-83010998D02* 356 | X187706000Y-80235999D01* 357 | X178324770Y-83010998D02* 358 | X184931001Y-83010998D01* 359 | X180440539Y-78985999D02* 360 | X182706000Y-78985999D01* 361 | X171950537Y-87476001D02* 362 | X180440539Y-78985999D01* 363 | X144685001Y-87476001D02* 364 | X171950537Y-87476001D01* 365 | X143510000Y-86301000D02* 366 | X144685001Y-87476001D01* 367 | X185480999Y-80215000D02* 368 | X187706000Y-77989999D01* 369 | X179847948Y-80215000D02* 370 | X185480999Y-80215000D01* 371 | X169529947Y-90533001D02* 372 | X179847948Y-80215000D01* 373 | X168369999Y-90533001D02* 374 | X169529947Y-90533001D01* 375 | X167852999Y-90016001D02* 376 | X168369999Y-90533001D01* 377 | X144685001Y-90016001D02* 378 | X167852999Y-90016001D01* 379 | X143510000Y-88841000D02* 380 | X144685001Y-90016001D01* 381 | X181686000Y-77505999D02* 382 | X182706000Y-76485999D01* 383 | X144685001Y-77505999D02* 384 | X181686000Y-77505999D01* 385 | X143510000Y-78681000D02* 386 | X144685001Y-77505999D01* 387 | X187436000Y-74965999D02* 388 | X187706000Y-75235999D01* 389 | X181988998Y-74965999D02* 390 | X182512998Y-75489999D01* 391 | X144685001Y-74965999D02* 392 | X181988998Y-74965999D01* 393 | X182512998Y-75489999D02* 394 | X187706000Y-75489999D01* 395 | X143510000Y-76141000D02* 396 | X144685001Y-74965999D01* 397 | X181146000Y-72425999D02* 398 | X182706000Y-73985999D01* 399 | X144685001Y-72425999D02* 400 | X181146000Y-72425999D01* 401 | X143510000Y-73601000D02* 402 | X144685001Y-72425999D01* 403 | X183681001Y-93264998D02* 404 | X182706000Y-94239999D01* 405 | X183681001Y-88071996D02* 406 | X183681001Y-93264998D01* 407 | X187237999Y-84514998D02* 408 | X183681001Y-88071996D01* 409 | X188027002Y-84514998D02* 410 | X187237999Y-84514998D01* 411 | X188681001Y-83860999D02* 412 | X188027002Y-84514998D01* 413 | X188681001Y-75021998D02* 414 | X188681001Y-83860999D01* 415 | X183545002Y-69885999D02* 416 | X188681001Y-75021998D01* 417 | X160179999Y-69885999D02* 418 | X183545002Y-69885999D01* 419 | X159849997Y-70216001D02* 420 | X160179999Y-69885999D01* 421 | X149458999Y-70216001D02* 422 | X159849997Y-70216001D01* 423 | X149128997Y-69885999D02* 424 | X149458999Y-70216001D01* 425 | X142334999Y-69950999D02* 426 | X142399999Y-69885999D01* 427 | X142399999Y-69885999D02* 428 | X149128997Y-69885999D01* 429 | X142334999Y-80045999D02* 430 | X142334999Y-69950999D01* 431 | X143510000Y-81221000D02* 432 | X142334999Y-80045999D01* 433 | D18* 434 | X177193363Y-105816759D02* 435 | X177193400Y-105816796D01* 436 | X175203196Y-107807001D01* 437 | X172075063Y-107807001D01* 438 | X172079904Y-107791039D01* 439 | X171957915Y-107569000D01* 440 | X170815000Y-107569000D01* 441 | X170815000Y-107589000D01* 442 | X170561000Y-107589000D01* 443 | X170561000Y-107569000D01* 444 | X170541000Y-107569000D01* 445 | X170541000Y-107315000D01* 446 | X170561000Y-107315000D01* 447 | X170561000Y-107295000D01* 448 | X170815000Y-107295000D01* 449 | X170815000Y-107315000D01* 450 | X171957915Y-107315000D01* 451 | X172079904Y-107092961D01* 452 | X172039246Y-106958913D01* 453 | X171957993Y-106787001D01* 454 | X175480675Y-106787001D01* 455 | X175517997Y-106790677D01* 456 | X175555319Y-106787001D01* 457 | X175555330Y-106787001D01* 458 | X175666983Y-106776004D01* 459 | X175810244Y-106732547D01* 460 | X175942273Y-106661975D01* 461 | X176057998Y-106567002D01* 462 | X176081801Y-106537998D01* 463 | X177037022Y-105582778D01* 464 | X177193363Y-105816759D01* 465 | G04 #@! TA.AperFunction,Conductor* 466 | D19* 467 | G36* 468 | X177193363Y-105816759D02* 469 | G01* 470 | X177193400Y-105816796D01* 471 | X175203196Y-107807001D01* 472 | X172075063Y-107807001D01* 473 | X172079904Y-107791039D01* 474 | X171957915Y-107569000D01* 475 | X170815000Y-107569000D01* 476 | X170815000Y-107589000D01* 477 | X170561000Y-107589000D01* 478 | X170561000Y-107569000D01* 479 | X170541000Y-107569000D01* 480 | X170541000Y-107315000D01* 481 | X170561000Y-107315000D01* 482 | X170561000Y-107295000D01* 483 | X170815000Y-107295000D01* 484 | X170815000Y-107315000D01* 485 | X171957915Y-107315000D01* 486 | X172079904Y-107092961D01* 487 | X172039246Y-106958913D01* 488 | X171957993Y-106787001D01* 489 | X175480675Y-106787001D01* 490 | X175517997Y-106790677D01* 491 | X175555319Y-106787001D01* 492 | X175555330Y-106787001D01* 493 | X175666983Y-106776004D01* 494 | X175810244Y-106732547D01* 495 | X175942273Y-106661975D01* 496 | X176057998Y-106567002D01* 497 | X176081801Y-106537998D01* 498 | X177037022Y-105582778D01* 499 | X177193363Y-105816759D01* 500 | G37* 501 | G04 #@! TD.AperFunction* 502 | D18* 503 | X178435000Y-94615000D02* 504 | X178455000Y-94615000D01* 505 | X178455000Y-94869000D01* 506 | X178435000Y-94869000D01* 507 | X178435000Y-94889000D01* 508 | X178181000Y-94889000D01* 509 | X178181000Y-94869000D01* 510 | X178161000Y-94869000D01* 511 | X178161000Y-94615000D01* 512 | X178181000Y-94615000D01* 513 | X178181000Y-94595000D01* 514 | X178435000Y-94595000D01* 515 | X178435000Y-94615000D01* 516 | G04 #@! TA.AperFunction,Conductor* 517 | D19* 518 | G36* 519 | X178435000Y-94615000D02* 520 | G01* 521 | X178455000Y-94615000D01* 522 | X178455000Y-94869000D01* 523 | X178435000Y-94869000D01* 524 | X178435000Y-94889000D01* 525 | X178181000Y-94889000D01* 526 | X178181000Y-94869000D01* 527 | X178161000Y-94869000D01* 528 | X178161000Y-94615000D01* 529 | X178181000Y-94615000D01* 530 | X178181000Y-94595000D01* 531 | X178435000Y-94595000D01* 532 | X178435000Y-94615000D01* 533 | G37* 534 | G04 #@! TD.AperFunction* 535 | D18* 536 | X178006481Y-88444586D02* 537 | X177838963Y-88670580D01* 538 | X177718754Y-88924913D01* 539 | X177678096Y-89058961D01* 540 | X177800085Y-89281000D01* 541 | X178943000Y-89281000D01* 542 | X178943000Y-89261000D01* 543 | X179197000Y-89261000D01* 544 | X179197000Y-89281000D01* 545 | X179217000Y-89281000D01* 546 | X179217000Y-89535000D01* 547 | X179197000Y-89535000D01* 548 | X179197000Y-89555000D01* 549 | X178943000Y-89555000D01* 550 | X178943000Y-89535000D01* 551 | X177800085Y-89535000D01* 552 | X177678096Y-89757039D01* 553 | X177682937Y-89773001D01* 554 | X173910390Y-89773001D01* 555 | X175293391Y-88390000D01* 556 | X178066676Y-88390000D01* 557 | X178006481Y-88444586D01* 558 | G04 #@! TA.AperFunction,Conductor* 559 | D19* 560 | G36* 561 | X178006481Y-88444586D02* 562 | G01* 563 | X177838963Y-88670580D01* 564 | X177718754Y-88924913D01* 565 | X177678096Y-89058961D01* 566 | X177800085Y-89281000D01* 567 | X178943000Y-89281000D01* 568 | X178943000Y-89261000D01* 569 | X179197000Y-89261000D01* 570 | X179197000Y-89281000D01* 571 | X179217000Y-89281000D01* 572 | X179217000Y-89535000D01* 573 | X179197000Y-89535000D01* 574 | X179197000Y-89555000D01* 575 | X178943000Y-89555000D01* 576 | X178943000Y-89535000D01* 577 | X177800085Y-89535000D01* 578 | X177678096Y-89757039D01* 579 | X177682937Y-89773001D01* 580 | X173910390Y-89773001D01* 581 | X175293391Y-88390000D01* 582 | X178066676Y-88390000D01* 583 | X178006481Y-88444586D01* 584 | G37* 585 | G04 #@! TD.AperFunction* 586 | D18* 587 | X180149166Y-78280188D02* 588 | X180148292Y-78280453D01* 589 | X180016262Y-78351025D01* 590 | X179986485Y-78375463D01* 591 | X179900538Y-78445998D01* 592 | X179876740Y-78474996D01* 593 | X179169635Y-79182101D01* 594 | X179115990Y-79052589D01* 595 | X178953475Y-78809368D01* 596 | X178746632Y-78602525D01* 597 | X178503411Y-78440010D01* 598 | X178233158Y-78328068D01* 599 | X177946260Y-78271000D01* 600 | X177653740Y-78271000D01* 601 | X177366842Y-78328068D01* 602 | X177096589Y-78440010D01* 603 | X176853368Y-78602525D01* 604 | X176646525Y-78809368D01* 605 | X176530000Y-78983760D01* 606 | X176413475Y-78809368D01* 607 | X176206632Y-78602525D01* 608 | X175963411Y-78440010D01* 609 | X175693158Y-78328068D01* 610 | X175406260Y-78271000D01* 611 | X175113740Y-78271000D01* 612 | X174826842Y-78328068D01* 613 | X174556589Y-78440010D01* 614 | X174313368Y-78602525D01* 615 | X174106525Y-78809368D01* 616 | X173984805Y-78991534D01* 617 | X173915178Y-78874645D01* 618 | X173720269Y-78658412D01* 619 | X173486920Y-78484359D01* 620 | X173224099Y-78359175D01* 621 | X173076890Y-78314524D01* 622 | X172847000Y-78435845D01* 623 | X172847000Y-79629000D01* 624 | X172867000Y-79629000D01* 625 | X172867000Y-79883000D01* 626 | X172847000Y-79883000D01* 627 | X172847000Y-81076155D01* 628 | X173076890Y-81197476D01* 629 | X173224099Y-81152825D01* 630 | X173486920Y-81027641D01* 631 | X173720269Y-80853588D01* 632 | X173915178Y-80637355D01* 633 | X173984805Y-80520466D01* 634 | X174106525Y-80702632D01* 635 | X174313368Y-80909475D01* 636 | X174556589Y-81071990D01* 637 | X174826842Y-81183932D01* 638 | X175113740Y-81241000D01* 639 | X175406260Y-81241000D01* 640 | X175693158Y-81183932D01* 641 | X175963411Y-81071990D01* 642 | X176206632Y-80909475D01* 643 | X176413475Y-80702632D01* 644 | X176530000Y-80528240D01* 645 | X176646525Y-80702632D01* 646 | X176853368Y-80909475D01* 647 | X177096589Y-81071990D01* 648 | X177226101Y-81125635D01* 649 | X171635736Y-86716001D01* 650 | X162721544Y-86716001D01* 651 | X162775000Y-86447260D01* 652 | X162775000Y-86154740D01* 653 | X162717932Y-85867842D01* 654 | X162605990Y-85597589D01* 655 | X162443475Y-85354368D01* 656 | X162311620Y-85222513D01* 657 | X162384180Y-85200502D01* 658 | X162494494Y-85141537D01* 659 | X162591185Y-85062185D01* 660 | X162670537Y-84965494D01* 661 | X162729502Y-84855180D01* 662 | X162765812Y-84735482D01* 663 | X162769831Y-84694665D01* 664 | X167475000Y-84694665D01* 665 | X167475000Y-84977335D01* 666 | X167530147Y-85254574D01* 667 | X167638320Y-85515727D01* 668 | X167795363Y-85750759D01* 669 | X167995241Y-85950637D01* 670 | X168230273Y-86107680D01* 671 | X168491426Y-86215853D01* 672 | X168768665Y-86271000D01* 673 | X169051335Y-86271000D01* 674 | X169328574Y-86215853D01* 675 | X169589727Y-86107680D01* 676 | X169824759Y-85950637D01* 677 | X170024637Y-85750759D01* 678 | X170181680Y-85515727D01* 679 | X170289853Y-85254574D01* 680 | X170345000Y-84977335D01* 681 | X170345000Y-84694665D01* 682 | X170289853Y-84417426D01* 683 | X170181680Y-84156273D01* 684 | X170024637Y-83921241D01* 685 | X169824759Y-83721363D01* 686 | X169589727Y-83564320D01* 687 | X169328574Y-83456147D01* 688 | X169051335Y-83401000D01* 689 | X168768665Y-83401000D01* 690 | X168491426Y-83456147D01* 691 | X168230273Y-83564320D01* 692 | X167995241Y-83721363D01* 693 | X167795363Y-83921241D01* 694 | X167638320Y-84156273D01* 695 | X167530147Y-84417426D01* 696 | X167475000Y-84694665D01* 697 | X162769831Y-84694665D01* 698 | X162778072Y-84611000D01* 699 | X162778072Y-82911000D01* 700 | X162765812Y-82786518D01* 701 | X162729502Y-82666820D01* 702 | X162670537Y-82556506D01* 703 | X162591185Y-82459815D01* 704 | X162494494Y-82380463D01* 705 | X162384180Y-82321498D01* 706 | X162311620Y-82299487D01* 707 | X162443475Y-82167632D01* 708 | X162605990Y-81924411D01* 709 | X162717932Y-81654158D01* 710 | X162775000Y-81367260D01* 711 | X162775000Y-81074740D01* 712 | X162717932Y-80787842D01* 713 | X162605990Y-80517589D01* 714 | X162443475Y-80274368D01* 715 | X162236632Y-80067525D01* 716 | X162062240Y-79951000D01* 717 | X162236632Y-79834475D01* 718 | X162443475Y-79627632D01* 719 | X162605990Y-79384411D01* 720 | X162717932Y-79114158D01* 721 | X162759337Y-78906000D01* 722 | X168691928Y-78906000D01* 723 | X168691928Y-80606000D01* 724 | X168704188Y-80730482D01* 725 | X168740498Y-80850180D01* 726 | X168799463Y-80960494D01* 727 | X168878815Y-81057185D01* 728 | X168975506Y-81136537D01* 729 | X169085820Y-81195502D01* 730 | X169205518Y-81231812D01* 731 | X169330000Y-81244072D01* 732 | X171030000Y-81244072D01* 733 | X171154482Y-81231812D01* 734 | X171274180Y-81195502D01* 735 | X171384494Y-81136537D01* 736 | X171481185Y-81057185D01* 737 | X171560537Y-80960494D01* 738 | X171619502Y-80850180D01* 739 | X171643966Y-80769534D01* 740 | X171719731Y-80853588D01* 741 | X171953080Y-81027641D01* 742 | X172215901Y-81152825D01* 743 | X172363110Y-81197476D01* 744 | X172593000Y-81076155D01* 745 | X172593000Y-79883000D01* 746 | X172573000Y-79883000D01* 747 | X172573000Y-79629000D01* 748 | X172593000Y-79629000D01* 749 | X172593000Y-78435845D01* 750 | X172363110Y-78314524D01* 751 | X172215901Y-78359175D01* 752 | X171953080Y-78484359D01* 753 | X171719731Y-78658412D01* 754 | X171643966Y-78742466D01* 755 | X171619502Y-78661820D01* 756 | X171560537Y-78551506D01* 757 | X171481185Y-78454815D01* 758 | X171384494Y-78375463D01* 759 | X171274180Y-78316498D01* 760 | X171154482Y-78280188D01* 761 | X171030000Y-78267928D01* 762 | X169330000Y-78267928D01* 763 | X169205518Y-78280188D01* 764 | X169085820Y-78316498D01* 765 | X168975506Y-78375463D01* 766 | X168878815Y-78454815D01* 767 | X168799463Y-78551506D01* 768 | X168740498Y-78661820D01* 769 | X168704188Y-78781518D01* 770 | X168691928Y-78906000D01* 771 | X162759337Y-78906000D01* 772 | X162775000Y-78827260D01* 773 | X162775000Y-78534740D01* 774 | X162721544Y-78265999D01* 775 | X180195941Y-78265999D01* 776 | X180149166Y-78280188D01* 777 | G04 #@! TA.AperFunction,Conductor* 778 | D19* 779 | G36* 780 | X180149166Y-78280188D02* 781 | G01* 782 | X180148292Y-78280453D01* 783 | X180016262Y-78351025D01* 784 | X179986485Y-78375463D01* 785 | X179900538Y-78445998D01* 786 | X179876740Y-78474996D01* 787 | X179169635Y-79182101D01* 788 | X179115990Y-79052589D01* 789 | X178953475Y-78809368D01* 790 | X178746632Y-78602525D01* 791 | X178503411Y-78440010D01* 792 | X178233158Y-78328068D01* 793 | X177946260Y-78271000D01* 794 | X177653740Y-78271000D01* 795 | X177366842Y-78328068D01* 796 | X177096589Y-78440010D01* 797 | X176853368Y-78602525D01* 798 | X176646525Y-78809368D01* 799 | X176530000Y-78983760D01* 800 | X176413475Y-78809368D01* 801 | X176206632Y-78602525D01* 802 | X175963411Y-78440010D01* 803 | X175693158Y-78328068D01* 804 | X175406260Y-78271000D01* 805 | X175113740Y-78271000D01* 806 | X174826842Y-78328068D01* 807 | X174556589Y-78440010D01* 808 | X174313368Y-78602525D01* 809 | X174106525Y-78809368D01* 810 | X173984805Y-78991534D01* 811 | X173915178Y-78874645D01* 812 | X173720269Y-78658412D01* 813 | X173486920Y-78484359D01* 814 | X173224099Y-78359175D01* 815 | X173076890Y-78314524D01* 816 | X172847000Y-78435845D01* 817 | X172847000Y-79629000D01* 818 | X172867000Y-79629000D01* 819 | X172867000Y-79883000D01* 820 | X172847000Y-79883000D01* 821 | X172847000Y-81076155D01* 822 | X173076890Y-81197476D01* 823 | X173224099Y-81152825D01* 824 | X173486920Y-81027641D01* 825 | X173720269Y-80853588D01* 826 | X173915178Y-80637355D01* 827 | X173984805Y-80520466D01* 828 | X174106525Y-80702632D01* 829 | X174313368Y-80909475D01* 830 | X174556589Y-81071990D01* 831 | X174826842Y-81183932D01* 832 | X175113740Y-81241000D01* 833 | X175406260Y-81241000D01* 834 | X175693158Y-81183932D01* 835 | X175963411Y-81071990D01* 836 | X176206632Y-80909475D01* 837 | X176413475Y-80702632D01* 838 | X176530000Y-80528240D01* 839 | X176646525Y-80702632D01* 840 | X176853368Y-80909475D01* 841 | X177096589Y-81071990D01* 842 | X177226101Y-81125635D01* 843 | X171635736Y-86716001D01* 844 | X162721544Y-86716001D01* 845 | X162775000Y-86447260D01* 846 | X162775000Y-86154740D01* 847 | X162717932Y-85867842D01* 848 | X162605990Y-85597589D01* 849 | X162443475Y-85354368D01* 850 | X162311620Y-85222513D01* 851 | X162384180Y-85200502D01* 852 | X162494494Y-85141537D01* 853 | X162591185Y-85062185D01* 854 | X162670537Y-84965494D01* 855 | X162729502Y-84855180D01* 856 | X162765812Y-84735482D01* 857 | X162769831Y-84694665D01* 858 | X167475000Y-84694665D01* 859 | X167475000Y-84977335D01* 860 | X167530147Y-85254574D01* 861 | X167638320Y-85515727D01* 862 | X167795363Y-85750759D01* 863 | X167995241Y-85950637D01* 864 | X168230273Y-86107680D01* 865 | X168491426Y-86215853D01* 866 | X168768665Y-86271000D01* 867 | X169051335Y-86271000D01* 868 | X169328574Y-86215853D01* 869 | X169589727Y-86107680D01* 870 | X169824759Y-85950637D01* 871 | X170024637Y-85750759D01* 872 | X170181680Y-85515727D01* 873 | X170289853Y-85254574D01* 874 | X170345000Y-84977335D01* 875 | X170345000Y-84694665D01* 876 | X170289853Y-84417426D01* 877 | X170181680Y-84156273D01* 878 | X170024637Y-83921241D01* 879 | X169824759Y-83721363D01* 880 | X169589727Y-83564320D01* 881 | X169328574Y-83456147D01* 882 | X169051335Y-83401000D01* 883 | X168768665Y-83401000D01* 884 | X168491426Y-83456147D01* 885 | X168230273Y-83564320D01* 886 | X167995241Y-83721363D01* 887 | X167795363Y-83921241D01* 888 | X167638320Y-84156273D01* 889 | X167530147Y-84417426D01* 890 | X167475000Y-84694665D01* 891 | X162769831Y-84694665D01* 892 | X162778072Y-84611000D01* 893 | X162778072Y-82911000D01* 894 | X162765812Y-82786518D01* 895 | X162729502Y-82666820D01* 896 | X162670537Y-82556506D01* 897 | X162591185Y-82459815D01* 898 | X162494494Y-82380463D01* 899 | X162384180Y-82321498D01* 900 | X162311620Y-82299487D01* 901 | X162443475Y-82167632D01* 902 | X162605990Y-81924411D01* 903 | X162717932Y-81654158D01* 904 | X162775000Y-81367260D01* 905 | X162775000Y-81074740D01* 906 | X162717932Y-80787842D01* 907 | X162605990Y-80517589D01* 908 | X162443475Y-80274368D01* 909 | X162236632Y-80067525D01* 910 | X162062240Y-79951000D01* 911 | X162236632Y-79834475D01* 912 | X162443475Y-79627632D01* 913 | X162605990Y-79384411D01* 914 | X162717932Y-79114158D01* 915 | X162759337Y-78906000D01* 916 | X168691928Y-78906000D01* 917 | X168691928Y-80606000D01* 918 | X168704188Y-80730482D01* 919 | X168740498Y-80850180D01* 920 | X168799463Y-80960494D01* 921 | X168878815Y-81057185D01* 922 | X168975506Y-81136537D01* 923 | X169085820Y-81195502D01* 924 | X169205518Y-81231812D01* 925 | X169330000Y-81244072D01* 926 | X171030000Y-81244072D01* 927 | X171154482Y-81231812D01* 928 | X171274180Y-81195502D01* 929 | X171384494Y-81136537D01* 930 | X171481185Y-81057185D01* 931 | X171560537Y-80960494D01* 932 | X171619502Y-80850180D01* 933 | X171643966Y-80769534D01* 934 | X171719731Y-80853588D01* 935 | X171953080Y-81027641D01* 936 | X172215901Y-81152825D01* 937 | X172363110Y-81197476D01* 938 | X172593000Y-81076155D01* 939 | X172593000Y-79883000D01* 940 | X172573000Y-79883000D01* 941 | X172573000Y-79629000D01* 942 | X172593000Y-79629000D01* 943 | X172593000Y-78435845D01* 944 | X172363110Y-78314524D01* 945 | X172215901Y-78359175D01* 946 | X171953080Y-78484359D01* 947 | X171719731Y-78658412D01* 948 | X171643966Y-78742466D01* 949 | X171619502Y-78661820D01* 950 | X171560537Y-78551506D01* 951 | X171481185Y-78454815D01* 952 | X171384494Y-78375463D01* 953 | X171274180Y-78316498D01* 954 | X171154482Y-78280188D01* 955 | X171030000Y-78267928D01* 956 | X169330000Y-78267928D01* 957 | X169205518Y-78280188D01* 958 | X169085820Y-78316498D01* 959 | X168975506Y-78375463D01* 960 | X168878815Y-78454815D01* 961 | X168799463Y-78551506D01* 962 | X168740498Y-78661820D01* 963 | X168704188Y-78781518D01* 964 | X168691928Y-78906000D01* 965 | X162759337Y-78906000D01* 966 | X162775000Y-78827260D01* 967 | X162775000Y-78534740D01* 968 | X162721544Y-78265999D01* 969 | X180195941Y-78265999D01* 970 | X180149166Y-78280188D01* 971 | G37* 972 | G04 #@! TD.AperFunction* 973 | D18* 974 | X181470381Y-83865178D02* 975 | X181421000Y-84113438D01* 976 | X181421000Y-84196197D01* 977 | X180451357Y-85165841D01* 978 | X180339915Y-84963000D01* 979 | X179197000Y-84963000D01* 980 | X179197000Y-84983000D01* 981 | X178943000Y-84983000D01* 982 | X178943000Y-84963000D01* 983 | X177800085Y-84963000D01* 984 | X177678096Y-85185039D01* 985 | X177682937Y-85201001D01* 986 | X177209569Y-85201001D01* 987 | X177765152Y-84645417D01* 988 | X177800085Y-84709000D01* 989 | X178943000Y-84709000D01* 990 | X178943000Y-84689000D01* 991 | X179197000Y-84689000D01* 992 | X179197000Y-84709000D01* 993 | X180339915Y-84709000D01* 994 | X180461904Y-84486961D01* 995 | X180421246Y-84352913D01* 996 | X180301037Y-84098580D01* 997 | X180133519Y-83872586D01* 998 | X180021493Y-83770998D01* 999 | X181509392Y-83770998D01* 1000 | X181470381Y-83865178D01* 1001 | G04 #@! TA.AperFunction,Conductor* 1002 | D19* 1003 | G36* 1004 | X181470381Y-83865178D02* 1005 | G01* 1006 | X181421000Y-84113438D01* 1007 | X181421000Y-84196197D01* 1008 | X180451357Y-85165841D01* 1009 | X180339915Y-84963000D01* 1010 | X179197000Y-84963000D01* 1011 | X179197000Y-84983000D01* 1012 | X178943000Y-84983000D01* 1013 | X178943000Y-84963000D01* 1014 | X177800085Y-84963000D01* 1015 | X177678096Y-85185039D01* 1016 | X177682937Y-85201001D01* 1017 | X177209569Y-85201001D01* 1018 | X177765152Y-84645417D01* 1019 | X177800085Y-84709000D01* 1020 | X178943000Y-84709000D01* 1021 | X178943000Y-84689000D01* 1022 | X179197000Y-84689000D01* 1023 | X179197000Y-84709000D01* 1024 | X180339915Y-84709000D01* 1025 | X180461904Y-84486961D01* 1026 | X180421246Y-84352913D01* 1027 | X180301037Y-84098580D01* 1028 | X180133519Y-83872586D01* 1029 | X180021493Y-83770998D01* 1030 | X181509392Y-83770998D01* 1031 | X181470381Y-83865178D01* 1032 | G37* 1033 | G04 #@! TD.AperFunction* 1034 | D18* 1035 | X159848524Y-75784110D02* 1036 | X159969845Y-76014000D01* 1037 | X161163000Y-76014000D01* 1038 | X161163000Y-75994000D01* 1039 | X161417000Y-75994000D01* 1040 | X161417000Y-76014000D01* 1041 | X162610155Y-76014000D01* 1042 | X162731476Y-75784110D01* 1043 | X162713850Y-75725999D01* 1044 | X181674197Y-75725999D01* 1045 | X181788466Y-75840268D01* 1046 | X181707875Y-75920859D01* 1047 | X181567247Y-76131323D01* 1048 | X181470381Y-76365178D01* 1049 | X181421000Y-76613438D01* 1050 | X181421000Y-76696198D01* 1051 | X181371199Y-76745999D01* 1052 | X162638765Y-76745999D01* 1053 | X162686825Y-76645099D01* 1054 | X162731476Y-76497890D01* 1055 | X162610155Y-76268000D01* 1056 | X161417000Y-76268000D01* 1057 | X161417000Y-76288000D01* 1058 | X161163000Y-76288000D01* 1059 | X161163000Y-76268000D01* 1060 | X159969845Y-76268000D01* 1061 | X159848524Y-76497890D01* 1062 | X159893175Y-76645099D01* 1063 | X159941235Y-76745999D01* 1064 | X144866753Y-76745999D01* 1065 | X144937932Y-76574158D01* 1066 | X144995000Y-76287260D01* 1067 | X144995000Y-75994740D01* 1068 | X144951210Y-75774592D01* 1069 | X144999803Y-75725999D01* 1070 | X159866150Y-75725999D01* 1071 | X159848524Y-75784110D01* 1072 | G04 #@! TA.AperFunction,Conductor* 1073 | D19* 1074 | G36* 1075 | X159848524Y-75784110D02* 1076 | G01* 1077 | X159969845Y-76014000D01* 1078 | X161163000Y-76014000D01* 1079 | X161163000Y-75994000D01* 1080 | X161417000Y-75994000D01* 1081 | X161417000Y-76014000D01* 1082 | X162610155Y-76014000D01* 1083 | X162731476Y-75784110D01* 1084 | X162713850Y-75725999D01* 1085 | X181674197Y-75725999D01* 1086 | X181788466Y-75840268D01* 1087 | X181707875Y-75920859D01* 1088 | X181567247Y-76131323D01* 1089 | X181470381Y-76365178D01* 1090 | X181421000Y-76613438D01* 1091 | X181421000Y-76696198D01* 1092 | X181371199Y-76745999D01* 1093 | X162638765Y-76745999D01* 1094 | X162686825Y-76645099D01* 1095 | X162731476Y-76497890D01* 1096 | X162610155Y-76268000D01* 1097 | X161417000Y-76268000D01* 1098 | X161417000Y-76288000D01* 1099 | X161163000Y-76288000D01* 1100 | X161163000Y-76268000D01* 1101 | X159969845Y-76268000D01* 1102 | X159848524Y-76497890D01* 1103 | X159893175Y-76645099D01* 1104 | X159941235Y-76745999D01* 1105 | X144866753Y-76745999D01* 1106 | X144937932Y-76574158D01* 1107 | X144995000Y-76287260D01* 1108 | X144995000Y-75994740D01* 1109 | X144951210Y-75774592D01* 1110 | X144999803Y-75725999D01* 1111 | X159866150Y-75725999D01* 1112 | X159848524Y-75784110D01* 1113 | G37* 1114 | G04 #@! TD.AperFunction* 1115 | M02* 1116 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/plots/A600Keyboard_USB_Pico-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1* 2 | G04 #@! TF.CreationDate,2021-07-09T21:47:44+10:00* 3 | G04 #@! TF.ProjectId,A600Keyboard_USB_Pico,41363030-4b65-4796-926f-6172645f5553,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Soldermask,Bot* 6 | G04 #@! TF.FilePolarity,Negative* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.10)-1) date 2021-07-09 21:47:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,3.302000*% 15 | %ADD11O,1.702000X1.702000*% 16 | %ADD12C,1.402000*% 17 | %ADD13O,1.802000X1.802000*% 18 | %ADD14O,1.602000X1.602000*% 19 | %ADD15O,1.902000X1.902000*% 20 | %ADD16C,1.702000*% 21 | G04 APERTURE END LIST* 22 | D10* 23 | X185674000Y-68580000D03* 24 | D11* 25 | X178308000Y-94742000D03* 26 | X170688000Y-115062000D03* 27 | X178308000Y-97282000D03* 28 | X170688000Y-112522000D03* 29 | X178308000Y-99822000D03* 30 | X170688000Y-109982000D03* 31 | X178308000Y-102362000D03* 32 | X170688000Y-107442000D03* 33 | X178308000Y-104902000D03* 34 | X170688000Y-104902000D03* 35 | X178308000Y-107442000D03* 36 | X170688000Y-102362000D03* 37 | X178308000Y-109982000D03* 38 | X170688000Y-99822000D03* 39 | X178308000Y-112522000D03* 40 | X170688000Y-97282000D03* 41 | X178308000Y-115062000D03* 42 | G36* 43 | G01* 44 | X169837000Y-95542000D02* 45 | X169837000Y-93942000D01* 46 | G75* 47 | G02* 48 | X169888000Y-93891000I51000J0D01* 49 | G01* 50 | X171488000Y-93891000D01* 51 | G75* 52 | G02* 53 | X171539000Y-93942000I0J-51000D01* 54 | G01* 55 | X171539000Y-95542000D01* 56 | G75* 57 | G02* 58 | X171488000Y-95593000I-51000J0D01* 59 | G01* 60 | X169888000Y-95593000D01* 61 | G75* 62 | G02* 63 | X169837000Y-95542000I0J51000D01* 64 | G01* 65 | G37* 66 | D12* 67 | X182706000Y-86739999D03* 68 | X187706000Y-87989999D03* 69 | X182706000Y-89239999D03* 70 | X187706000Y-90489999D03* 71 | X182706000Y-91739999D03* 72 | X187706000Y-92989999D03* 73 | X182706000Y-94239999D03* 74 | X187706000Y-95490000D03* 75 | X182706000Y-96740000D03* 76 | X187706000Y-97990000D03* 77 | X182706000Y-99240000D03* 78 | X187706000Y-100490000D03* 79 | X182706000Y-101740000D03* 80 | X187706000Y-102990000D03* 81 | X182706000Y-104240000D03* 82 | X187706000Y-105490000D03* 83 | X182706000Y-106740000D03* 84 | X187706000Y-107990000D03* 85 | X182706000Y-109240000D03* 86 | G36* 87 | G01* 88 | X188356000Y-111191000D02* 89 | X187056000Y-111191000D01* 90 | G75* 91 | G02* 92 | X187005000Y-111140000I0J51000D01* 93 | G01* 94 | X187005000Y-109840000D01* 95 | G75* 96 | G02* 97 | X187056000Y-109789000I51000J0D01* 98 | G01* 99 | X188356000Y-109789000D01* 100 | G75* 101 | G02* 102 | X188407000Y-109840000I0J-51000D01* 103 | G01* 104 | X188407000Y-111140000D01* 105 | G75* 106 | G02* 107 | X188356000Y-111191000I-51000J0D01* 108 | G01* 109 | G37* 110 | X187706000Y-85489999D03* 111 | X182706000Y-84239999D03* 112 | X187706000Y-82989999D03* 113 | X182706000Y-81739999D03* 114 | X187706000Y-80489999D03* 115 | X182706000Y-79239999D03* 116 | X187706000Y-77989999D03* 117 | X182706000Y-76739999D03* 118 | X187706000Y-75489999D03* 119 | X182706000Y-74239999D03* 120 | D10* 121 | X185674000Y-116332000D03* 122 | D13* 123 | X154940000Y-114011000D03* 124 | G36* 125 | G01* 126 | X151499000Y-114861000D02* 127 | X151499000Y-113161000D01* 128 | G75* 129 | G02* 130 | X151550000Y-113110000I51000J0D01* 131 | G01* 132 | X153250000Y-113110000D01* 133 | G75* 134 | G02* 135 | X153301000Y-113161000I0J-51000D01* 136 | G01* 137 | X153301000Y-114861000D01* 138 | G75* 139 | G02* 140 | X153250000Y-114912000I-51000J0D01* 141 | G01* 142 | X151550000Y-114912000D01* 143 | G75* 144 | G02* 145 | X151499000Y-114861000I0J51000D01* 146 | G01* 147 | G37* 148 | X149860000Y-114011000D03* 149 | D14* 150 | X154825000Y-69141000D03* 151 | X149975000Y-69141000D03* 152 | D15* 153 | X155125000Y-66111000D03* 154 | X149675000Y-66111000D03* 155 | D13* 156 | X161290000Y-65981000D03* 157 | X161290000Y-68521000D03* 158 | G36* 159 | G01* 160 | X160389000Y-71911000D02* 161 | X160389000Y-70211000D01* 162 | G75* 163 | G02* 164 | X160440000Y-70160000I51000J0D01* 165 | G01* 166 | X162140000Y-70160000D01* 167 | G75* 168 | G02* 169 | X162191000Y-70211000I0J-51000D01* 170 | G01* 171 | X162191000Y-71911000D01* 172 | G75* 173 | G02* 174 | X162140000Y-71962000I-51000J0D01* 175 | G01* 176 | X160440000Y-71962000D01* 177 | G75* 178 | G02* 179 | X160389000Y-71911000I0J51000D01* 180 | G01* 181 | G37* 182 | X161290000Y-73601000D03* 183 | X161290000Y-76141000D03* 184 | X161290000Y-78681000D03* 185 | X161290000Y-81221000D03* 186 | G36* 187 | G01* 188 | X160389000Y-84611000D02* 189 | X160389000Y-82911000D01* 190 | G75* 191 | G02* 192 | X160440000Y-82860000I51000J0D01* 193 | G01* 194 | X162140000Y-82860000D01* 195 | G75* 196 | G02* 197 | X162191000Y-82911000I0J-51000D01* 198 | G01* 199 | X162191000Y-84611000D01* 200 | G75* 201 | G02* 202 | X162140000Y-84662000I-51000J0D01* 203 | G01* 204 | X160440000Y-84662000D01* 205 | G75* 206 | G02* 207 | X160389000Y-84611000I0J51000D01* 208 | G01* 209 | G37* 210 | X161290000Y-86301000D03* 211 | X161290000Y-88841000D03* 212 | X161290000Y-91381000D03* 213 | X161290000Y-93921000D03* 214 | G36* 215 | G01* 216 | X160389000Y-97311000D02* 217 | X160389000Y-95611000D01* 218 | G75* 219 | G02* 220 | X160440000Y-95560000I51000J0D01* 221 | G01* 222 | X162140000Y-95560000D01* 223 | G75* 224 | G02* 225 | X162191000Y-95611000I0J-51000D01* 226 | G01* 227 | X162191000Y-97311000D01* 228 | G75* 229 | G02* 230 | X162140000Y-97362000I-51000J0D01* 231 | G01* 232 | X160440000Y-97362000D01* 233 | G75* 234 | G02* 235 | X160389000Y-97311000I0J51000D01* 236 | G01* 237 | G37* 238 | X161290000Y-99001000D03* 239 | X161290000Y-101541000D03* 240 | X161290000Y-104081000D03* 241 | X161290000Y-106621000D03* 242 | G36* 243 | G01* 244 | X160389000Y-110011000D02* 245 | X160389000Y-108311000D01* 246 | G75* 247 | G02* 248 | X160440000Y-108260000I51000J0D01* 249 | G01* 250 | X162140000Y-108260000D01* 251 | G75* 252 | G02* 253 | X162191000Y-108311000I0J-51000D01* 254 | G01* 255 | X162191000Y-110011000D01* 256 | G75* 257 | G02* 258 | X162140000Y-110062000I-51000J0D01* 259 | G01* 260 | X160440000Y-110062000D01* 261 | G75* 262 | G02* 263 | X160389000Y-110011000I0J51000D01* 264 | G01* 265 | G37* 266 | X161290000Y-111701000D03* 267 | X161290000Y-114241000D03* 268 | X143510000Y-114241000D03* 269 | X143510000Y-111701000D03* 270 | G36* 271 | G01* 272 | X142609000Y-110011000D02* 273 | X142609000Y-108311000D01* 274 | G75* 275 | G02* 276 | X142660000Y-108260000I51000J0D01* 277 | G01* 278 | X144360000Y-108260000D01* 279 | G75* 280 | G02* 281 | X144411000Y-108311000I0J-51000D01* 282 | G01* 283 | X144411000Y-110011000D01* 284 | G75* 285 | G02* 286 | X144360000Y-110062000I-51000J0D01* 287 | G01* 288 | X142660000Y-110062000D01* 289 | G75* 290 | G02* 291 | X142609000Y-110011000I0J51000D01* 292 | G01* 293 | G37* 294 | X143510000Y-106621000D03* 295 | X143510000Y-104081000D03* 296 | X143510000Y-101541000D03* 297 | X143510000Y-99001000D03* 298 | G36* 299 | G01* 300 | X142609000Y-97311000D02* 301 | X142609000Y-95611000D01* 302 | G75* 303 | G02* 304 | X142660000Y-95560000I51000J0D01* 305 | G01* 306 | X144360000Y-95560000D01* 307 | G75* 308 | G02* 309 | X144411000Y-95611000I0J-51000D01* 310 | G01* 311 | X144411000Y-97311000D01* 312 | G75* 313 | G02* 314 | X144360000Y-97362000I-51000J0D01* 315 | G01* 316 | X142660000Y-97362000D01* 317 | G75* 318 | G02* 319 | X142609000Y-97311000I0J51000D01* 320 | G01* 321 | G37* 322 | X143510000Y-93921000D03* 323 | X143510000Y-91381000D03* 324 | X143510000Y-88841000D03* 325 | X143510000Y-86301000D03* 326 | G36* 327 | G01* 328 | X142609000Y-84611000D02* 329 | X142609000Y-82911000D01* 330 | G75* 331 | G02* 332 | X142660000Y-82860000I51000J0D01* 333 | G01* 334 | X144360000Y-82860000D01* 335 | G75* 336 | G02* 337 | X144411000Y-82911000I0J-51000D01* 338 | G01* 339 | X144411000Y-84611000D01* 340 | G75* 341 | G02* 342 | X144360000Y-84662000I-51000J0D01* 343 | G01* 344 | X142660000Y-84662000D01* 345 | G75* 346 | G02* 347 | X142609000Y-84611000I0J51000D01* 348 | G01* 349 | G37* 350 | X143510000Y-81221000D03* 351 | X143510000Y-78681000D03* 352 | X143510000Y-76141000D03* 353 | X143510000Y-73601000D03* 354 | G36* 355 | G01* 356 | X142609000Y-71911000D02* 357 | X142609000Y-70211000D01* 358 | G75* 359 | G02* 360 | X142660000Y-70160000I51000J0D01* 361 | G01* 362 | X144360000Y-70160000D01* 363 | G75* 364 | G02* 365 | X144411000Y-70211000I0J-51000D01* 366 | G01* 367 | X144411000Y-71911000D01* 368 | G75* 369 | G02* 370 | X144360000Y-71962000I-51000J0D01* 371 | G01* 372 | X142660000Y-71962000D01* 373 | G75* 374 | G02* 375 | X142609000Y-71911000I0J51000D01* 376 | G01* 377 | G37* 378 | X143510000Y-68521000D03* 379 | X143510000Y-65981000D03* 380 | D11* 381 | X179070000Y-84836000D03* 382 | D16* 383 | X168910000Y-84836000D03* 384 | D11* 385 | X179070000Y-89408000D03* 386 | D16* 387 | X168910000Y-89408000D03* 388 | D10* 389 | X136398000Y-68580000D03* 390 | X136398000Y-116586000D03* 391 | D13* 392 | X177800000Y-79756000D03* 393 | X175260000Y-79756000D03* 394 | X172720000Y-79756000D03* 395 | G36* 396 | G01* 397 | X171030000Y-80657000D02* 398 | X169330000Y-80657000D01* 399 | G75* 400 | G02* 401 | X169279000Y-80606000I0J51000D01* 402 | G01* 403 | X169279000Y-78906000D01* 404 | G75* 405 | G02* 406 | X169330000Y-78855000I51000J0D01* 407 | G01* 408 | X171030000Y-78855000D01* 409 | G75* 410 | G02* 411 | X171081000Y-78906000I0J-51000D01* 412 | G01* 413 | X171081000Y-80606000D01* 414 | G75* 415 | G02* 416 | X171030000Y-80657000I-51000J0D01* 417 | G01* 418 | G37* 419 | M02* 420 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/plots/A600Keyboard_USB_Pico-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1* 2 | G04 #@! TF.CreationDate,2021-07-09T21:47:44+10:00* 3 | G04 #@! TF.ProjectId,A600Keyboard_USB_Pico,41363030-4b65-4796-926f-6172645f5553,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Profile,NP* 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (5.1.10)-1) date 2021-07-09 21:47:44* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | G04 #@! TA.AperFunction,Profile* 14 | %ADD10C,0.050000*% 15 | G04 #@! TD* 16 | G04 APERTURE END LIST* 17 | D10* 18 | X132080000Y-116586000D02* 19 | X132080000Y-68326000D01* 20 | X185674000Y-120650000D02* 21 | X136144000Y-120650000D01* 22 | X189738000Y-68326000D02* 23 | X189738000Y-116586000D01* 24 | X136144000Y-64262000D02* 25 | X185674000Y-64262000D01* 26 | X132080000Y-68326000D02* 27 | G75* 28 | G02* 29 | X136144000Y-64262000I4064000J0D01* 30 | G01* 31 | X136144000Y-120650000D02* 32 | G75* 33 | G02* 34 | X132080000Y-116586000I0J4064000D01* 35 | G01* 36 | X189738000Y-116586000D02* 37 | G75* 38 | G02* 39 | X185674000Y-120650000I-4064000J0D01* 40 | G01* 41 | X185674000Y-64262000D02* 42 | G75* 43 | G02* 44 | X189738000Y-68326000I0J-4064000D01* 45 | G01* 46 | M02* 47 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/plots/A600Keyboard_USB_Pico-F_Mask.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1* 2 | G04 #@! TF.CreationDate,2021-07-09T21:47:44+10:00* 3 | G04 #@! TF.ProjectId,A600Keyboard_USB_Pico,41363030-4b65-4796-926f-6172645f5553,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Soldermask,Top* 6 | G04 #@! TF.FilePolarity,Negative* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.10)-1) date 2021-07-09 21:47:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,3.302000*% 15 | %ADD11O,1.702000X1.702000*% 16 | %ADD12C,1.402000*% 17 | %ADD13O,1.802000X1.802000*% 18 | %ADD14O,1.602000X1.602000*% 19 | %ADD15O,1.902000X1.902000*% 20 | %ADD16C,1.702000*% 21 | G04 APERTURE END LIST* 22 | D10* 23 | X185674000Y-68580000D03* 24 | D11* 25 | X178308000Y-94742000D03* 26 | X170688000Y-115062000D03* 27 | X178308000Y-97282000D03* 28 | X170688000Y-112522000D03* 29 | X178308000Y-99822000D03* 30 | X170688000Y-109982000D03* 31 | X178308000Y-102362000D03* 32 | X170688000Y-107442000D03* 33 | X178308000Y-104902000D03* 34 | X170688000Y-104902000D03* 35 | X178308000Y-107442000D03* 36 | X170688000Y-102362000D03* 37 | X178308000Y-109982000D03* 38 | X170688000Y-99822000D03* 39 | X178308000Y-112522000D03* 40 | X170688000Y-97282000D03* 41 | X178308000Y-115062000D03* 42 | G36* 43 | G01* 44 | X169837000Y-95542000D02* 45 | X169837000Y-93942000D01* 46 | G75* 47 | G02* 48 | X169888000Y-93891000I51000J0D01* 49 | G01* 50 | X171488000Y-93891000D01* 51 | G75* 52 | G02* 53 | X171539000Y-93942000I0J-51000D01* 54 | G01* 55 | X171539000Y-95542000D01* 56 | G75* 57 | G02* 58 | X171488000Y-95593000I-51000J0D01* 59 | G01* 60 | X169888000Y-95593000D01* 61 | G75* 62 | G02* 63 | X169837000Y-95542000I0J51000D01* 64 | G01* 65 | G37* 66 | D12* 67 | X182706000Y-86739999D03* 68 | X187706000Y-87989999D03* 69 | X182706000Y-89239999D03* 70 | X187706000Y-90489999D03* 71 | X182706000Y-91739999D03* 72 | X187706000Y-92989999D03* 73 | X182706000Y-94239999D03* 74 | X187706000Y-95490000D03* 75 | X182706000Y-96740000D03* 76 | X187706000Y-97990000D03* 77 | X182706000Y-99240000D03* 78 | X187706000Y-100490000D03* 79 | X182706000Y-101740000D03* 80 | X187706000Y-102990000D03* 81 | X182706000Y-104240000D03* 82 | X187706000Y-105490000D03* 83 | X182706000Y-106740000D03* 84 | X187706000Y-107990000D03* 85 | X182706000Y-109240000D03* 86 | G36* 87 | G01* 88 | X188356000Y-111191000D02* 89 | X187056000Y-111191000D01* 90 | G75* 91 | G02* 92 | X187005000Y-111140000I0J51000D01* 93 | G01* 94 | X187005000Y-109840000D01* 95 | G75* 96 | G02* 97 | X187056000Y-109789000I51000J0D01* 98 | G01* 99 | X188356000Y-109789000D01* 100 | G75* 101 | G02* 102 | X188407000Y-109840000I0J-51000D01* 103 | G01* 104 | X188407000Y-111140000D01* 105 | G75* 106 | G02* 107 | X188356000Y-111191000I-51000J0D01* 108 | G01* 109 | G37* 110 | X187706000Y-85489999D03* 111 | X182706000Y-84239999D03* 112 | X187706000Y-82989999D03* 113 | X182706000Y-81739999D03* 114 | X187706000Y-80489999D03* 115 | X182706000Y-79239999D03* 116 | X187706000Y-77989999D03* 117 | X182706000Y-76739999D03* 118 | X187706000Y-75489999D03* 119 | X182706000Y-74239999D03* 120 | D10* 121 | X185674000Y-116332000D03* 122 | D13* 123 | X154940000Y-114011000D03* 124 | G36* 125 | G01* 126 | X155790000Y-116712000D02* 127 | X154090000Y-116712000D01* 128 | G75* 129 | G02* 130 | X154039000Y-116661000I0J51000D01* 131 | G01* 132 | X154039000Y-113161000D01* 133 | G75* 134 | G02* 135 | X154090000Y-113110000I51000J0D01* 136 | G01* 137 | X155790000Y-113110000D01* 138 | G75* 139 | G02* 140 | X155841000Y-113161000I0J-51000D01* 141 | G01* 142 | X155841000Y-116661000D01* 143 | G75* 144 | G02* 145 | X155790000Y-116712000I-51000J0D01* 146 | G01* 147 | G37* 148 | G36* 149 | G01* 150 | X151499000Y-114861000D02* 151 | X151499000Y-113161000D01* 152 | G75* 153 | G02* 154 | X151550000Y-113110000I51000J0D01* 155 | G01* 156 | X153250000Y-113110000D01* 157 | G75* 158 | G02* 159 | X153301000Y-113161000I0J-51000D01* 160 | G01* 161 | X153301000Y-114861000D01* 162 | G75* 163 | G02* 164 | X153250000Y-114912000I-51000J0D01* 165 | G01* 166 | X151550000Y-114912000D01* 167 | G75* 168 | G02* 169 | X151499000Y-114861000I0J51000D01* 170 | G01* 171 | G37* 172 | G36* 173 | G01* 174 | X153250000Y-116712000D02* 175 | X151550000Y-116712000D01* 176 | G75* 177 | G02* 178 | X151499000Y-116661000I0J51000D01* 179 | G01* 180 | X151499000Y-113161000D01* 181 | G75* 182 | G02* 183 | X151550000Y-113110000I51000J0D01* 184 | G01* 185 | X153250000Y-113110000D01* 186 | G75* 187 | G02* 188 | X153301000Y-113161000I0J-51000D01* 189 | G01* 190 | X153301000Y-116661000D01* 191 | G75* 192 | G02* 193 | X153250000Y-116712000I-51000J0D01* 194 | G01* 195 | G37* 196 | X149860000Y-114011000D03* 197 | G36* 198 | G01* 199 | X150710000Y-116712000D02* 200 | X149010000Y-116712000D01* 201 | G75* 202 | G02* 203 | X148959000Y-116661000I0J51000D01* 204 | G01* 205 | X148959000Y-113161000D01* 206 | G75* 207 | G02* 208 | X149010000Y-113110000I51000J0D01* 209 | G01* 210 | X150710000Y-113110000D01* 211 | G75* 212 | G02* 213 | X150761000Y-113161000I0J-51000D01* 214 | G01* 215 | X150761000Y-116661000D01* 216 | G75* 217 | G02* 218 | X150710000Y-116712000I-51000J0D01* 219 | G01* 220 | G37* 221 | D14* 222 | X154825000Y-69141000D03* 223 | X149975000Y-69141000D03* 224 | D15* 225 | X155125000Y-66111000D03* 226 | X149675000Y-66111000D03* 227 | G36* 228 | G01* 229 | X160389000Y-115091000D02* 230 | X160389000Y-113391000D01* 231 | G75* 232 | G02* 233 | X160440000Y-113340000I51000J0D01* 234 | G01* 235 | X163940000Y-113340000D01* 236 | G75* 237 | G02* 238 | X163991000Y-113391000I0J-51000D01* 239 | G01* 240 | X163991000Y-115091000D01* 241 | G75* 242 | G02* 243 | X163940000Y-115142000I-51000J0D01* 244 | G01* 245 | X160440000Y-115142000D01* 246 | G75* 247 | G02* 248 | X160389000Y-115091000I0J51000D01* 249 | G01* 250 | G37* 251 | G36* 252 | G01* 253 | X160389000Y-112551000D02* 254 | X160389000Y-110851000D01* 255 | G75* 256 | G02* 257 | X160440000Y-110800000I51000J0D01* 258 | G01* 259 | X163940000Y-110800000D01* 260 | G75* 261 | G02* 262 | X163991000Y-110851000I0J-51000D01* 263 | G01* 264 | X163991000Y-112551000D01* 265 | G75* 266 | G02* 267 | X163940000Y-112602000I-51000J0D01* 268 | G01* 269 | X160440000Y-112602000D01* 270 | G75* 271 | G02* 272 | X160389000Y-112551000I0J51000D01* 273 | G01* 274 | G37* 275 | G36* 276 | G01* 277 | X160389000Y-110011000D02* 278 | X160389000Y-108311000D01* 279 | G75* 280 | G02* 281 | X160440000Y-108260000I51000J0D01* 282 | G01* 283 | X163940000Y-108260000D01* 284 | G75* 285 | G02* 286 | X163991000Y-108311000I0J-51000D01* 287 | G01* 288 | X163991000Y-110011000D01* 289 | G75* 290 | G02* 291 | X163940000Y-110062000I-51000J0D01* 292 | G01* 293 | X160440000Y-110062000D01* 294 | G75* 295 | G02* 296 | X160389000Y-110011000I0J51000D01* 297 | G01* 298 | G37* 299 | G36* 300 | G01* 301 | X160389000Y-107471000D02* 302 | X160389000Y-105771000D01* 303 | G75* 304 | G02* 305 | X160440000Y-105720000I51000J0D01* 306 | G01* 307 | X163940000Y-105720000D01* 308 | G75* 309 | G02* 310 | X163991000Y-105771000I0J-51000D01* 311 | G01* 312 | X163991000Y-107471000D01* 313 | G75* 314 | G02* 315 | X163940000Y-107522000I-51000J0D01* 316 | G01* 317 | X160440000Y-107522000D01* 318 | G75* 319 | G02* 320 | X160389000Y-107471000I0J51000D01* 321 | G01* 322 | G37* 323 | G36* 324 | G01* 325 | X160389000Y-104931000D02* 326 | X160389000Y-103231000D01* 327 | G75* 328 | G02* 329 | X160440000Y-103180000I51000J0D01* 330 | G01* 331 | X163940000Y-103180000D01* 332 | G75* 333 | G02* 334 | X163991000Y-103231000I0J-51000D01* 335 | G01* 336 | X163991000Y-104931000D01* 337 | G75* 338 | G02* 339 | X163940000Y-104982000I-51000J0D01* 340 | G01* 341 | X160440000Y-104982000D01* 342 | G75* 343 | G02* 344 | X160389000Y-104931000I0J51000D01* 345 | G01* 346 | G37* 347 | G36* 348 | G01* 349 | X160389000Y-102391000D02* 350 | X160389000Y-100691000D01* 351 | G75* 352 | G02* 353 | X160440000Y-100640000I51000J0D01* 354 | G01* 355 | X163940000Y-100640000D01* 356 | G75* 357 | G02* 358 | X163991000Y-100691000I0J-51000D01* 359 | G01* 360 | X163991000Y-102391000D01* 361 | G75* 362 | G02* 363 | X163940000Y-102442000I-51000J0D01* 364 | G01* 365 | X160440000Y-102442000D01* 366 | G75* 367 | G02* 368 | X160389000Y-102391000I0J51000D01* 369 | G01* 370 | G37* 371 | G36* 372 | G01* 373 | X160389000Y-99851000D02* 374 | X160389000Y-98151000D01* 375 | G75* 376 | G02* 377 | X160440000Y-98100000I51000J0D01* 378 | G01* 379 | X163940000Y-98100000D01* 380 | G75* 381 | G02* 382 | X163991000Y-98151000I0J-51000D01* 383 | G01* 384 | X163991000Y-99851000D01* 385 | G75* 386 | G02* 387 | X163940000Y-99902000I-51000J0D01* 388 | G01* 389 | X160440000Y-99902000D01* 390 | G75* 391 | G02* 392 | X160389000Y-99851000I0J51000D01* 393 | G01* 394 | G37* 395 | G36* 396 | G01* 397 | X160389000Y-97311000D02* 398 | X160389000Y-95611000D01* 399 | G75* 400 | G02* 401 | X160440000Y-95560000I51000J0D01* 402 | G01* 403 | X163940000Y-95560000D01* 404 | G75* 405 | G02* 406 | X163991000Y-95611000I0J-51000D01* 407 | G01* 408 | X163991000Y-97311000D01* 409 | G75* 410 | G02* 411 | X163940000Y-97362000I-51000J0D01* 412 | G01* 413 | X160440000Y-97362000D01* 414 | G75* 415 | G02* 416 | X160389000Y-97311000I0J51000D01* 417 | G01* 418 | G37* 419 | G36* 420 | G01* 421 | X160389000Y-94771000D02* 422 | X160389000Y-93071000D01* 423 | G75* 424 | G02* 425 | X160440000Y-93020000I51000J0D01* 426 | G01* 427 | X163940000Y-93020000D01* 428 | G75* 429 | G02* 430 | X163991000Y-93071000I0J-51000D01* 431 | G01* 432 | X163991000Y-94771000D01* 433 | G75* 434 | G02* 435 | X163940000Y-94822000I-51000J0D01* 436 | G01* 437 | X160440000Y-94822000D01* 438 | G75* 439 | G02* 440 | X160389000Y-94771000I0J51000D01* 441 | G01* 442 | G37* 443 | G36* 444 | G01* 445 | X160389000Y-92231000D02* 446 | X160389000Y-90531000D01* 447 | G75* 448 | G02* 449 | X160440000Y-90480000I51000J0D01* 450 | G01* 451 | X163940000Y-90480000D01* 452 | G75* 453 | G02* 454 | X163991000Y-90531000I0J-51000D01* 455 | G01* 456 | X163991000Y-92231000D01* 457 | G75* 458 | G02* 459 | X163940000Y-92282000I-51000J0D01* 460 | G01* 461 | X160440000Y-92282000D01* 462 | G75* 463 | G02* 464 | X160389000Y-92231000I0J51000D01* 465 | G01* 466 | G37* 467 | G36* 468 | G01* 469 | X160389000Y-89691000D02* 470 | X160389000Y-87991000D01* 471 | G75* 472 | G02* 473 | X160440000Y-87940000I51000J0D01* 474 | G01* 475 | X163940000Y-87940000D01* 476 | G75* 477 | G02* 478 | X163991000Y-87991000I0J-51000D01* 479 | G01* 480 | X163991000Y-89691000D01* 481 | G75* 482 | G02* 483 | X163940000Y-89742000I-51000J0D01* 484 | G01* 485 | X160440000Y-89742000D01* 486 | G75* 487 | G02* 488 | X160389000Y-89691000I0J51000D01* 489 | G01* 490 | G37* 491 | G36* 492 | G01* 493 | X160389000Y-87151000D02* 494 | X160389000Y-85451000D01* 495 | G75* 496 | G02* 497 | X160440000Y-85400000I51000J0D01* 498 | G01* 499 | X163940000Y-85400000D01* 500 | G75* 501 | G02* 502 | X163991000Y-85451000I0J-51000D01* 503 | G01* 504 | X163991000Y-87151000D01* 505 | G75* 506 | G02* 507 | X163940000Y-87202000I-51000J0D01* 508 | G01* 509 | X160440000Y-87202000D01* 510 | G75* 511 | G02* 512 | X160389000Y-87151000I0J51000D01* 513 | G01* 514 | G37* 515 | G36* 516 | G01* 517 | X160389000Y-84611000D02* 518 | X160389000Y-82911000D01* 519 | G75* 520 | G02* 521 | X160440000Y-82860000I51000J0D01* 522 | G01* 523 | X163940000Y-82860000D01* 524 | G75* 525 | G02* 526 | X163991000Y-82911000I0J-51000D01* 527 | G01* 528 | X163991000Y-84611000D01* 529 | G75* 530 | G02* 531 | X163940000Y-84662000I-51000J0D01* 532 | G01* 533 | X160440000Y-84662000D01* 534 | G75* 535 | G02* 536 | X160389000Y-84611000I0J51000D01* 537 | G01* 538 | G37* 539 | G36* 540 | G01* 541 | X160389000Y-82071000D02* 542 | X160389000Y-80371000D01* 543 | G75* 544 | G02* 545 | X160440000Y-80320000I51000J0D01* 546 | G01* 547 | X163940000Y-80320000D01* 548 | G75* 549 | G02* 550 | X163991000Y-80371000I0J-51000D01* 551 | G01* 552 | X163991000Y-82071000D01* 553 | G75* 554 | G02* 555 | X163940000Y-82122000I-51000J0D01* 556 | G01* 557 | X160440000Y-82122000D01* 558 | G75* 559 | G02* 560 | X160389000Y-82071000I0J51000D01* 561 | G01* 562 | G37* 563 | G36* 564 | G01* 565 | X160389000Y-79531000D02* 566 | X160389000Y-77831000D01* 567 | G75* 568 | G02* 569 | X160440000Y-77780000I51000J0D01* 570 | G01* 571 | X163940000Y-77780000D01* 572 | G75* 573 | G02* 574 | X163991000Y-77831000I0J-51000D01* 575 | G01* 576 | X163991000Y-79531000D01* 577 | G75* 578 | G02* 579 | X163940000Y-79582000I-51000J0D01* 580 | G01* 581 | X160440000Y-79582000D01* 582 | G75* 583 | G02* 584 | X160389000Y-79531000I0J51000D01* 585 | G01* 586 | G37* 587 | G36* 588 | G01* 589 | X160389000Y-76991000D02* 590 | X160389000Y-75291000D01* 591 | G75* 592 | G02* 593 | X160440000Y-75240000I51000J0D01* 594 | G01* 595 | X163940000Y-75240000D01* 596 | G75* 597 | G02* 598 | X163991000Y-75291000I0J-51000D01* 599 | G01* 600 | X163991000Y-76991000D01* 601 | G75* 602 | G02* 603 | X163940000Y-77042000I-51000J0D01* 604 | G01* 605 | X160440000Y-77042000D01* 606 | G75* 607 | G02* 608 | X160389000Y-76991000I0J51000D01* 609 | G01* 610 | G37* 611 | G36* 612 | G01* 613 | X160389000Y-74451000D02* 614 | X160389000Y-72751000D01* 615 | G75* 616 | G02* 617 | X160440000Y-72700000I51000J0D01* 618 | G01* 619 | X163940000Y-72700000D01* 620 | G75* 621 | G02* 622 | X163991000Y-72751000I0J-51000D01* 623 | G01* 624 | X163991000Y-74451000D01* 625 | G75* 626 | G02* 627 | X163940000Y-74502000I-51000J0D01* 628 | G01* 629 | X160440000Y-74502000D01* 630 | G75* 631 | G02* 632 | X160389000Y-74451000I0J51000D01* 633 | G01* 634 | G37* 635 | G36* 636 | G01* 637 | X160389000Y-71911000D02* 638 | X160389000Y-70211000D01* 639 | G75* 640 | G02* 641 | X160440000Y-70160000I51000J0D01* 642 | G01* 643 | X163940000Y-70160000D01* 644 | G75* 645 | G02* 646 | X163991000Y-70211000I0J-51000D01* 647 | G01* 648 | X163991000Y-71911000D01* 649 | G75* 650 | G02* 651 | X163940000Y-71962000I-51000J0D01* 652 | G01* 653 | X160440000Y-71962000D01* 654 | G75* 655 | G02* 656 | X160389000Y-71911000I0J51000D01* 657 | G01* 658 | G37* 659 | G36* 660 | G01* 661 | X160389000Y-69371000D02* 662 | X160389000Y-67671000D01* 663 | G75* 664 | G02* 665 | X160440000Y-67620000I51000J0D01* 666 | G01* 667 | X163940000Y-67620000D01* 668 | G75* 669 | G02* 670 | X163991000Y-67671000I0J-51000D01* 671 | G01* 672 | X163991000Y-69371000D01* 673 | G75* 674 | G02* 675 | X163940000Y-69422000I-51000J0D01* 676 | G01* 677 | X160440000Y-69422000D01* 678 | G75* 679 | G02* 680 | X160389000Y-69371000I0J51000D01* 681 | G01* 682 | G37* 683 | G36* 684 | G01* 685 | X160389000Y-66831000D02* 686 | X160389000Y-65131000D01* 687 | G75* 688 | G02* 689 | X160440000Y-65080000I51000J0D01* 690 | G01* 691 | X163940000Y-65080000D01* 692 | G75* 693 | G02* 694 | X163991000Y-65131000I0J-51000D01* 695 | G01* 696 | X163991000Y-66831000D01* 697 | G75* 698 | G02* 699 | X163940000Y-66882000I-51000J0D01* 700 | G01* 701 | X160440000Y-66882000D01* 702 | G75* 703 | G02* 704 | X160389000Y-66831000I0J51000D01* 705 | G01* 706 | G37* 707 | G36* 708 | G01* 709 | X140809000Y-115091000D02* 710 | X140809000Y-113391000D01* 711 | G75* 712 | G02* 713 | X140860000Y-113340000I51000J0D01* 714 | G01* 715 | X144360000Y-113340000D01* 716 | G75* 717 | G02* 718 | X144411000Y-113391000I0J-51000D01* 719 | G01* 720 | X144411000Y-115091000D01* 721 | G75* 722 | G02* 723 | X144360000Y-115142000I-51000J0D01* 724 | G01* 725 | X140860000Y-115142000D01* 726 | G75* 727 | G02* 728 | X140809000Y-115091000I0J51000D01* 729 | G01* 730 | G37* 731 | G36* 732 | G01* 733 | X140809000Y-112551000D02* 734 | X140809000Y-110851000D01* 735 | G75* 736 | G02* 737 | X140860000Y-110800000I51000J0D01* 738 | G01* 739 | X144360000Y-110800000D01* 740 | G75* 741 | G02* 742 | X144411000Y-110851000I0J-51000D01* 743 | G01* 744 | X144411000Y-112551000D01* 745 | G75* 746 | G02* 747 | X144360000Y-112602000I-51000J0D01* 748 | G01* 749 | X140860000Y-112602000D01* 750 | G75* 751 | G02* 752 | X140809000Y-112551000I0J51000D01* 753 | G01* 754 | G37* 755 | G36* 756 | G01* 757 | X140809000Y-110011000D02* 758 | X140809000Y-108311000D01* 759 | G75* 760 | G02* 761 | X140860000Y-108260000I51000J0D01* 762 | G01* 763 | X144360000Y-108260000D01* 764 | G75* 765 | G02* 766 | X144411000Y-108311000I0J-51000D01* 767 | G01* 768 | X144411000Y-110011000D01* 769 | G75* 770 | G02* 771 | X144360000Y-110062000I-51000J0D01* 772 | G01* 773 | X140860000Y-110062000D01* 774 | G75* 775 | G02* 776 | X140809000Y-110011000I0J51000D01* 777 | G01* 778 | G37* 779 | G36* 780 | G01* 781 | X140809000Y-107471000D02* 782 | X140809000Y-105771000D01* 783 | G75* 784 | G02* 785 | X140860000Y-105720000I51000J0D01* 786 | G01* 787 | X144360000Y-105720000D01* 788 | G75* 789 | G02* 790 | X144411000Y-105771000I0J-51000D01* 791 | G01* 792 | X144411000Y-107471000D01* 793 | G75* 794 | G02* 795 | X144360000Y-107522000I-51000J0D01* 796 | G01* 797 | X140860000Y-107522000D01* 798 | G75* 799 | G02* 800 | X140809000Y-107471000I0J51000D01* 801 | G01* 802 | G37* 803 | G36* 804 | G01* 805 | X140809000Y-104931000D02* 806 | X140809000Y-103231000D01* 807 | G75* 808 | G02* 809 | X140860000Y-103180000I51000J0D01* 810 | G01* 811 | X144360000Y-103180000D01* 812 | G75* 813 | G02* 814 | X144411000Y-103231000I0J-51000D01* 815 | G01* 816 | X144411000Y-104931000D01* 817 | G75* 818 | G02* 819 | X144360000Y-104982000I-51000J0D01* 820 | G01* 821 | X140860000Y-104982000D01* 822 | G75* 823 | G02* 824 | X140809000Y-104931000I0J51000D01* 825 | G01* 826 | G37* 827 | G36* 828 | G01* 829 | X140809000Y-102391000D02* 830 | X140809000Y-100691000D01* 831 | G75* 832 | G02* 833 | X140860000Y-100640000I51000J0D01* 834 | G01* 835 | X144360000Y-100640000D01* 836 | G75* 837 | G02* 838 | X144411000Y-100691000I0J-51000D01* 839 | G01* 840 | X144411000Y-102391000D01* 841 | G75* 842 | G02* 843 | X144360000Y-102442000I-51000J0D01* 844 | G01* 845 | X140860000Y-102442000D01* 846 | G75* 847 | G02* 848 | X140809000Y-102391000I0J51000D01* 849 | G01* 850 | G37* 851 | G36* 852 | G01* 853 | X140809000Y-99851000D02* 854 | X140809000Y-98151000D01* 855 | G75* 856 | G02* 857 | X140860000Y-98100000I51000J0D01* 858 | G01* 859 | X144360000Y-98100000D01* 860 | G75* 861 | G02* 862 | X144411000Y-98151000I0J-51000D01* 863 | G01* 864 | X144411000Y-99851000D01* 865 | G75* 866 | G02* 867 | X144360000Y-99902000I-51000J0D01* 868 | G01* 869 | X140860000Y-99902000D01* 870 | G75* 871 | G02* 872 | X140809000Y-99851000I0J51000D01* 873 | G01* 874 | G37* 875 | G36* 876 | G01* 877 | X140809000Y-97311000D02* 878 | X140809000Y-95611000D01* 879 | G75* 880 | G02* 881 | X140860000Y-95560000I51000J0D01* 882 | G01* 883 | X144360000Y-95560000D01* 884 | G75* 885 | G02* 886 | X144411000Y-95611000I0J-51000D01* 887 | G01* 888 | X144411000Y-97311000D01* 889 | G75* 890 | G02* 891 | X144360000Y-97362000I-51000J0D01* 892 | G01* 893 | X140860000Y-97362000D01* 894 | G75* 895 | G02* 896 | X140809000Y-97311000I0J51000D01* 897 | G01* 898 | G37* 899 | G36* 900 | G01* 901 | X140809000Y-94771000D02* 902 | X140809000Y-93071000D01* 903 | G75* 904 | G02* 905 | X140860000Y-93020000I51000J0D01* 906 | G01* 907 | X144360000Y-93020000D01* 908 | G75* 909 | G02* 910 | X144411000Y-93071000I0J-51000D01* 911 | G01* 912 | X144411000Y-94771000D01* 913 | G75* 914 | G02* 915 | X144360000Y-94822000I-51000J0D01* 916 | G01* 917 | X140860000Y-94822000D01* 918 | G75* 919 | G02* 920 | X140809000Y-94771000I0J51000D01* 921 | G01* 922 | G37* 923 | G36* 924 | G01* 925 | X140809000Y-92231000D02* 926 | X140809000Y-90531000D01* 927 | G75* 928 | G02* 929 | X140860000Y-90480000I51000J0D01* 930 | G01* 931 | X144360000Y-90480000D01* 932 | G75* 933 | G02* 934 | X144411000Y-90531000I0J-51000D01* 935 | G01* 936 | X144411000Y-92231000D01* 937 | G75* 938 | G02* 939 | X144360000Y-92282000I-51000J0D01* 940 | G01* 941 | X140860000Y-92282000D01* 942 | G75* 943 | G02* 944 | X140809000Y-92231000I0J51000D01* 945 | G01* 946 | G37* 947 | G36* 948 | G01* 949 | X140809000Y-89691000D02* 950 | X140809000Y-87991000D01* 951 | G75* 952 | G02* 953 | X140860000Y-87940000I51000J0D01* 954 | G01* 955 | X144360000Y-87940000D01* 956 | G75* 957 | G02* 958 | X144411000Y-87991000I0J-51000D01* 959 | G01* 960 | X144411000Y-89691000D01* 961 | G75* 962 | G02* 963 | X144360000Y-89742000I-51000J0D01* 964 | G01* 965 | X140860000Y-89742000D01* 966 | G75* 967 | G02* 968 | X140809000Y-89691000I0J51000D01* 969 | G01* 970 | G37* 971 | G36* 972 | G01* 973 | X140809000Y-87151000D02* 974 | X140809000Y-85451000D01* 975 | G75* 976 | G02* 977 | X140860000Y-85400000I51000J0D01* 978 | G01* 979 | X144360000Y-85400000D01* 980 | G75* 981 | G02* 982 | X144411000Y-85451000I0J-51000D01* 983 | G01* 984 | X144411000Y-87151000D01* 985 | G75* 986 | G02* 987 | X144360000Y-87202000I-51000J0D01* 988 | G01* 989 | X140860000Y-87202000D01* 990 | G75* 991 | G02* 992 | X140809000Y-87151000I0J51000D01* 993 | G01* 994 | G37* 995 | G36* 996 | G01* 997 | X140809000Y-84611000D02* 998 | X140809000Y-82911000D01* 999 | G75* 1000 | G02* 1001 | X140860000Y-82860000I51000J0D01* 1002 | G01* 1003 | X144360000Y-82860000D01* 1004 | G75* 1005 | G02* 1006 | X144411000Y-82911000I0J-51000D01* 1007 | G01* 1008 | X144411000Y-84611000D01* 1009 | G75* 1010 | G02* 1011 | X144360000Y-84662000I-51000J0D01* 1012 | G01* 1013 | X140860000Y-84662000D01* 1014 | G75* 1015 | G02* 1016 | X140809000Y-84611000I0J51000D01* 1017 | G01* 1018 | G37* 1019 | G36* 1020 | G01* 1021 | X140809000Y-82071000D02* 1022 | X140809000Y-80371000D01* 1023 | G75* 1024 | G02* 1025 | X140860000Y-80320000I51000J0D01* 1026 | G01* 1027 | X144360000Y-80320000D01* 1028 | G75* 1029 | G02* 1030 | X144411000Y-80371000I0J-51000D01* 1031 | G01* 1032 | X144411000Y-82071000D01* 1033 | G75* 1034 | G02* 1035 | X144360000Y-82122000I-51000J0D01* 1036 | G01* 1037 | X140860000Y-82122000D01* 1038 | G75* 1039 | G02* 1040 | X140809000Y-82071000I0J51000D01* 1041 | G01* 1042 | G37* 1043 | G36* 1044 | G01* 1045 | X140809000Y-79531000D02* 1046 | X140809000Y-77831000D01* 1047 | G75* 1048 | G02* 1049 | X140860000Y-77780000I51000J0D01* 1050 | G01* 1051 | X144360000Y-77780000D01* 1052 | G75* 1053 | G02* 1054 | X144411000Y-77831000I0J-51000D01* 1055 | G01* 1056 | X144411000Y-79531000D01* 1057 | G75* 1058 | G02* 1059 | X144360000Y-79582000I-51000J0D01* 1060 | G01* 1061 | X140860000Y-79582000D01* 1062 | G75* 1063 | G02* 1064 | X140809000Y-79531000I0J51000D01* 1065 | G01* 1066 | G37* 1067 | G36* 1068 | G01* 1069 | X140809000Y-76991000D02* 1070 | X140809000Y-75291000D01* 1071 | G75* 1072 | G02* 1073 | X140860000Y-75240000I51000J0D01* 1074 | G01* 1075 | X144360000Y-75240000D01* 1076 | G75* 1077 | G02* 1078 | X144411000Y-75291000I0J-51000D01* 1079 | G01* 1080 | X144411000Y-76991000D01* 1081 | G75* 1082 | G02* 1083 | X144360000Y-77042000I-51000J0D01* 1084 | G01* 1085 | X140860000Y-77042000D01* 1086 | G75* 1087 | G02* 1088 | X140809000Y-76991000I0J51000D01* 1089 | G01* 1090 | G37* 1091 | G36* 1092 | G01* 1093 | X140809000Y-74451000D02* 1094 | X140809000Y-72751000D01* 1095 | G75* 1096 | G02* 1097 | X140860000Y-72700000I51000J0D01* 1098 | G01* 1099 | X144360000Y-72700000D01* 1100 | G75* 1101 | G02* 1102 | X144411000Y-72751000I0J-51000D01* 1103 | G01* 1104 | X144411000Y-74451000D01* 1105 | G75* 1106 | G02* 1107 | X144360000Y-74502000I-51000J0D01* 1108 | G01* 1109 | X140860000Y-74502000D01* 1110 | G75* 1111 | G02* 1112 | X140809000Y-74451000I0J51000D01* 1113 | G01* 1114 | G37* 1115 | G36* 1116 | G01* 1117 | X140809000Y-71911000D02* 1118 | X140809000Y-70211000D01* 1119 | G75* 1120 | G02* 1121 | X140860000Y-70160000I51000J0D01* 1122 | G01* 1123 | X144360000Y-70160000D01* 1124 | G75* 1125 | G02* 1126 | X144411000Y-70211000I0J-51000D01* 1127 | G01* 1128 | X144411000Y-71911000D01* 1129 | G75* 1130 | G02* 1131 | X144360000Y-71962000I-51000J0D01* 1132 | G01* 1133 | X140860000Y-71962000D01* 1134 | G75* 1135 | G02* 1136 | X140809000Y-71911000I0J51000D01* 1137 | G01* 1138 | G37* 1139 | G36* 1140 | G01* 1141 | X140809000Y-69371000D02* 1142 | X140809000Y-67671000D01* 1143 | G75* 1144 | G02* 1145 | X140860000Y-67620000I51000J0D01* 1146 | G01* 1147 | X144360000Y-67620000D01* 1148 | G75* 1149 | G02* 1150 | X144411000Y-67671000I0J-51000D01* 1151 | G01* 1152 | X144411000Y-69371000D01* 1153 | G75* 1154 | G02* 1155 | X144360000Y-69422000I-51000J0D01* 1156 | G01* 1157 | X140860000Y-69422000D01* 1158 | G75* 1159 | G02* 1160 | X140809000Y-69371000I0J51000D01* 1161 | G01* 1162 | G37* 1163 | G36* 1164 | G01* 1165 | X140809000Y-66831000D02* 1166 | X140809000Y-65131000D01* 1167 | G75* 1168 | G02* 1169 | X140860000Y-65080000I51000J0D01* 1170 | G01* 1171 | X144360000Y-65080000D01* 1172 | G75* 1173 | G02* 1174 | X144411000Y-65131000I0J-51000D01* 1175 | G01* 1176 | X144411000Y-66831000D01* 1177 | G75* 1178 | G02* 1179 | X144360000Y-66882000I-51000J0D01* 1180 | G01* 1181 | X140860000Y-66882000D01* 1182 | G75* 1183 | G02* 1184 | X140809000Y-66831000I0J51000D01* 1185 | G01* 1186 | G37* 1187 | D13* 1188 | X161290000Y-65981000D03* 1189 | X161290000Y-68521000D03* 1190 | G36* 1191 | G01* 1192 | X160389000Y-71911000D02* 1193 | X160389000Y-70211000D01* 1194 | G75* 1195 | G02* 1196 | X160440000Y-70160000I51000J0D01* 1197 | G01* 1198 | X162140000Y-70160000D01* 1199 | G75* 1200 | G02* 1201 | X162191000Y-70211000I0J-51000D01* 1202 | G01* 1203 | X162191000Y-71911000D01* 1204 | G75* 1205 | G02* 1206 | X162140000Y-71962000I-51000J0D01* 1207 | G01* 1208 | X160440000Y-71962000D01* 1209 | G75* 1210 | G02* 1211 | X160389000Y-71911000I0J51000D01* 1212 | G01* 1213 | G37* 1214 | X161290000Y-73601000D03* 1215 | X161290000Y-76141000D03* 1216 | X161290000Y-78681000D03* 1217 | X161290000Y-81221000D03* 1218 | G36* 1219 | G01* 1220 | X160389000Y-84611000D02* 1221 | X160389000Y-82911000D01* 1222 | G75* 1223 | G02* 1224 | X160440000Y-82860000I51000J0D01* 1225 | G01* 1226 | X162140000Y-82860000D01* 1227 | G75* 1228 | G02* 1229 | X162191000Y-82911000I0J-51000D01* 1230 | G01* 1231 | X162191000Y-84611000D01* 1232 | G75* 1233 | G02* 1234 | X162140000Y-84662000I-51000J0D01* 1235 | G01* 1236 | X160440000Y-84662000D01* 1237 | G75* 1238 | G02* 1239 | X160389000Y-84611000I0J51000D01* 1240 | G01* 1241 | G37* 1242 | X161290000Y-86301000D03* 1243 | X161290000Y-88841000D03* 1244 | X161290000Y-91381000D03* 1245 | X161290000Y-93921000D03* 1246 | G36* 1247 | G01* 1248 | X160389000Y-97311000D02* 1249 | X160389000Y-95611000D01* 1250 | G75* 1251 | G02* 1252 | X160440000Y-95560000I51000J0D01* 1253 | G01* 1254 | X162140000Y-95560000D01* 1255 | G75* 1256 | G02* 1257 | X162191000Y-95611000I0J-51000D01* 1258 | G01* 1259 | X162191000Y-97311000D01* 1260 | G75* 1261 | G02* 1262 | X162140000Y-97362000I-51000J0D01* 1263 | G01* 1264 | X160440000Y-97362000D01* 1265 | G75* 1266 | G02* 1267 | X160389000Y-97311000I0J51000D01* 1268 | G01* 1269 | G37* 1270 | X161290000Y-99001000D03* 1271 | X161290000Y-101541000D03* 1272 | X161290000Y-104081000D03* 1273 | X161290000Y-106621000D03* 1274 | G36* 1275 | G01* 1276 | X160389000Y-110011000D02* 1277 | X160389000Y-108311000D01* 1278 | G75* 1279 | G02* 1280 | X160440000Y-108260000I51000J0D01* 1281 | G01* 1282 | X162140000Y-108260000D01* 1283 | G75* 1284 | G02* 1285 | X162191000Y-108311000I0J-51000D01* 1286 | G01* 1287 | X162191000Y-110011000D01* 1288 | G75* 1289 | G02* 1290 | X162140000Y-110062000I-51000J0D01* 1291 | G01* 1292 | X160440000Y-110062000D01* 1293 | G75* 1294 | G02* 1295 | X160389000Y-110011000I0J51000D01* 1296 | G01* 1297 | G37* 1298 | X161290000Y-111701000D03* 1299 | X161290000Y-114241000D03* 1300 | X143510000Y-114241000D03* 1301 | X143510000Y-111701000D03* 1302 | G36* 1303 | G01* 1304 | X142609000Y-110011000D02* 1305 | X142609000Y-108311000D01* 1306 | G75* 1307 | G02* 1308 | X142660000Y-108260000I51000J0D01* 1309 | G01* 1310 | X144360000Y-108260000D01* 1311 | G75* 1312 | G02* 1313 | X144411000Y-108311000I0J-51000D01* 1314 | G01* 1315 | X144411000Y-110011000D01* 1316 | G75* 1317 | G02* 1318 | X144360000Y-110062000I-51000J0D01* 1319 | G01* 1320 | X142660000Y-110062000D01* 1321 | G75* 1322 | G02* 1323 | X142609000Y-110011000I0J51000D01* 1324 | G01* 1325 | G37* 1326 | X143510000Y-106621000D03* 1327 | X143510000Y-104081000D03* 1328 | X143510000Y-101541000D03* 1329 | X143510000Y-99001000D03* 1330 | G36* 1331 | G01* 1332 | X142609000Y-97311000D02* 1333 | X142609000Y-95611000D01* 1334 | G75* 1335 | G02* 1336 | X142660000Y-95560000I51000J0D01* 1337 | G01* 1338 | X144360000Y-95560000D01* 1339 | G75* 1340 | G02* 1341 | X144411000Y-95611000I0J-51000D01* 1342 | G01* 1343 | X144411000Y-97311000D01* 1344 | G75* 1345 | G02* 1346 | X144360000Y-97362000I-51000J0D01* 1347 | G01* 1348 | X142660000Y-97362000D01* 1349 | G75* 1350 | G02* 1351 | X142609000Y-97311000I0J51000D01* 1352 | G01* 1353 | G37* 1354 | X143510000Y-93921000D03* 1355 | X143510000Y-91381000D03* 1356 | X143510000Y-88841000D03* 1357 | X143510000Y-86301000D03* 1358 | G36* 1359 | G01* 1360 | X142609000Y-84611000D02* 1361 | X142609000Y-82911000D01* 1362 | G75* 1363 | G02* 1364 | X142660000Y-82860000I51000J0D01* 1365 | G01* 1366 | X144360000Y-82860000D01* 1367 | G75* 1368 | G02* 1369 | X144411000Y-82911000I0J-51000D01* 1370 | G01* 1371 | X144411000Y-84611000D01* 1372 | G75* 1373 | G02* 1374 | X144360000Y-84662000I-51000J0D01* 1375 | G01* 1376 | X142660000Y-84662000D01* 1377 | G75* 1378 | G02* 1379 | X142609000Y-84611000I0J51000D01* 1380 | G01* 1381 | G37* 1382 | X143510000Y-81221000D03* 1383 | X143510000Y-78681000D03* 1384 | X143510000Y-76141000D03* 1385 | X143510000Y-73601000D03* 1386 | G36* 1387 | G01* 1388 | X142609000Y-71911000D02* 1389 | X142609000Y-70211000D01* 1390 | G75* 1391 | G02* 1392 | X142660000Y-70160000I51000J0D01* 1393 | G01* 1394 | X144360000Y-70160000D01* 1395 | G75* 1396 | G02* 1397 | X144411000Y-70211000I0J-51000D01* 1398 | G01* 1399 | X144411000Y-71911000D01* 1400 | G75* 1401 | G02* 1402 | X144360000Y-71962000I-51000J0D01* 1403 | G01* 1404 | X142660000Y-71962000D01* 1405 | G75* 1406 | G02* 1407 | X142609000Y-71911000I0J51000D01* 1408 | G01* 1409 | G37* 1410 | X143510000Y-68521000D03* 1411 | X143510000Y-65981000D03* 1412 | D11* 1413 | X179070000Y-84836000D03* 1414 | D16* 1415 | X168910000Y-84836000D03* 1416 | D11* 1417 | X179070000Y-89408000D03* 1418 | D16* 1419 | X168910000Y-89408000D03* 1420 | D10* 1421 | X136398000Y-68580000D03* 1422 | X136398000Y-116586000D03* 1423 | D13* 1424 | X177800000Y-79756000D03* 1425 | X175260000Y-79756000D03* 1426 | X172720000Y-79756000D03* 1427 | G36* 1428 | G01* 1429 | X171030000Y-80657000D02* 1430 | X169330000Y-80657000D01* 1431 | G75* 1432 | G02* 1433 | X169279000Y-80606000I0J51000D01* 1434 | G01* 1435 | X169279000Y-78906000D01* 1436 | G75* 1437 | G02* 1438 | X169330000Y-78855000I51000J0D01* 1439 | G01* 1440 | X171030000Y-78855000D01* 1441 | G75* 1442 | G02* 1443 | X171081000Y-78906000I0J-51000D01* 1444 | G01* 1445 | X171081000Y-80606000D01* 1446 | G75* 1447 | G02* 1448 | X171030000Y-80657000I-51000J0D01* 1449 | G01* 1450 | G37* 1451 | M02* 1452 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/plots/A600Keyboard_USB_Pico.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (5.1.10)-1} date 07/09/21 21:47:49 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2021-07-09T21:47:49+10:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(5.1.10)-1 6 | FMAT,2 7 | INCH 8 | T1C0.0315 9 | T2C0.0315 10 | T3C0.0394 11 | T4C0.0402 12 | T5C0.0591 13 | T6C0.0709 14 | T7C0.1260 15 | % 16 | G90 17 | G05 18 | T1 19 | X6.65Y-3.34 20 | X6.65Y-3.52 21 | X6.72Y-3.73 22 | X6.72Y-3.83 23 | X6.72Y-3.93 24 | X6.72Y-4.03 25 | X6.72Y-4.13 26 | X6.72Y-4.23 27 | X6.72Y-4.33 28 | X6.72Y-4.43 29 | X6.72Y-4.53 30 | X7.02Y-3.73 31 | X7.02Y-3.83 32 | X7.02Y-3.93 33 | X7.02Y-4.03 34 | X7.02Y-4.13 35 | X7.02Y-4.23 36 | X7.02Y-4.33 37 | X7.02Y-4.43 38 | X7.02Y-4.53 39 | X7.05Y-3.34 40 | X7.05Y-3.52 41 | T2 42 | X7.1931Y-2.9228 43 | X7.1931Y-3.0213 44 | X7.1931Y-3.1197 45 | X7.1931Y-3.2181 46 | X7.1931Y-3.3165 47 | X7.1931Y-3.415 48 | X7.1931Y-3.5134 49 | X7.1931Y-3.6118 50 | X7.1931Y-3.7102 51 | X7.1931Y-3.8087 52 | X7.1931Y-3.9071 53 | X7.1931Y-4.0055 54 | X7.1931Y-4.1039 55 | X7.1931Y-4.2024 56 | X7.1931Y-4.3008 57 | X7.39Y-2.972 58 | X7.39Y-3.0705 59 | X7.39Y-3.1689 60 | X7.39Y-3.2673 61 | X7.39Y-3.3657 62 | X7.39Y-3.4642 63 | X7.39Y-3.5626 64 | X7.39Y-3.661 65 | X7.39Y-3.7594 66 | X7.39Y-3.8579 67 | X7.39Y-3.9563 68 | X7.39Y-4.0547 69 | X7.39Y-4.1531 70 | X7.39Y-4.2516 71 | X7.39Y-4.35 72 | T3 73 | X6.7Y-3.14 74 | X6.8Y-3.14 75 | X6.9Y-3.14 76 | X7.0Y-3.14 77 | T4 78 | X5.65Y-2.5977 79 | X5.65Y-2.6977 80 | X5.65Y-2.7977 81 | X5.65Y-2.8977 82 | X5.65Y-2.9977 83 | X5.65Y-3.0977 84 | X5.65Y-3.1977 85 | X5.65Y-3.2977 86 | X5.65Y-3.3977 87 | X5.65Y-3.4977 88 | X5.65Y-3.5977 89 | X5.65Y-3.6977 90 | X5.65Y-3.7977 91 | X5.65Y-3.8977 92 | X5.65Y-3.9977 93 | X5.65Y-4.0977 94 | X5.65Y-4.1977 95 | X5.65Y-4.2977 96 | X5.65Y-4.3977 97 | X5.65Y-4.4977 98 | X5.9Y-4.4886 99 | X6.0Y-4.4886 100 | X6.1Y-4.4886 101 | X6.35Y-2.5977 102 | X6.35Y-2.6977 103 | X6.35Y-2.7977 104 | X6.35Y-2.8977 105 | X6.35Y-2.9977 106 | X6.35Y-3.0977 107 | X6.35Y-3.1977 108 | X6.35Y-3.2977 109 | X6.35Y-3.3977 110 | X6.35Y-3.4977 111 | X6.35Y-3.5977 112 | X6.35Y-3.6977 113 | X6.35Y-3.7977 114 | X6.35Y-3.8977 115 | X6.35Y-3.9977 116 | X6.35Y-4.0977 117 | X6.35Y-4.1977 118 | X6.35Y-4.2977 119 | X6.35Y-4.3977 120 | X6.35Y-4.4977 121 | T5 122 | X5.9045Y-2.7221 123 | X6.0955Y-2.7221 124 | T6 125 | X5.8927Y-2.6028 126 | X6.1073Y-2.6028 127 | T7 128 | X5.37Y-2.7 129 | X5.37Y-4.59 130 | X7.31Y-2.7 131 | X7.31Y-4.58 132 | T0 133 | M30 134 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/readme.md: -------------------------------------------------------------------------------- 1 | # Amiga600 Keyboard USB Adapter Using a Raspberry Pi Pico and MCP20008 2 | This Kicad 5.1.10 project enables an existing Amiga 600 Keyboard to be USB enabled via a Raspberry Pi Pico and MCP20008 with the appropriate firmware such as [This CircuitPython Firmware](https://github.com/thinghacker/Amiga600KeyboardUSBAdapter/tree/main/CircuitPythonCode-Amiga600Keyboard_USB_Pico) 3 | 4 | The hardware design open and distributed under a GPL Version 3 License 5 | 6 | [Here is a PDF of the schematic for reference](schematic.pdf) 7 | 8 | Gerbers have already been generated and are present in the "plot" directory 9 | 10 | ![PCB Front](pcb-images/pcb-front.PNG) 11 | 12 | ![PCB Back](pcb-images/pcb-back.PNG) 13 | -------------------------------------------------------------------------------- /PCB-Amiga600Keyboard_USB_Pico/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/PCB-Amiga600Keyboard_USB_Pico/schematic.pdf -------------------------------------------------------------------------------- /images/pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/images/pcb.jpg -------------------------------------------------------------------------------- /images/pcb_with_keyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinghacker/Amiga600KeyboardUSBAdapter/63a5306e6326d85d29163a108c3decefa9cb0fda/images/pcb_with_keyboard.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Amiga600 Keyboard USB Adapter 2 | This project enables an existing Amiga 600 Keyboard to operate as a USB Keyboard with the Case LEDs to indicate power/scroll lock and numlock. 3 | This is a reimplementation of my previous [Teensy 2.0++ based PCB](https://github.com/thinghacker/amiga600_usb_pcb) and [QMK Firmware](https://github.com/thinghacker/qmk_firmware/tree/amiga600/keyboards/amiga600) adapter however as the Teensy 2.0++ is approaching end of sales availability and is relatively expensive, 4 | this recreation uses the Raspberry Pi Pico in combination with a MCP20008 IO Expander for the keyboard interface and the keyboard driver software written in [CircuitPython](https://circuitpython.org/) 5 | 6 | The [Kicad](https://www.kicad.org/) files used to create the PCB are in the [PCB-Amiga600Keyboard_USB_Pico](PCB-Amiga600Keyboard_USB_Pico/) directory - generated gerbers are the **plot** directory 7 | The CircuitPython code is in the [CircuitPythonCode-Amiga600Keyboard_USB_Pico](CircuitPythonCode-Amiga600Keyboard_USB_Pico/) directory 8 | 9 | Please note that the code requires the following libraries in addition to the base CircuitPython Install 10 | * [Adafruit_CircuitPython_HID](https://github.com/adafruit/Adafruit_CircuitPython_HID) 11 | * [Adafruit_CircuitPython_MCP230xx](https://github.com/adafruit/Adafruit_CircuitPython_MCP230xx) 12 | 13 | 14 | ### Bill of Materials 15 | 16 | |Designation | Item | Description | Manufacturer| 17 | | ------------ | ------------ |------------ | ---------- | 18 | | U1 | Raspberry Pi Pico | RP2040 Board with USB Connector | https://www.raspberrypi.org/products/raspberry-pi-pico/ | 19 | | U2 | MCP20008 | 8 bit I2C IO Expander | https://www.microchip.com/wwwproducts/en/MCP23008 | 20 | |J1|4 Pin Header Right Angle PCB Mount 2.54mm spacing|Connects to Amiga 600 Case LEDs|Sullins Connector Solutions SWR25X-NRTC-S04-RB-BA available from Jaycar as HM3424| 21 | |J2|30 Pin FPC Connector 1.25mm spacing| Connects to the Amiga 600 Keyboard Ribbon|Molex 39532304| 22 | |R1 & R2 |4K7 Ohm Resistor|Pullups for I2C|various| 23 | 24 | ### PCB 25 | This is a fairly simple two layer through hole design. There are holes in the PCB to accomodate 3mm Nylon standoffs, self-adhesive types mean you can attach it to the back of the keyboard if desired. 26 | 27 | Assembled Prototype PCB 28 | ![Assembled Prototype PCB Image](images/pcb.jpg) 29 | 30 | Assembled Prototype PCB connected to a Keyboard 31 | ![Assembled Prototype PCB Image](images/pcb_with_keyboard.jpg) 32 | 33 | ### Construction Notes 34 | This PCB does not require any advanced soldering skills, it may be best to work with an experienced friend or watch some youtube videos on build techniques if you don't feel confident. 35 | 36 | The hardware and software as written by me is distributed under a GPL Version 3 License 37 | 38 | No claims to the name or any trademarks associated with Amiga, Raspberry Pi, Pico or Tim Tam are asserted here. 39 | --------------------------------------------------------------------------------