Compare commits
40 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
896d0b6aac | ||
|
|
6ac73f21f6 | ||
|
|
259a052251 | ||
|
|
f3ca7da2a0 | ||
|
|
8b17741d45 | ||
|
|
23d32d6050 | ||
|
|
b45e14a2b4 | ||
|
|
df408bc5a1 | ||
|
|
3f9c579195 | ||
|
|
68e78bc013 | ||
|
|
f053cec9b5 | ||
|
|
c02c00ea72 | ||
|
|
4e13a917c9 | ||
|
|
fc80e296be | ||
|
|
a9105a3368 | ||
|
|
907e66baa9 | ||
|
|
586fc5270d | ||
|
|
5b7a896be5 | ||
|
|
5885963705 | ||
|
|
ff26900b3c | ||
|
|
dcc5259ec1 | ||
|
|
ffa3a608b1 | ||
|
|
d3ebdc5b0e | ||
|
|
b8fcfb9f7d | ||
|
|
880111876f | ||
|
|
6e351b1bf4 | ||
|
|
1633e546b0 | ||
|
|
2d03dce9d8 | ||
|
|
d638800ad2 | ||
|
|
1e6247f857 | ||
|
|
1bc7279f2f | ||
|
|
e0a2249308 | ||
|
|
b727af7b92 | ||
|
|
9980f9f177 | ||
|
|
de4becabce | ||
|
|
ad6fee6ba5 | ||
|
|
b30203c8e6 | ||
|
|
0511a2b487 | ||
|
|
485aaf26e6 | ||
|
|
270650687b |
20
.github/ISSUE_TEMPLATE/electrical-design.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/electrical-design.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Electrical Design
|
||||
about: Issue Template for the feeder's Electrical Design
|
||||
title: ''
|
||||
labels: triage
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Version Number
|
||||
<!-- What is the latest known version number where this issue is present? -->
|
||||
|
||||
## Bugfix or Enhancement
|
||||
<!-- Is this issue a bug with the feeder, or a potential enhancement? -->
|
||||
|
||||
## Description
|
||||
<!-- Please describe the issue. Be sure to include relevant parts and photos/video if possible. -->
|
||||
|
||||
## Suggested Solution
|
||||
<!-- Please describe a suggested solution, if you have one in mind. -->
|
||||
20
.github/ISSUE_TEMPLATE/mechanical-design.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/mechanical-design.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Mechanical Design
|
||||
about: Issue Template for the feeder's Mechanical Design
|
||||
title: ''
|
||||
labels: triage
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Version Number
|
||||
<!-- What is the latest known version number where this issue is present? -->
|
||||
|
||||
## Bugfix or Enhancement
|
||||
<!-- Is this issue a bug with the feeder, or a potential enhancement? -->
|
||||
|
||||
## Description
|
||||
<!-- Please describe the issue. Be sure to include relevant parts and photos/video if possible. -->
|
||||
|
||||
## Suggested Solution
|
||||
<!-- Please describe a suggested solution, if you have one in mind. -->
|
||||
28
.github/workflows/export-ecad.yaml
vendored
28
.github/workflows/export-ecad.yaml
vendored
@@ -8,7 +8,7 @@ jobs:
|
||||
export-ecad:
|
||||
name: Export ECAD
|
||||
runs-on: ubuntu-latest
|
||||
container: setsoft/kicad_auto:ki7
|
||||
container: setsoft/kicad_auto:ki8
|
||||
|
||||
steps:
|
||||
|
||||
@@ -22,7 +22,7 @@ jobs:
|
||||
git lfs install
|
||||
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
lfs: true
|
||||
|
||||
@@ -39,8 +39,6 @@ jobs:
|
||||
echo "ref: ${{ github.ref }}"
|
||||
echo "default: ${{ env.default }}"
|
||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/feederFloor/feederFloor.kicad_pcb
|
||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/indexingWheel/indexingWheel.kicad_pcb
|
||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/photon-8mm-fid.kicad_pcb
|
||||
|
||||
@@ -50,8 +48,6 @@ jobs:
|
||||
export COMMIT=$(git rev-parse --short HEAD)
|
||||
echo "COMMIT = ${COMMIT}"
|
||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/feederFloor/feederFloor.kicad_pcb
|
||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/indexingWheel/indexingWheel.kicad_pcb
|
||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-8mm-fid/fiducialBoard.kicad_pcb
|
||||
|
||||
@@ -62,20 +58,6 @@ jobs:
|
||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e mobo.kicad_sch -b mobo.kicad_pcb -d mobo
|
||||
zip -r -j mobo.zip mobo/
|
||||
|
||||
- name: Generate Slot Export Files
|
||||
run: |
|
||||
cd pcb/feederFloor
|
||||
rm -rf feeder-floor/
|
||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e feederFloor.kicad_sch -b feederFloor.kicad_pcb -d slot
|
||||
zip -r -j slot.zip slot/
|
||||
|
||||
- name: Generate Indexing Wheel Export Files
|
||||
run: |
|
||||
cd pcb/indexingWheel
|
||||
rm -rf indexing-wheel/
|
||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e indexingWheel.kicad_sch -b indexingWheel.kicad_pcb -d indexing-wheel
|
||||
zip -r -j indexing-wheel.zip indexing-wheel/
|
||||
|
||||
- name: Generate Light Diffusion Export Files
|
||||
run: |
|
||||
cd pcb/light-diffusion
|
||||
@@ -93,15 +75,15 @@ jobs:
|
||||
- name: Zip PCB Export Files for Artifacts
|
||||
run: |
|
||||
cd pcb/
|
||||
zip -r -j Feeder-PCBs.zip photon-8mm-fid/photon-8mm-fid.zip light-diffusion/light-diffusion.zip indexingWheel/indexing-wheel.zip feederFloor/slot.zip mobo/mobo.zip
|
||||
zip -r -j Feeder-PCBs.zip photon-8mm-fid/photon-8mm-fid.zip light-diffusion/light-diffusion.zip mobo/mobo.zip
|
||||
|
||||
- name: Zip PCB Export Files for Release
|
||||
run: |
|
||||
cd pcb/
|
||||
zip -r -j Feeder-PCBs-${{ github.event.release.tag_name }}.zip photon-8mm-fid/photon-8mm-fid.zip light-diffusion/light-diffusion.zip indexingWheel/indexing-wheel.zip feederFloor/slot.zip mobo/mobo.zip
|
||||
zip -r -j Feeder-PCBs-${{ github.event.release.tag_name }}.zip photon-8mm-fid/photon-8mm-fid.zip light-diffusion/light-diffusion.zip mobo/mobo.zip
|
||||
|
||||
- name: Upload PCB Export Files as Artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Feeder-PCBs.zip
|
||||
path: pcb/Feeder-PCBs.zip
|
||||
|
||||
9
.github/workflows/export-mcad.yaml
vendored
9
.github/workflows/export-mcad.yaml
vendored
@@ -16,7 +16,10 @@ jobs:
|
||||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
||||
|
||||
- name: Download repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- run: git lfs install && git lfs pull
|
||||
|
||||
- name: Install FreeCAD Python library
|
||||
run: |
|
||||
@@ -75,7 +78,7 @@ jobs:
|
||||
|
||||
- name: Upload STLs as Artifacts
|
||||
if: github.event_name != 'release'
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Feeder-STLs
|
||||
path: ~/Feeder-STLs.zip
|
||||
@@ -84,7 +87,7 @@ jobs:
|
||||
|
||||
- name: Upload DXFs as Artifacts
|
||||
if: github.event_name != 'release'
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Feeder-DXFs
|
||||
path: ~/Feeder-DXFs.zip
|
||||
|
||||
1
.github/workflows/scripts/export-stl.py
vendored
1
.github/workflows/scripts/export-stl.py
vendored
@@ -193,4 +193,3 @@ if __name__ == '__main__':
|
||||
noun = "exception" if len(exceptions) == 1 else "exceptions"
|
||||
print(f"There {verb} {len(exceptions)} {noun}")
|
||||
|
||||
assert len(exceptions) == 0
|
||||
|
||||
166
DESIGN_DECISIONS.md
Normal file
166
DESIGN_DECISIONS.md
Normal file
@@ -0,0 +1,166 @@
|
||||
# LumenPnP Feeder Design Decisions
|
||||
|
||||
This page aims to illustrate the design decisions behind the LumenPnP Feeders. The design process started in early 2020, and has seen hundreds of iterations and approaches. This page gives background about why things are done the way they are, to help communicate to folks new to the project what has been tried, and why it was not chosen.
|
||||
|
||||
## Overview
|
||||
|
||||
The LumenPnP feeders are a mostly 3D printed tape feeder capable of reliably feeding 0402 components. They are designed to easily mount to a 20mm x 20mm v-slot aluminum extrusion. There are two motors in the system: a drive motor and a peel motor. The drive motor is a right-angle N20 motor with an encoder, giving us incredibly high resolution control of the motor's position. The peel motor is a standard N20 motor that peels film using a few 3D printed gears. The feeder has two buttons for tape loading and manual control. A third button puts the feeder into bootloader mode, allowing anyone to flash new firmware using a common FTDI USB to UART converter.
|
||||
|
||||
Feeders connect to power and communication when mounted to a rail through a "slot." Slots all connect back to a LumenPnP motherboard using an IDC cable. Each slot has a 1-Wire EEPROM onboard which holds the slot's address. This address is used to tell OpenPnP where a certain feeder has been mounted. All communication back to the motherboard happens over RS-485 using the Photon Protocol.
|
||||
|
||||
## Drive Subsystem
|
||||
|
||||
The Drive Subsystem is in charge of moving the tape forward at very precise increments. A right-angle N20 motor with a 1:1030 ratio gearbox was chosen for this task. This gear ratio provide a tremendous amount of torque for the size of the motor. An encoder on the back shaft of the motor has 14 ticks per revolution, which results in a theoretical 8.8 micron tape movement resolution. Of course, there are many other factors at play that reduce how precise the feeder is actually able to position tape, but the encoder is plenty precise enough for our application.
|
||||
|
||||
### Why not stepper motors?
|
||||
|
||||
While stepper motors are great for high-precision movement in systems like a 3D printer, they're less optimal for a small device like a feeder.
|
||||
|
||||
One of the main considerations with a feeder design is its width. The thinner a feeder is, the more of them you can fit on a given machine, and the more useful they become. Steppers thin enough to fit within a reasonably sized feeder suffer from a lack of torque, and would likely skip steps trying to advance tape. This is especially true when using microstepping, which would likely be necessary for the small movements required in a feeder.
|
||||
|
||||
Steppers also lack absolute positioning. All of their movements are relative, and without an encoder or a driver that supports skipped-step detection, we wouldn't know if the stepper has skipped steps.
|
||||
|
||||
It's possible to use a pancake stepper motor with a high-torque gearbox and a driver like the TMC2209 for skipped step detection, but a small DC motor with an encoder used fewer parts and had fewer points of failure.
|
||||
|
||||
### Why not an external gearbox/gear system?
|
||||
|
||||
Many feeder designs utilize a custom gear system that is mounted within the feeder itself. This can provide incredibly high torque if the gearing ratio is high enough.
|
||||
|
||||
We chose to avoid this for two main reasons. The first is that we trust the metal gearbox in a right-angle N20 motor much more than a (likely plastic) gear system that we designed. The N20 "standard" is ubiquitous and thoroughly tested. If we can keep our entire gearing system in metal gears, and in an easily sourced, highly tested part, it's a huge win for accessibility and reliability.
|
||||
|
||||
The second reason is ease of sourcing/building. If we used "off the shelf" nylon gears, not only would using a pre-existing gear be a huge design limitation, but also they might be difficult to source for the hobbyist or builder. If we went with totally custom gears, this makes the sourcing issue even worse. And even if folks could print them at home, the resolution required for the precise tape movement would be so high that the print would likely have to be SLA.
|
||||
|
||||
### Why not an encoder on the drive wheel itself?
|
||||
|
||||
In early versions of the feeder, we used a reflective sensor to watch for voids in the drive wheel. Putting our closed-loop feedback system on the last step of the drivetrain is great in theory. Monitoring as close to the actual metric you're controlling will provide a tighter coupling between your independent and dependent variables. There are three reasons we ended up switching to a magnetic encoder on the motor's back shaft.
|
||||
|
||||
The first is the low precision of the reflective sensor. The low/high and high/low threshold transition point of the reflective sensor was entirely dependent on how precise the cutout of the drive wheel was. Given that the wheels are made from PCBs which do not have a high tolerance with edge cuts, precision was very low. The sensor itself was also very noisy, requiring lots of signal processing to provide a useful signal. Early tests showed that *each feeder* would need its own custom calibration, which would be a tremendous effort, and discourage hacking.
|
||||
|
||||
On the other hand, a magnetic encoder provides 14 ticks per revolution of the motor. Because we are gearing down the motor with such a high ratio, we get an astronomically high precision of our gearbox output.
|
||||
|
||||
`14 ticks / 1 motor revolution * 1030 motor revolution / 1 gearbox revolution = 14420 ticks / 1 gearbox revolution`
|
||||
|
||||
This means that with a 128mm wheel circumference (32 teeth with 4mm spacing), we have a theoretical 8.877 micron tape positioning resolution. In practice, small tolerance stackups in the gearbox and drive wheel geometry mean we aren't this precise with actual tape position, but it's much better than the 200-500 or so micron resolution we saw with the reflective sensor.
|
||||
|
||||
The second reason is that any backlash error in the N20 gearbox can be accounted for by only positioning **from one side**. Backlash is only evident when there exists a reversal of the axis direction. If we only ever approach our position from one direction, backlash does not play into the tape positioning. Even when feeding backwards, we simply overshoot the final position, then approach again from the same direction.
|
||||
|
||||
The third reason is that with an encoder, we can move arbitrary distances. With a reflective sensor/slotted drive wheel, our resolution is limited to how far apart we've spaced the slots. With an encoder, we can command the feeder to move effectively any distance (provided it's a multiple of 8.877 microns!). This means feeding 1mm increments is fundamentally the same as feeding 4mm increments.
|
||||
|
||||
However, this all assumes that the encoder on the output wheel is comprised of a slotted PCB with a reflective sensor. Very thin encoder wheels and sensors exist, and might be a reasonable option for feeder tape positioning. We decided against this approach due to the lower resolution, cost, and likely need for customization that would make homebrew builds more difficult. They're also susceptible to errors due to light bleed.
|
||||
|
||||
## Peel Subsystem
|
||||
|
||||
The Peel Subsystem is comprised of a standard N20 motor with a 1:210 gear ratio, with a printed worm gear attached to the output shaft. This worm gear interfaces with a gearbox used for peeling the film. The two straight gears that perform the peeling are mounted with a positive interface, ensuring the frame holding them in place is constantly applying pressure between them. This interface is what grips the film and pulls it away from the tape.
|
||||
|
||||
### Why not passive peeling?
|
||||
|
||||
Passive peeling mechanisms have been shown to work in many instances. Allowing the force of the drive motor to remove and/or guide the film away from the tape is a great way to reduce the part count. We ultimately decided to use a dedicated peel motor instead of a passive approach for a number of reasons.
|
||||
|
||||
First, in our tests we found that passive film peeling methods were only reliable with highly-tuned 3D printer settings to make a working geometry. Not only do we want the design to be possible to be built at home, but it also needs to be straightforward to build in a scaled-up manufacturing setting. Scrapping a high volume of prints because of not hitting a very tight dimensional tolerance would be a frustrating and expensive experience for builders and Opulo alike.
|
||||
|
||||
Second, we found that passive film peeling worked better with certain types of tape, and worse with others. In situations where the film is lightly attached to the tape, depending on the method of passive film removal, *both* sides of the film could come unstuck from the tape, jamming the feeder. In the situation where the adhesion was high between the film and tape, the drive motor had to work much, much harder to both drive the tape and remove the film.
|
||||
|
||||
Our approach not only ensures there's plenty of force present pulling the film from the tape, but it also accommodates any type of tape as defined by the EIA-418 standard. Even if the film is strongly adhered to the tape, or stretches easily and requires more peeling, the flexture holding the peel gears together allows film to slide between the gears when overdriven.
|
||||
|
||||
### Aren't you worried about wear/creep with plastic gears and tensioning?
|
||||
|
||||
At first, we were. But the benefits of being printable are high, allowing the design to be more accessible. We ran lifetime tests with the peel mechanism and had very good results.
|
||||
|
||||
We tested the peel gear box to a quarter million feed cycles, resulting in a kilometer of tape fed, and saw no failure of the gearbox's ability to peel film. There is slight initial wear of the gears that is present within the first 10k cycles, but after this the system hits steady-state.
|
||||
|
||||
Even then, we ensured that this part is easily replaceable if need be. It's easily printable at home, and can be replaced in less than a minute with only two screws.
|
||||
|
||||
### Why no tension sensor?
|
||||
|
||||
We found that it wasn't necessary. Many feeder designs use a switch to detect when the film has reached a sufficient tension, but with our flextured peel gear box, we can simply overdrive the peel mechanism and the film will slip through the gears once it's been peeled fully and can't move any more.
|
||||
|
||||
## Voltage Rails
|
||||
|
||||
The feeders are powered by 24 volts on the slot. They step this down to 10 volts using a buck converter, then down to 3.3 volts using an LDO.
|
||||
|
||||
### Why 24 Volts Bus Voltage?
|
||||
|
||||
24 volts was chosen for the bus voltage for a few reasons. First, it's already on the motherboard given that it's the voltage of the power supply for the machine. Second, a higher voltage allows us to send more power over thinner wire. We wanted to use IDC connectors on the slot harness due to the form factor of the slot, and need for many connectors on a single cable. Using 24 volts lets us send more power for a given current limit of the cable.
|
||||
|
||||
Next comes the 10 volt buck converter. The N20 motors accept up to 12 volts, but the DRV8837 H-Bridge motor driver chips only accept up to 11 volts. This chip was chosen as the motor driver due to its cost and availability. Other chips with a higher acceptable voltage of course exist, but are much more expensive or can be hard to source. We also looked for 24 volts motors, but the N20 standard does not seem to accept a voltage higher than 12 volts.
|
||||
|
||||
Lastly is the 3.3 volt LDO. This is used for the microcontroller, encoder, switches, LEDs, etc.
|
||||
|
||||
## Slot Addressing
|
||||
|
||||
Each feeder is loaded into a slot, which is a small 3D print and PCB with a 1-Wire EEPROM. When the feeder is loaded, it reads the slot address from the EEPROM. This is what the host uses to address the feeder in most instances.
|
||||
|
||||
### Why is this even necessary?
|
||||
|
||||
This system isn't strictly necessary for feeders to operate. But it does allow the host to be much more intelligent about how it handles feeders.
|
||||
|
||||
If we neglected to have a slot address, then we'd be operating purely on the feeder's UUID. Assuming we've solved the problem of feeder discovery once inserted, the host would have no idea *where* the feeder is after it's mounted. This means that the user needs to manually jog the head to the feeder every time it's inserted in order to set pick position.
|
||||
|
||||
If we neglected to have a feeder UUID and only knew what location a feeder was mounted into, we wouldn't be able to keep track of what part the feeder has; we'd just know where it is.
|
||||
|
||||
By having both a feeder UUID, and an address for each location, we can dynamically find where a feeder has been inserted and know what part is at that location.
|
||||
|
||||
### Why not use voltage dividers?
|
||||
|
||||
Voltage dividers are a very inexpensive method of setting a specific value for a microcontroller. The EEPROM might seem like overkill to hold a single address. We chose to avoid voltage dividers for a couple reasons.
|
||||
|
||||
Firstly, the likelihood of error was very high. If we want to support up to 255 devices on the bus, we'd need that many addresses, and that many discrete voltages from the divider. With a 3.3 volt starting voltage, that means we have 12.9 millivolts per address. The precision of the resistors used would have to be incredibly high to support this resolution, and we'd be assuming no voltage loss in the spring-pin interface.
|
||||
|
||||
Voltage dividers also require that the feeder has an ADC as opposed to just a GPIO pin used for 1-Wire communication.
|
||||
|
||||
### Why not use an I2C/SPI EEPROM?
|
||||
|
||||
Provided that we were able to find a spring pin connector with two more wires, we absolutely could have! The benefit of 1-Wire is that it only requires one pin for both communication *and* power. I2C devices would require three dedicated pins: SDA, SCL, and VCC. The spring pin interface we chose that allows the entire feeder geometry to work only comes with up to 5 pins. With four already used for RS-485 and power, the one left is allocated to the EEPROM.
|
||||
|
||||
## Host Communication
|
||||
|
||||
At the top of the communication stack is the host. The host is what decides which feeder needs to feed, and when. OpenPnP acts as the host in this scenario. OpenPnP sends M485 commands to Marlin, and gets data from feeders back as a result. A custom OpenPnP feeder type `PhotonFeeder` supports common Photon commands such as feed, self-identify, initialize, or check for feed status.
|
||||
|
||||
Next comes Marlin. Marlin is the firmware on the LumenPnP and relays commands to feeders along an RS-485 bus that connects to every slot. It sends data using the Photon Protocol. A new M command for Marlin's gcode interface, M485, allows a host to send data down the RS-485 bus using Photon, and thereby communicating with feeders.
|
||||
|
||||
### Why RS-485?
|
||||
|
||||
RS-485 is an electrical standard that is widely used, particularly in industrial environments. Being a differential signal, electromagnetic interference that affects both data lines does not affect the signal integrity.
|
||||
|
||||
### Why not CAN?
|
||||
|
||||
CAN would have also been a great option for feeder communication. The decision to stick with a custom protocol over RS-485 ended up coming down to the large size of a CAN frame. The arbitration system is a bit overkill for a system with only two types of devices. Bit stuffing, plus a long CRC and end of frame section make the frame lengthy, keeping the bus noisier than necessary. CAN would have worked just fine, we just preferred to spin our own protocol that was exactly what we needed.
|
||||
|
||||
### Why not MODBUS?
|
||||
|
||||
MODBUS is a great, royalty-free protocol, and does fulfill many project requirements. There are two main reasons we decided to implement our own protocol.
|
||||
|
||||
The first is that MODBUS only supports the host initiating a message. We wanted to allow the possibility that feeders themselves can initiate communication back to the host, instead of only ever waiting to be queried.
|
||||
|
||||
The second reason is that we are not only working with a device ID, we are working with its slot address, which acts as its location on the machine. Although we could store address data in the feeder and query it with MODBUS, we couldn't scan every possible feeder ID easily. With Photon, we simply ping each of the 50 possible addresses and see which IDs come back. MODBUS is designed for systems where the ID of each device on the bus is known, and likely immutable. Feeders are easily swapped, and need to be easily recognized once inserted. This flexibility is what Photon provides.
|
||||
|
||||
## Microcontroller
|
||||
|
||||
An STM32F031C6T6 was chosen for the feeder's microcontroller. There were a few requirements of the chip in order to hit the project goals:
|
||||
|
||||
* Available and generally low cost (two variables that are a moving target in our modern semiconductor market)
|
||||
* At least 1 UART for RS-485
|
||||
* Sufficient GPIO for buttons, LED, encoder, etc.
|
||||
* Internal UUID for identification by the host
|
||||
|
||||
As a bonus, the chip's sibling, the STM32F031K6U6, has the same die as the C6T6 but with a smaller package. This means that by using the smaller chip's GPIO count as a constraint, we have a binary-compatible drop in replacement part to help alleviate availability issues.
|
||||
|
||||
Although a separate EEPROM chip or a software-defined UUID could solve the same problem as having a factory-burned UUID, having it in the chip prevents UUID erasure upon reprogramming, and fewer parts in the BOM.
|
||||
|
||||
## ID Fiducial Board
|
||||
|
||||
There's a small board on the nose of the feeder with three fiducials on it. The center one is for identifying location, and the other, smaller fiducials on either side identify what type of feeder it is.
|
||||
|
||||
**This is not currently used. This board was shipped with all feeder hardware to support potential future features.**
|
||||
|
||||
### Can it be used for setting pick position?
|
||||
|
||||
It could be used for *generalized* pick position. In general, there's too much variability in the precise placement of the PCB in the print from human error and print defects. If OpenPnP can scan for the fiducial and then apply a general offset to find the broad pick position, computer vision can find the precise pick position, provided it's paper tape. Plastic tape would likely need the precise pick position set manually.
|
||||
|
||||
### Can it be used for identifying feeder width?
|
||||
|
||||
Absolutely! The distance the two smaller fiducials are away from the larger centered one encodes what feeder type, or width, it is. Ideally the firmware image is the same across feeder widths, and it can't hurt to have the fiducial encode that information. OpenPnP doesn't actually care that much what width a feeder is if the fiducial <-> pick position offset is set correctly.
|
||||
|
||||
### Can it be used for setting slot location?
|
||||
|
||||
It can, but it might not be useful in most circumstances. In a world where slots are always mounted in the same location, OpenPnP could always know where the slot locations are on a LumenPnP. However, if builders have a different slot setup, or folks trying to squeeze out every last mm of feeder space are adjusting their slot locations to accommodate wider feeders, it could be useful. OpenPnP could use vision across a given Y position and in conjunction with the slot addresses of the feeders it found over RS485, automatically set slot positions.
|
||||
675
LICENSE
675
LICENSE
@@ -1,674 +1,17 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
# Opulo LumenPnP Feeder License and Copyright Notices
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
LumenPnP is (c) by Opulo
|
||||
|
||||
Preamble
|
||||
This notice must be included in any distributions of this project or derivative works.
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
Because this project consists of many types of source, individual parts of the project are made available under different licenses.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
1. The hardware designs located at `./cad` and `./pcb` are available under the CERN-OHL-W v2 license. Full text is available at https://cern.ch/cern-ohl.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
2. The software located at `./.github/workflows` is available under Mozilla MPL v2.0. Full text is available at https://www.mozilla.org/en-US/MPL/2.0/.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
3. The KiCAD libraries located at `./lib/kicad/` are available under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). Full text available at https://creativecommons.org/licenses/by-sa/4.0/
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
4. Opulo's logo, branding, and other media is used throughout this project. This is Copyright (c) Opulo and all rights are reserved. You may not distribute derivative works or products bearing the Opulo logo, icon, or other relevant mark. Derivative works should remove Opulo branding.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
5. The name `Opulo` and `LumenPnP` are trademarked, and only to be used by Opulo. Any derivative works should remove both marks.
|
||||
|
||||
48
bom.csv
48
bom.csv
@@ -1,26 +1,22 @@
|
||||
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
||||
frame,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
peel-gear-frame,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
peel-gear,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
release-lever,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
spool-holder,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
slot-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
"PLA-filament ",https://90a1c75758623581b3f8-5c119c3de181c9857fcb2784776b17ef.ssl.cf2.rackcdn.com/611532_989269_03_front_zoom.jpg,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg. Print both nozzle-rack and 2x z-gantry in a black color. Print top-light-mount and bottom-light-mount in a white color.
|
||||
M3-hex-nut,https://www.mcmaster.com/mvD/Contents/gfx/ImageCache/905/90592A085p1-b01-digitall@4x_636713274654410000.png?ver=ImageNotFound,8,FST,https://www.mcmaster.com/90592A085/,,,ISO4032
|
||||
M5-t-slot-nut,https://www.mcmaster.com/mvD/Contents/gfx/ImageCache/946/94645a102-@1x_637691238154449529.png?ver=ImageNotFound,1,FST,https://www.mcmaster.com/94645A102/,,,
|
||||
M3x12mm-flat-head,https://www.mcmaster.com/mvD/Contents/gfx/ImageCache/920/92095A181p1-b01-digitall@2x_636621119072096469.png,2,FST,https://www.mcmaster.com/92095A181/,,,
|
||||
M3x14mm-flat-head,https://www.mcmaster.com/mvD/Contents/gfx/ImageCache/920/92095A168p1-b01-digitall@2x_636621121852034289.png,2,FST,https://www.mcmaster.com/92095A168/,,,
|
||||
M3x15mm-flat-head,https://www.mcmaster.com/mvC/Contents/gfx/ImageCache/912/91292a115-@4x_637619456157301135.png,9,FST,https://www.mcmaster.com/91292A115,,,
|
||||
M5x10mm-socket-head,https://www.mcmaster.com/mvD/Contents/gfx/ImageCache/901/90128a234-@4x_637648793587366175.png,1,FST,https://www.mcmaster.com/90128A234/,,,ISO4762
|
||||
mobo,,1,PCA,,,,Click link above to download source
|
||||
slot,,1,PCA,,,,Click link above to download source
|
||||
drive-wheel,,1,PCB,,,,Click link above to download source
|
||||
light-diffusion,,1,PCB,,,,Click link above to download source
|
||||
photon-8mm-fid,,1,PCB,,,,Click link above to download source
|
||||
slot-harness,,1,CHA,,,,Click link above to download source
|
||||
n20-motor,https://www.makerfabs.com/image/cache/makerfabs/N20%20DC%20Gear%20Motor/N20%20DC%20Gear%20Motor_3-1000x750.jpg,4,MISC,https://www.servocity.com/110-rpm-micro-gear-motor/,,,1:210 gear ratio.
|
||||
right-angle-n20,https://sharvielectronics.com/wp-content/uploads/2022/06/N20-3V-50-RPM-Micro-Metal-Gear-Motor-With-Encoder_-Sharvielectronics.jpg,2,MISC,https://www.aliexpress.com/w/wholesale-worm-n20-encoder.html?catId=0&initiative_id=SB_20230324123628&SearchText=worm+n20+encoder,,,14-tick per revolution encoder. 1:1030 gear ratio.
|
||||
shaft-collar,https://m.media-amazon.com/images/I/51dc5w8vG5L._AC_.jpg,2,MISC,https://www.amazon.com/gp/product/B01EA912P8/ref=ppx_yo_dt_b_asin_title_o09_s00?ie=UTF8,,,
|
||||
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
||||
frame-8,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
peel-gear-frame-8-12,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
peel-gear,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
release-lever,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
spool-holder,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
thimble,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||
tape-guide,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,Yes,Replaces the spool arm and thimble. Used to guide tape into feeder for spools mounted beneath the machine.
|
||||
PLA-filament ,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/filament.png?v=1686314492,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg.
|
||||
M3x14mm-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x14mm.png?v=1686314903,3,FST,https://www.mcmaster.com/91294A133/,,,
|
||||
M3x12mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x12-self-tapping-flat-head.png?v=1686314903,11,FST,https://www.mcmaster.com/95893A403/,,,
|
||||
feeder-compression-spring,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/feeder-compression-spring.png?v=1691004799,1,MISC,https://www.leespring.com/compression-springs?search=LC026C06M,,,
|
||||
mobo,,1,PCA,,,,Click link above to download source
|
||||
drive-wheel,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/drive-wheel.png?v=1736458393,1,MISC,https://www.opulo.io/products/feeder-part-kit,,,Click link above to download source - This is made out of tumbled laser cut brass
|
||||
light-diffusion,,1,PCB,,,,Click link above to download source
|
||||
photon-8mm-fid,,1,PCB,,,,Click link above to download source
|
||||
n20-motor,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/peel-motor.png?v=1736457933,1,MISC,https://www.opulo.io/products/feeder-part-kit,https://www.servocity.com/110-rpm-micro-gear-motor/,,1:210 gear ratio.
|
||||
right-angle-n20,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/drive-motor_b5743809-ea03-461a-ab2a-760804040bd6.png?v=1736458345,1,MISC,https://www.opulo.io/products/feeder-part-kit,https://www.aliexpress.us/item/3256805361367595.html,,14-tick per revolution encoder. 1:1030 gear ratio gearbox.
|
||||
shaft-collar,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/shaft-collar.jpg?v=1686329653,1,MISC,https://www.opulo.io/products/feeder-part-kit,https://www.amazon.com/gp/product/B01EA912P8,,
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
3
cad/FDM/frame-12.FCStd
Normal file
3
cad/FDM/frame-12.FCStd
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f43605cd3dd9d27934f568c9b7a677516b6b339e04575646872136073e0cad2c
|
||||
size 113715080
|
||||
Binary file not shown.
BIN
cad/FDM/peel-gear-frame-8-12.FCStd
Normal file
BIN
cad/FDM/peel-gear-frame-8-12.FCStd
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
cad/FDM/tape-guide.FCStd
Normal file
BIN
cad/FDM/tape-guide.FCStd
Normal file
Binary file not shown.
BIN
cad/asm.FCStd
BIN
cad/asm.FCStd
Binary file not shown.
Binary file not shown.
4438
cad/feeder-compression-spring.step
Normal file
4438
cad/feeder-compression-spring.step
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
BIN
cad/rail.FCStd
BIN
cad/rail.FCStd
Binary file not shown.
Binary file not shown.
@@ -1,531 +0,0 @@
|
||||
ISO-10303-21;
|
||||
HEADER;
|
||||
/* Generated by software containing ST-Developer
|
||||
* from STEP Tools, Inc. (www.steptools.com)
|
||||
*/
|
||||
|
||||
FILE_DESCRIPTION(
|
||||
/* description */ (''),
|
||||
/* implementation_level */ '2;1');
|
||||
|
||||
FILE_NAME(
|
||||
/* name */ '/Users/stephen/feeder/cad/rev06/right-angle-n20.step',
|
||||
/* time_stamp */ '2022-07-08T14:54:03-04:00',
|
||||
/* author */ (''),
|
||||
/* organization */ (''),
|
||||
/* preprocessor_version */ 'ST-DEVELOPER v19',
|
||||
/* originating_system */ 'Autodesk Translation Framework v11.7.0.108',
|
||||
/* authorisation */ '');
|
||||
|
||||
FILE_SCHEMA (('AUTOMOTIVE_DESIGN { 1 0 10303 214 3 1 1 }'));
|
||||
ENDSEC;
|
||||
|
||||
DATA;
|
||||
#10=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION('',(#13),#444);
|
||||
#11=SHAPE_REPRESENTATION_RELATIONSHIP('SRR','None',#451,#12);
|
||||
#12=ADVANCED_BREP_SHAPE_REPRESENTATION('',(#14),#443);
|
||||
#13=STYLED_ITEM('',(#461),#14);
|
||||
#14=MANIFOLD_SOLID_BREP('Body1',#258);
|
||||
#15=FACE_BOUND('',#53,.T.);
|
||||
#16=PLANE('',#276);
|
||||
#17=PLANE('',#277);
|
||||
#18=PLANE('',#278);
|
||||
#19=PLANE('',#279);
|
||||
#20=PLANE('',#280);
|
||||
#21=PLANE('',#285);
|
||||
#22=PLANE('',#287);
|
||||
#23=PLANE('',#288);
|
||||
#24=PLANE('',#289);
|
||||
#25=PLANE('',#290);
|
||||
#26=PLANE('',#291);
|
||||
#27=PLANE('',#292);
|
||||
#28=PLANE('',#295);
|
||||
#29=FACE_OUTER_BOUND('',#45,.T.);
|
||||
#30=FACE_OUTER_BOUND('',#46,.T.);
|
||||
#31=FACE_OUTER_BOUND('',#47,.T.);
|
||||
#32=FACE_OUTER_BOUND('',#48,.T.);
|
||||
#33=FACE_OUTER_BOUND('',#49,.T.);
|
||||
#34=FACE_OUTER_BOUND('',#50,.T.);
|
||||
#35=FACE_OUTER_BOUND('',#51,.T.);
|
||||
#36=FACE_OUTER_BOUND('',#52,.T.);
|
||||
#37=FACE_OUTER_BOUND('',#54,.T.);
|
||||
#38=FACE_OUTER_BOUND('',#55,.T.);
|
||||
#39=FACE_OUTER_BOUND('',#56,.T.);
|
||||
#40=FACE_OUTER_BOUND('',#57,.T.);
|
||||
#41=FACE_OUTER_BOUND('',#58,.T.);
|
||||
#42=FACE_OUTER_BOUND('',#59,.T.);
|
||||
#43=FACE_OUTER_BOUND('',#60,.T.);
|
||||
#44=FACE_OUTER_BOUND('',#61,.T.);
|
||||
#45=EDGE_LOOP('',(#173,#174,#175,#176,#177));
|
||||
#46=EDGE_LOOP('',(#178,#179,#180,#181));
|
||||
#47=EDGE_LOOP('',(#182,#183,#184,#185));
|
||||
#48=EDGE_LOOP('',(#186,#187,#188));
|
||||
#49=EDGE_LOOP('',(#189,#190,#191));
|
||||
#50=EDGE_LOOP('',(#192,#193,#194,#195));
|
||||
#51=EDGE_LOOP('',(#196,#197,#198,#199,#200));
|
||||
#52=EDGE_LOOP('',(#201,#202,#203,#204,#205,#206));
|
||||
#53=EDGE_LOOP('',(#207));
|
||||
#54=EDGE_LOOP('',(#208,#209,#210,#211,#212,#213));
|
||||
#55=EDGE_LOOP('',(#214,#215,#216,#217,#218));
|
||||
#56=EDGE_LOOP('',(#219,#220,#221));
|
||||
#57=EDGE_LOOP('',(#222,#223,#224));
|
||||
#58=EDGE_LOOP('',(#225,#226,#227,#228));
|
||||
#59=EDGE_LOOP('',(#229,#230,#231,#232,#233));
|
||||
#60=EDGE_LOOP('',(#234,#235,#236,#237));
|
||||
#61=EDGE_LOOP('',(#238));
|
||||
#62=CIRCLE('',#273,6.);
|
||||
#63=CIRCLE('',#274,6.);
|
||||
#64=CIRCLE('',#275,6.);
|
||||
#65=CIRCLE('',#281,6.);
|
||||
#66=CIRCLE('',#283,6.);
|
||||
#67=CIRCLE('',#284,6.);
|
||||
#68=CIRCLE('',#286,1.5);
|
||||
#69=CIRCLE('',#294,1.5);
|
||||
#70=LINE('',#375,#95);
|
||||
#71=LINE('',#381,#96);
|
||||
#72=LINE('',#385,#97);
|
||||
#73=LINE('',#387,#98);
|
||||
#74=LINE('',#388,#99);
|
||||
#75=LINE('',#391,#100);
|
||||
#76=LINE('',#393,#101);
|
||||
#77=LINE('',#394,#102);
|
||||
#78=LINE('',#397,#103);
|
||||
#79=LINE('',#398,#104);
|
||||
#80=LINE('',#401,#105);
|
||||
#81=LINE('',#402,#106);
|
||||
#82=LINE('',#411,#107);
|
||||
#83=LINE('',#413,#108);
|
||||
#84=LINE('',#415,#109);
|
||||
#85=LINE('',#416,#110);
|
||||
#86=LINE('',#422,#111);
|
||||
#87=LINE('',#423,#112);
|
||||
#88=LINE('',#425,#113);
|
||||
#89=LINE('',#426,#114);
|
||||
#90=LINE('',#428,#115);
|
||||
#91=LINE('',#430,#116);
|
||||
#92=LINE('',#432,#117);
|
||||
#93=LINE('',#434,#118);
|
||||
#94=LINE('',#438,#119);
|
||||
#95=VECTOR('',#300,1.);
|
||||
#96=VECTOR('',#305,1.);
|
||||
#97=VECTOR('',#310,1.);
|
||||
#98=VECTOR('',#311,1.);
|
||||
#99=VECTOR('',#312,1.);
|
||||
#100=VECTOR('',#315,1.);
|
||||
#101=VECTOR('',#316,1.);
|
||||
#102=VECTOR('',#317,1.);
|
||||
#103=VECTOR('',#320,1.);
|
||||
#104=VECTOR('',#321,1.);
|
||||
#105=VECTOR('',#324,1.);
|
||||
#106=VECTOR('',#325,1.);
|
||||
#107=VECTOR('',#338,1.);
|
||||
#108=VECTOR('',#339,1.);
|
||||
#109=VECTOR('',#340,1.);
|
||||
#110=VECTOR('',#341,1.);
|
||||
#111=VECTOR('',#346,1.);
|
||||
#112=VECTOR('',#347,1.);
|
||||
#113=VECTOR('',#348,1.);
|
||||
#114=VECTOR('',#349,1.);
|
||||
#115=VECTOR('',#352,1.);
|
||||
#116=VECTOR('',#355,1.);
|
||||
#117=VECTOR('',#358,1.);
|
||||
#118=VECTOR('',#361,1.);
|
||||
#119=VECTOR('',#366,1.5);
|
||||
#120=VERTEX_POINT('',#373);
|
||||
#121=VERTEX_POINT('',#374);
|
||||
#122=VERTEX_POINT('',#376);
|
||||
#123=VERTEX_POINT('',#378);
|
||||
#124=VERTEX_POINT('',#380);
|
||||
#125=VERTEX_POINT('',#384);
|
||||
#126=VERTEX_POINT('',#386);
|
||||
#127=VERTEX_POINT('',#390);
|
||||
#128=VERTEX_POINT('',#392);
|
||||
#129=VERTEX_POINT('',#396);
|
||||
#130=VERTEX_POINT('',#400);
|
||||
#131=VERTEX_POINT('',#406);
|
||||
#132=VERTEX_POINT('',#410);
|
||||
#133=VERTEX_POINT('',#412);
|
||||
#134=VERTEX_POINT('',#414);
|
||||
#135=VERTEX_POINT('',#417);
|
||||
#136=VERTEX_POINT('',#420);
|
||||
#137=VERTEX_POINT('',#421);
|
||||
#138=VERTEX_POINT('',#424);
|
||||
#139=VERTEX_POINT('',#437);
|
||||
#140=EDGE_CURVE('',#120,#121,#70,.T.);
|
||||
#141=EDGE_CURVE('',#120,#122,#62,.T.);
|
||||
#142=EDGE_CURVE('',#122,#123,#63,.T.);
|
||||
#143=EDGE_CURVE('',#123,#124,#71,.T.);
|
||||
#144=EDGE_CURVE('',#121,#124,#64,.T.);
|
||||
#145=EDGE_CURVE('',#121,#125,#72,.T.);
|
||||
#146=EDGE_CURVE('',#126,#125,#73,.T.);
|
||||
#147=EDGE_CURVE('',#120,#126,#74,.T.);
|
||||
#148=EDGE_CURVE('',#123,#127,#75,.T.);
|
||||
#149=EDGE_CURVE('',#127,#128,#76,.T.);
|
||||
#150=EDGE_CURVE('',#124,#128,#77,.T.);
|
||||
#151=EDGE_CURVE('',#122,#129,#78,.T.);
|
||||
#152=EDGE_CURVE('',#129,#120,#79,.T.);
|
||||
#153=EDGE_CURVE('',#130,#122,#80,.T.);
|
||||
#154=EDGE_CURVE('',#123,#130,#81,.T.);
|
||||
#155=EDGE_CURVE('',#128,#125,#65,.T.);
|
||||
#156=EDGE_CURVE('',#127,#131,#66,.T.);
|
||||
#157=EDGE_CURVE('',#131,#126,#67,.T.);
|
||||
#158=EDGE_CURVE('',#129,#132,#82,.T.);
|
||||
#159=EDGE_CURVE('',#126,#133,#83,.T.);
|
||||
#160=EDGE_CURVE('',#133,#134,#84,.T.);
|
||||
#161=EDGE_CURVE('',#132,#134,#85,.T.);
|
||||
#162=EDGE_CURVE('',#135,#135,#68,.T.);
|
||||
#163=EDGE_CURVE('',#136,#137,#86,.T.);
|
||||
#164=EDGE_CURVE('',#136,#127,#87,.T.);
|
||||
#165=EDGE_CURVE('',#130,#138,#88,.T.);
|
||||
#166=EDGE_CURVE('',#137,#138,#89,.T.);
|
||||
#167=EDGE_CURVE('',#138,#132,#90,.T.);
|
||||
#168=EDGE_CURVE('',#131,#136,#91,.T.);
|
||||
#169=EDGE_CURVE('',#133,#131,#92,.T.);
|
||||
#170=EDGE_CURVE('',#134,#137,#93,.T.);
|
||||
#171=EDGE_CURVE('',#135,#139,#94,.T.);
|
||||
#172=EDGE_CURVE('',#139,#139,#69,.T.);
|
||||
#173=ORIENTED_EDGE('',*,*,#140,.F.);
|
||||
#174=ORIENTED_EDGE('',*,*,#141,.T.);
|
||||
#175=ORIENTED_EDGE('',*,*,#142,.T.);
|
||||
#176=ORIENTED_EDGE('',*,*,#143,.T.);
|
||||
#177=ORIENTED_EDGE('',*,*,#144,.F.);
|
||||
#178=ORIENTED_EDGE('',*,*,#140,.T.);
|
||||
#179=ORIENTED_EDGE('',*,*,#145,.T.);
|
||||
#180=ORIENTED_EDGE('',*,*,#146,.F.);
|
||||
#181=ORIENTED_EDGE('',*,*,#147,.F.);
|
||||
#182=ORIENTED_EDGE('',*,*,#143,.F.);
|
||||
#183=ORIENTED_EDGE('',*,*,#148,.T.);
|
||||
#184=ORIENTED_EDGE('',*,*,#149,.T.);
|
||||
#185=ORIENTED_EDGE('',*,*,#150,.F.);
|
||||
#186=ORIENTED_EDGE('',*,*,#151,.F.);
|
||||
#187=ORIENTED_EDGE('',*,*,#141,.F.);
|
||||
#188=ORIENTED_EDGE('',*,*,#152,.F.);
|
||||
#189=ORIENTED_EDGE('',*,*,#153,.F.);
|
||||
#190=ORIENTED_EDGE('',*,*,#154,.F.);
|
||||
#191=ORIENTED_EDGE('',*,*,#142,.F.);
|
||||
#192=ORIENTED_EDGE('',*,*,#144,.T.);
|
||||
#193=ORIENTED_EDGE('',*,*,#150,.T.);
|
||||
#194=ORIENTED_EDGE('',*,*,#155,.T.);
|
||||
#195=ORIENTED_EDGE('',*,*,#145,.F.);
|
||||
#196=ORIENTED_EDGE('',*,*,#149,.F.);
|
||||
#197=ORIENTED_EDGE('',*,*,#156,.T.);
|
||||
#198=ORIENTED_EDGE('',*,*,#157,.T.);
|
||||
#199=ORIENTED_EDGE('',*,*,#146,.T.);
|
||||
#200=ORIENTED_EDGE('',*,*,#155,.F.);
|
||||
#201=ORIENTED_EDGE('',*,*,#158,.F.);
|
||||
#202=ORIENTED_EDGE('',*,*,#152,.T.);
|
||||
#203=ORIENTED_EDGE('',*,*,#147,.T.);
|
||||
#204=ORIENTED_EDGE('',*,*,#159,.T.);
|
||||
#205=ORIENTED_EDGE('',*,*,#160,.T.);
|
||||
#206=ORIENTED_EDGE('',*,*,#161,.F.);
|
||||
#207=ORIENTED_EDGE('',*,*,#162,.T.);
|
||||
#208=ORIENTED_EDGE('',*,*,#163,.F.);
|
||||
#209=ORIENTED_EDGE('',*,*,#164,.T.);
|
||||
#210=ORIENTED_EDGE('',*,*,#148,.F.);
|
||||
#211=ORIENTED_EDGE('',*,*,#154,.T.);
|
||||
#212=ORIENTED_EDGE('',*,*,#165,.T.);
|
||||
#213=ORIENTED_EDGE('',*,*,#166,.F.);
|
||||
#214=ORIENTED_EDGE('',*,*,#165,.F.);
|
||||
#215=ORIENTED_EDGE('',*,*,#153,.T.);
|
||||
#216=ORIENTED_EDGE('',*,*,#151,.T.);
|
||||
#217=ORIENTED_EDGE('',*,*,#158,.T.);
|
||||
#218=ORIENTED_EDGE('',*,*,#167,.F.);
|
||||
#219=ORIENTED_EDGE('',*,*,#156,.F.);
|
||||
#220=ORIENTED_EDGE('',*,*,#164,.F.);
|
||||
#221=ORIENTED_EDGE('',*,*,#168,.F.);
|
||||
#222=ORIENTED_EDGE('',*,*,#157,.F.);
|
||||
#223=ORIENTED_EDGE('',*,*,#169,.F.);
|
||||
#224=ORIENTED_EDGE('',*,*,#159,.F.);
|
||||
#225=ORIENTED_EDGE('',*,*,#161,.T.);
|
||||
#226=ORIENTED_EDGE('',*,*,#170,.T.);
|
||||
#227=ORIENTED_EDGE('',*,*,#166,.T.);
|
||||
#228=ORIENTED_EDGE('',*,*,#167,.T.);
|
||||
#229=ORIENTED_EDGE('',*,*,#160,.F.);
|
||||
#230=ORIENTED_EDGE('',*,*,#169,.T.);
|
||||
#231=ORIENTED_EDGE('',*,*,#168,.T.);
|
||||
#232=ORIENTED_EDGE('',*,*,#163,.T.);
|
||||
#233=ORIENTED_EDGE('',*,*,#170,.F.);
|
||||
#234=ORIENTED_EDGE('',*,*,#162,.F.);
|
||||
#235=ORIENTED_EDGE('',*,*,#171,.T.);
|
||||
#236=ORIENTED_EDGE('',*,*,#172,.F.);
|
||||
#237=ORIENTED_EDGE('',*,*,#171,.F.);
|
||||
#238=ORIENTED_EDGE('',*,*,#172,.T.);
|
||||
#239=CYLINDRICAL_SURFACE('',#272,6.);
|
||||
#240=CYLINDRICAL_SURFACE('',#282,6.);
|
||||
#241=CYLINDRICAL_SURFACE('',#293,1.5);
|
||||
#242=ADVANCED_FACE('',(#29),#239,.T.);
|
||||
#243=ADVANCED_FACE('',(#30),#16,.T.);
|
||||
#244=ADVANCED_FACE('',(#31),#17,.F.);
|
||||
#245=ADVANCED_FACE('',(#32),#18,.F.);
|
||||
#246=ADVANCED_FACE('',(#33),#19,.F.);
|
||||
#247=ADVANCED_FACE('',(#34),#20,.F.);
|
||||
#248=ADVANCED_FACE('',(#35),#240,.T.);
|
||||
#249=ADVANCED_FACE('',(#36,#15),#21,.F.);
|
||||
#250=ADVANCED_FACE('',(#37),#22,.F.);
|
||||
#251=ADVANCED_FACE('',(#38),#23,.F.);
|
||||
#252=ADVANCED_FACE('',(#39),#24,.F.);
|
||||
#253=ADVANCED_FACE('',(#40),#25,.F.);
|
||||
#254=ADVANCED_FACE('',(#41),#26,.T.);
|
||||
#255=ADVANCED_FACE('',(#42),#27,.F.);
|
||||
#256=ADVANCED_FACE('',(#43),#241,.T.);
|
||||
#257=ADVANCED_FACE('',(#44),#28,.T.);
|
||||
#258=CLOSED_SHELL('',(#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,
|
||||
#252,#253,#254,#255,#256,#257));
|
||||
#259=DERIVED_UNIT_ELEMENT(#261,1.);
|
||||
#260=DERIVED_UNIT_ELEMENT(#446,-3.);
|
||||
#261=(
|
||||
MASS_UNIT()
|
||||
NAMED_UNIT(*)
|
||||
SI_UNIT(.KILO.,.GRAM.)
|
||||
);
|
||||
#262=DERIVED_UNIT((#259,#260));
|
||||
#263=MEASURE_REPRESENTATION_ITEM('density measure',
|
||||
POSITIVE_RATIO_MEASURE(7850.),#262);
|
||||
#264=PROPERTY_DEFINITION_REPRESENTATION(#269,#266);
|
||||
#265=PROPERTY_DEFINITION_REPRESENTATION(#270,#267);
|
||||
#266=REPRESENTATION('material name',(#268),#443);
|
||||
#267=REPRESENTATION('density',(#263),#443);
|
||||
#268=DESCRIPTIVE_REPRESENTATION_ITEM('Steel','Steel');
|
||||
#269=PROPERTY_DEFINITION('material property','material name',#453);
|
||||
#270=PROPERTY_DEFINITION('material property','density of part',#453);
|
||||
#271=AXIS2_PLACEMENT_3D('placement',#371,#296,#297);
|
||||
#272=AXIS2_PLACEMENT_3D('',#372,#298,#299);
|
||||
#273=AXIS2_PLACEMENT_3D('',#377,#301,#302);
|
||||
#274=AXIS2_PLACEMENT_3D('',#379,#303,#304);
|
||||
#275=AXIS2_PLACEMENT_3D('',#382,#306,#307);
|
||||
#276=AXIS2_PLACEMENT_3D('',#383,#308,#309);
|
||||
#277=AXIS2_PLACEMENT_3D('',#389,#313,#314);
|
||||
#278=AXIS2_PLACEMENT_3D('',#395,#318,#319);
|
||||
#279=AXIS2_PLACEMENT_3D('',#399,#322,#323);
|
||||
#280=AXIS2_PLACEMENT_3D('',#403,#326,#327);
|
||||
#281=AXIS2_PLACEMENT_3D('',#404,#328,#329);
|
||||
#282=AXIS2_PLACEMENT_3D('',#405,#330,#331);
|
||||
#283=AXIS2_PLACEMENT_3D('',#407,#332,#333);
|
||||
#284=AXIS2_PLACEMENT_3D('',#408,#334,#335);
|
||||
#285=AXIS2_PLACEMENT_3D('',#409,#336,#337);
|
||||
#286=AXIS2_PLACEMENT_3D('',#418,#342,#343);
|
||||
#287=AXIS2_PLACEMENT_3D('',#419,#344,#345);
|
||||
#288=AXIS2_PLACEMENT_3D('',#427,#350,#351);
|
||||
#289=AXIS2_PLACEMENT_3D('',#429,#353,#354);
|
||||
#290=AXIS2_PLACEMENT_3D('',#431,#356,#357);
|
||||
#291=AXIS2_PLACEMENT_3D('',#433,#359,#360);
|
||||
#292=AXIS2_PLACEMENT_3D('',#435,#362,#363);
|
||||
#293=AXIS2_PLACEMENT_3D('',#436,#364,#365);
|
||||
#294=AXIS2_PLACEMENT_3D('',#439,#367,#368);
|
||||
#295=AXIS2_PLACEMENT_3D('',#440,#369,#370);
|
||||
#296=DIRECTION('axis',(0.,0.,1.));
|
||||
#297=DIRECTION('refdir',(1.,0.,0.));
|
||||
#298=DIRECTION('center_axis',(0.,1.,-6.7E-16));
|
||||
#299=DIRECTION('ref_axis',(-1.,4.64982555490714E-29,6.94003814165245E-14));
|
||||
#300=DIRECTION('',(0.,-1.,6.7E-16));
|
||||
#301=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
||||
#302=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#303=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
||||
#304=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#305=DIRECTION('',(0.,-1.,6.7E-16));
|
||||
#306=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
||||
#307=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#308=DIRECTION('center_axis',(0.,6.7E-16,1.));
|
||||
#309=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#310=DIRECTION('',(1.,0.,0.));
|
||||
#311=DIRECTION('',(0.,-1.,6.7E-16));
|
||||
#312=DIRECTION('',(1.,0.,0.));
|
||||
#313=DIRECTION('center_axis',(0.,6.7E-16,1.));
|
||||
#314=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#315=DIRECTION('',(1.,0.,0.));
|
||||
#316=DIRECTION('',(0.,-1.,6.7E-16));
|
||||
#317=DIRECTION('',(1.,0.,0.));
|
||||
#318=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
||||
#319=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
||||
#320=DIRECTION('',(0.,2.2E-16,1.));
|
||||
#321=DIRECTION('',(1.,0.,0.));
|
||||
#322=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
||||
#323=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
||||
#324=DIRECTION('',(0.,2.2E-16,1.));
|
||||
#325=DIRECTION('',(-1.,0.,0.));
|
||||
#326=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
||||
#327=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
||||
#328=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
||||
#329=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#330=DIRECTION('center_axis',(0.,1.,-6.7E-16));
|
||||
#331=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#332=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
||||
#333=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#334=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
||||
#335=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#336=DIRECTION('center_axis',(0.,-6.7E-16,-1.));
|
||||
#337=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#338=DIRECTION('',(0.,1.,-6.7E-16));
|
||||
#339=DIRECTION('',(1.,0.,0.));
|
||||
#340=DIRECTION('',(0.,1.,-6.7E-16));
|
||||
#341=DIRECTION('',(1.,0.,0.));
|
||||
#342=DIRECTION('center_axis',(0.,-4.4E-16,-1.));
|
||||
#343=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#344=DIRECTION('center_axis',(0.,6.7E-16,1.));
|
||||
#345=DIRECTION('ref_axis',(-1.,0.,0.));
|
||||
#346=DIRECTION('',(0.,1.,-6.7E-16));
|
||||
#347=DIRECTION('',(-1.,0.,0.));
|
||||
#348=DIRECTION('',(0.,1.,-6.7E-16));
|
||||
#349=DIRECTION('',(-1.,0.,0.));
|
||||
#350=DIRECTION('center_axis',(1.,0.,0.));
|
||||
#351=DIRECTION('ref_axis',(0.,6.7E-16,1.));
|
||||
#352=DIRECTION('',(0.,2.2E-16,1.));
|
||||
#353=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
||||
#354=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
||||
#355=DIRECTION('',(0.,-2.2E-16,-1.));
|
||||
#356=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
||||
#357=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
||||
#358=DIRECTION('',(0.,-2.2E-16,-1.));
|
||||
#359=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
||||
#360=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
||||
#361=DIRECTION('',(0.,-2.2E-16,-1.));
|
||||
#362=DIRECTION('center_axis',(-1.,0.,0.));
|
||||
#363=DIRECTION('ref_axis',(0.,-6.7E-16,-1.));
|
||||
#364=DIRECTION('center_axis',(0.,-4.4E-16,-1.));
|
||||
#365=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#366=DIRECTION('',(0.,4.4E-16,1.));
|
||||
#367=DIRECTION('center_axis',(0.,2.2E-16,1.));
|
||||
#368=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#369=DIRECTION('center_axis',(0.,2.2E-16,1.));
|
||||
#370=DIRECTION('ref_axis',(1.,0.,0.));
|
||||
#371=CARTESIAN_POINT('',(0.,0.,0.));
|
||||
#372=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#373=CARTESIAN_POINT('',(-3.316624790355,9.E-15,5.));
|
||||
#374=CARTESIAN_POINT('',(-3.316624790355,-17.,5.));
|
||||
#375=CARTESIAN_POINT('',(-3.316624790355,3.33E-15,5.));
|
||||
#376=CARTESIAN_POINT('',(-6.,0.,-1.254291E-8));
|
||||
#377=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#378=CARTESIAN_POINT('',(-3.316624790356,-9.E-15,-5.));
|
||||
#379=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#380=CARTESIAN_POINT('',(-3.316624790356,-17.,-5.));
|
||||
#381=CARTESIAN_POINT('',(-3.316624790356,-3.33E-15,-5.));
|
||||
#382=CARTESIAN_POINT('Origin',(0.,-17.,3.552713678801E-15));
|
||||
#383=CARTESIAN_POINT('Origin',(-3.316624790355,3.33E-15,5.));
|
||||
#384=CARTESIAN_POINT('',(3.316624790355,-17.,5.));
|
||||
#385=CARTESIAN_POINT('',(-3.316624790355,-17.,5.));
|
||||
#386=CARTESIAN_POINT('',(3.316624790355,9.E-15,5.));
|
||||
#387=CARTESIAN_POINT('',(3.316624790355,3.33E-15,5.));
|
||||
#388=CARTESIAN_POINT('',(-3.316624790355,1.11E-15,5.));
|
||||
#389=CARTESIAN_POINT('Origin',(-3.316624790356,-3.33E-15,-5.));
|
||||
#390=CARTESIAN_POINT('',(3.316624790356,-9.E-15,-5.));
|
||||
#391=CARTESIAN_POINT('',(-3.316624790356,-1.11E-15,-5.));
|
||||
#392=CARTESIAN_POINT('',(3.316624790356,-17.,-5.));
|
||||
#393=CARTESIAN_POINT('',(3.316624790356,-3.33E-15,-5.));
|
||||
#394=CARTESIAN_POINT('',(-3.316624790356,-17.,-5.));
|
||||
#395=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#396=CARTESIAN_POINT('',(-6.,7.E-15,5.));
|
||||
#397=CARTESIAN_POINT('',(-6.,-1.11E-15,-5.));
|
||||
#398=CARTESIAN_POINT('',(-6.,1.11E-15,5.));
|
||||
#399=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#400=CARTESIAN_POINT('',(-6.,-7.E-15,-5.));
|
||||
#401=CARTESIAN_POINT('',(-6.,-1.11E-15,-5.));
|
||||
#402=CARTESIAN_POINT('',(6.,-1.11E-15,-5.));
|
||||
#403=CARTESIAN_POINT('Origin',(-7.64E-15,-17.,3.19744231092E-14));
|
||||
#404=CARTESIAN_POINT('Origin',(0.,-17.,3.552713678801E-15));
|
||||
#405=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#406=CARTESIAN_POINT('',(6.,0.,4.E-15));
|
||||
#407=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#408=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#409=CARTESIAN_POINT('Origin',(-6.,3.33E-15,5.));
|
||||
#410=CARTESIAN_POINT('',(-6.,18.,5.));
|
||||
#411=CARTESIAN_POINT('',(-6.,3.33E-15,5.));
|
||||
#412=CARTESIAN_POINT('',(6.,7.E-15,5.));
|
||||
#413=CARTESIAN_POINT('',(-6.,1.11E-15,5.));
|
||||
#414=CARTESIAN_POINT('',(6.,18.,5.));
|
||||
#415=CARTESIAN_POINT('',(6.,3.33E-15,5.));
|
||||
#416=CARTESIAN_POINT('',(-6.,18.,5.));
|
||||
#417=CARTESIAN_POINT('',(-1.5,14.,5.));
|
||||
#418=CARTESIAN_POINT('Origin',(0.,14.,5.));
|
||||
#419=CARTESIAN_POINT('Origin',(6.,-3.33E-15,-5.));
|
||||
#420=CARTESIAN_POINT('',(6.,-7.E-15,-5.));
|
||||
#421=CARTESIAN_POINT('',(6.,18.,-5.));
|
||||
#422=CARTESIAN_POINT('',(6.,-3.33E-15,-5.));
|
||||
#423=CARTESIAN_POINT('',(6.,-1.11E-15,-5.));
|
||||
#424=CARTESIAN_POINT('',(-6.,18.,-5.));
|
||||
#425=CARTESIAN_POINT('',(-6.,-3.33E-15,-5.));
|
||||
#426=CARTESIAN_POINT('',(6.,18.,-5.));
|
||||
#427=CARTESIAN_POINT('Origin',(-6.,-3.33E-15,-5.));
|
||||
#428=CARTESIAN_POINT('',(-6.,18.,-5.));
|
||||
#429=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#430=CARTESIAN_POINT('',(6.,1.11E-15,5.));
|
||||
#431=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
||||
#432=CARTESIAN_POINT('',(6.,1.11E-15,5.));
|
||||
#433=CARTESIAN_POINT('Origin',(0.,18.,-7.105427357601E-15));
|
||||
#434=CARTESIAN_POINT('',(6.,18.,5.));
|
||||
#435=CARTESIAN_POINT('Origin',(6.,3.33E-15,5.));
|
||||
#436=CARTESIAN_POINT('Origin',(0.,14.,-6.22E-15));
|
||||
#437=CARTESIAN_POINT('',(-1.5,14.,13.));
|
||||
#438=CARTESIAN_POINT('',(-1.5,14.,-6.22E-15));
|
||||
#439=CARTESIAN_POINT('Origin',(0.,14.,13.));
|
||||
#440=CARTESIAN_POINT('Origin',(-1.1E-16,14.,13.));
|
||||
#441=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#445,
|
||||
'DISTANCE_ACCURACY_VALUE',
|
||||
'Maximum model space distance between geometric entities at asserted c
|
||||
onnectivities');
|
||||
#442=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#445,
|
||||
'DISTANCE_ACCURACY_VALUE',
|
||||
'Maximum model space distance between geometric entities at asserted c
|
||||
onnectivities');
|
||||
#443=(
|
||||
GEOMETRIC_REPRESENTATION_CONTEXT(3)
|
||||
GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#441))
|
||||
GLOBAL_UNIT_ASSIGNED_CONTEXT((#445,#447,#448))
|
||||
REPRESENTATION_CONTEXT('','3D')
|
||||
);
|
||||
#444=(
|
||||
GEOMETRIC_REPRESENTATION_CONTEXT(3)
|
||||
GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#442))
|
||||
GLOBAL_UNIT_ASSIGNED_CONTEXT((#445,#447,#448))
|
||||
REPRESENTATION_CONTEXT('','3D')
|
||||
);
|
||||
#445=(
|
||||
LENGTH_UNIT()
|
||||
NAMED_UNIT(*)
|
||||
SI_UNIT(.MILLI.,.METRE.)
|
||||
);
|
||||
#446=(
|
||||
LENGTH_UNIT()
|
||||
NAMED_UNIT(*)
|
||||
SI_UNIT($,.METRE.)
|
||||
);
|
||||
#447=(
|
||||
NAMED_UNIT(*)
|
||||
PLANE_ANGLE_UNIT()
|
||||
SI_UNIT($,.RADIAN.)
|
||||
);
|
||||
#448=(
|
||||
NAMED_UNIT(*)
|
||||
SI_UNIT($,.STERADIAN.)
|
||||
SOLID_ANGLE_UNIT()
|
||||
);
|
||||
#449=SHAPE_DEFINITION_REPRESENTATION(#450,#451);
|
||||
#450=PRODUCT_DEFINITION_SHAPE('',$,#453);
|
||||
#451=SHAPE_REPRESENTATION('',(#271),#443);
|
||||
#452=PRODUCT_DEFINITION_CONTEXT('part definition',#457,'design');
|
||||
#453=PRODUCT_DEFINITION('right-angle-n20-Body',
|
||||
'right-angle-n20-Body v1',#454,#452);
|
||||
#454=PRODUCT_DEFINITION_FORMATION('',$,#459);
|
||||
#455=PRODUCT_RELATED_PRODUCT_CATEGORY('right-angle-n20-Body v1',
|
||||
'right-angle-n20-Body v1',(#459));
|
||||
#456=APPLICATION_PROTOCOL_DEFINITION('international standard',
|
||||
'automotive_design',2009,#457);
|
||||
#457=APPLICATION_CONTEXT(
|
||||
'Core Data for Automotive Mechanical Design Process');
|
||||
#458=PRODUCT_CONTEXT('part definition',#457,'mechanical');
|
||||
#459=PRODUCT('right-angle-n20-Body','right-angle-n20-Body v1',$,(#458));
|
||||
#460=PRESENTATION_STYLE_ASSIGNMENT((#462));
|
||||
#461=PRESENTATION_STYLE_ASSIGNMENT((#463));
|
||||
#462=SURFACE_STYLE_USAGE(.BOTH.,#464);
|
||||
#463=SURFACE_STYLE_USAGE(.BOTH.,#465);
|
||||
#464=SURFACE_SIDE_STYLE('',(#466));
|
||||
#465=SURFACE_SIDE_STYLE('',(#467));
|
||||
#466=SURFACE_STYLE_FILL_AREA(#468);
|
||||
#467=SURFACE_STYLE_FILL_AREA(#469);
|
||||
#468=FILL_AREA_STYLE('Steel - Satin',(#470));
|
||||
#469=FILL_AREA_STYLE('Opaque(204,204,204)',(#471));
|
||||
#470=FILL_AREA_STYLE_COLOUR('Steel - Satin',#472);
|
||||
#471=FILL_AREA_STYLE_COLOUR('Opaque(204,204,204)',#473);
|
||||
#472=COLOUR_RGB('Steel - Satin',0.627450980392157,0.627450980392157,0.627450980392157);
|
||||
#473=COLOUR_RGB('Opaque(204,204,204)',0.8,0.8,0.8);
|
||||
ENDSEC;
|
||||
END-ISO-10303-21;
|
||||
Binary file not shown.
29
pcb/feederFloor/.gitignore
vendored
29
pcb/feederFloor/.gitignore
vendored
@@ -1,29 +0,0 @@
|
||||
# For PCBs designed using KiCad: https://www.kicad.org/
|
||||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,438 +0,0 @@
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.762,
|
||||
"height": 1.524,
|
||||
"width": 1.524
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.19999999999999998
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rule_severitieslegacy_courtyards_overlap": true,
|
||||
"rule_severitieslegacy_no_courtyard_defined": false,
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0,
|
||||
0.25,
|
||||
0.5,
|
||||
0.7,
|
||||
1.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "feederFloor.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "feederFloor.net",
|
||||
"specctra_dsn": "",
|
||||
"step": "feederFloor.step",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 25.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "Pcbnew",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"417f13e4-c121-485a-a6b5-8b55e70350b8",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
@@ -1,949 +0,0 @@
|
||||
(kicad_sch (version 20211123) (generator eeschema)
|
||||
|
||||
(uuid 417f13e4-c121-485a-a6b5-8b55e70350b8)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(lib_symbols
|
||||
(symbol "Connector:Conn_01x05_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (id 0) (at 0 7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x05_Female" (id 1) (at 0 -7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_01x05_Female_1_1"
|
||||
(arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 -5.08)
|
||||
(xy -0.508 -5.08)
|
||||
)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 -2.54)
|
||||
(xy -0.508 -2.54)
|
||||
)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 0)
|
||||
(xy -0.508 0)
|
||||
)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 2.54)
|
||||
(xy -0.508 2.54)
|
||||
)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 5.08)
|
||||
(xy -0.508 5.08)
|
||||
)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 5.588) (mid -0.508 5.08) (end 0 4.572)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(pin passive line (at -5.08 5.08 0) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 2.54 0) (length 3.81)
|
||||
(name "Pin_2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 0 0) (length 3.81)
|
||||
(name "Pin_3" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -2.54 0) (length 3.81)
|
||||
(name "Pin_4" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -5.08 0) (length 3.81)
|
||||
(name "Pin_5" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (id 0) (at 1.27 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_02x03_Odd_Even_1_1"
|
||||
(rectangle (start -1.27 -2.413) (end 0 -2.667)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 0.127) (end 0 -0.127)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 2.667) (end 0 2.413)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 3.81) (end 3.81 -3.81)
|
||||
(stroke (width 0.254) (type default) (color 0 0 0 0))
|
||||
(fill (type background))
|
||||
)
|
||||
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 3.81 2.667) (end 2.54 2.413)
|
||||
(stroke (width 0.1524) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(pin passive line (at -5.08 2.54 0) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 2.54 180) (length 3.81)
|
||||
(name "Pin_2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 0 0) (length 3.81)
|
||||
(name "Pin_3" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 0 180) (length 3.81)
|
||||
(name "Pin_4" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -2.54 0) (length 3.81)
|
||||
(name "Pin_5" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 -2.54 180) (length 3.81)
|
||||
(name "Pin_6" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "R_Small_0_1"
|
||||
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
|
||||
(stroke (width 0.2032) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "R_Small_1_1"
|
||||
(pin passive line (at 0 2.54 270) (length 0.762)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 0 -2.54 90) (length 0.762)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "H" (id 0) (at 0 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "MountingHole" (id 1) (at 0 3.175 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "MountingHole_0_1"
|
||||
(circle (center 0 0) (radius 1.27)
|
||||
(stroke (width 1.27) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "feeder:DS28E07" (in_bom yes) (on_board yes)
|
||||
(property "Reference" "U" (id 0) (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "DS28E07" (id 1) (at 0 -1.27 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at -3.81 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at -3.81 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "DS28E07_0_1"
|
||||
(rectangle (start -6.35 5.08) (end 6.35 0)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "DS28E07_1_1"
|
||||
(pin unspecified line (at -8.89 2.54 0) (length 2.54)
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line (at 8.89 2.54 180) (length 2.54)
|
||||
(name "IO" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:+VDC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (id 0) (at 0 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+VDC" (id 1) (at 0 6.35 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"+VDC\"" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "+VDC_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.143 3.175)
|
||||
(xy 1.143 3.175)
|
||||
)
|
||||
(stroke (width 0.508) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 1.27)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 2.032)
|
||||
(xy 0 4.318)
|
||||
)
|
||||
(stroke (width 0.508) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(circle (center 0 3.175) (radius 1.905)
|
||||
(stroke (width 0.254) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "+VDC_1_1"
|
||||
(pin power_in line (at 0 0 90) (length 0) hide
|
||||
(name "+VDC" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "GND_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 -1.27)
|
||||
(xy 1.27 -1.27)
|
||||
(xy 0 -2.54)
|
||||
(xy -1.27 -1.27)
|
||||
(xy 0 -1.27)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "GND_1_1"
|
||||
(pin power_in line (at 0 0 270) (length 0) hide
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "PWR_FLAG_0_0"
|
||||
(pin power_out line (at 0 0 90) (length 0)
|
||||
(name "pwr" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
(symbol "PWR_FLAG_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 1.27)
|
||||
(xy -1.016 1.905)
|
||||
(xy 0 2.54)
|
||||
(xy 1.016 1.905)
|
||||
(xy 0 1.27)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(junction (at 122.555 72.39) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 03c52831-5dc5-43c5-a442-8d23643b46fb)
|
||||
)
|
||||
(junction (at 128.905 72.39) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9)
|
||||
)
|
||||
(junction (at 109.22 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid f4f99e3d-7269-4f6a-a759-16ad2a258779)
|
||||
)
|
||||
|
||||
(wire (pts (xy 141.605 66.04) (xy 135.255 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 10109f84-4940-47f8-8640-91f185ac9bc1)
|
||||
)
|
||||
(wire (pts (xy 177.8 63.5) (xy 177.8 78.74))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 38d14fe5-876b-42c2-98f2-36004534d0d9)
|
||||
)
|
||||
(wire (pts (xy 168.91 127) (xy 168.91 130.81))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 427acdb9-e837-499d-bdfa-62a1796c0a16)
|
||||
)
|
||||
(wire (pts (xy 109.22 66.04) (xy 109.22 78.74))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 55e740a3-0735-4744-896e-2bf5437093b9)
|
||||
)
|
||||
(wire (pts (xy 122.555 72.39) (xy 128.905 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 62c076a3-d618-44a2-9042-9a08b3576787)
|
||||
)
|
||||
(wire (pts (xy 97.79 139.7) (xy 99.06 139.7))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 704d6d51-bb34-4cbf-83d8-841e208048d8)
|
||||
)
|
||||
(wire (pts (xy 141.605 78.74) (xy 141.605 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 71c31975-2c45-4d18-a25a-18e07a55d11e)
|
||||
)
|
||||
(wire (pts (xy 109.22 78.74) (xy 141.605 78.74))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 746ba970-8279-4e7b-aed3-f28687777c21)
|
||||
)
|
||||
(wire (pts (xy 97.79 137.16) (xy 97.79 139.7))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 8174b4de-74b1-48db-ab8e-c8432251095b)
|
||||
)
|
||||
(wire (pts (xy 114.3 106.68) (xy 114.3 104.14))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 868ef6df-c040-485c-b200-07a5bb2a8388)
|
||||
)
|
||||
(wire (pts (xy 175.26 63.5) (xy 175.26 82.55))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 89a6dfa5-0dd7-4d13-b198-77c8e0e1c38b)
|
||||
)
|
||||
(wire (pts (xy 180.34 63.5) (xy 180.34 73.66))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 9cfeef64-d2d7-4f07-8d73-9f9865d25027)
|
||||
)
|
||||
(wire (pts (xy 172.72 63.5) (xy 172.72 86.36))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid a0af0cd7-91fb-40b2-b759-4eed0b5c4383)
|
||||
)
|
||||
(wire (pts (xy 135.255 72.39) (xy 128.905 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid afb8e687-4a13-41a1-b8c0-89a749e897fe)
|
||||
)
|
||||
(wire (pts (xy 114.3 104.14) (xy 116.84 104.14))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid bbc19b8a-8f68-476e-b4d8-9897b351ae57)
|
||||
)
|
||||
(wire (pts (xy 135.255 68.58) (xy 135.255 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid da469d11-a8a4-414b-9449-d151eeaf4853)
|
||||
)
|
||||
(wire (pts (xy 134.62 104.14) (xy 137.16 104.14))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid daa9f0e5-0e4f-4b79-a7a1-bbe6ce8fcada)
|
||||
)
|
||||
(wire (pts (xy 109.22 66.04) (xy 122.555 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid e10b5627-3247-4c86-b9f6-ef474ca11543)
|
||||
)
|
||||
(wire (pts (xy 122.555 68.58) (xy 122.555 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
|
||||
)
|
||||
(wire (pts (xy 182.88 63.5) (xy 182.88 67.31))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ecca367c-a31c-4379-9136-ead15b37059a)
|
||||
)
|
||||
(wire (pts (xy 99.06 129.54) (xy 97.79 129.54))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid f71da641-16e6-4257-80c3-0b9d804fee4f)
|
||||
)
|
||||
(wire (pts (xy 97.79 129.54) (xy 97.79 132.08))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid fd470e95-4861-44fe-b1e4-6d8a7c66e144)
|
||||
)
|
||||
(wire (pts (xy 168.91 135.89) (xy 168.91 138.43))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ff98c03a-e8d8-4dea-b6bc-a08542cacdba)
|
||||
)
|
||||
|
||||
(text "R1 is a termination for the RS-485 bus.\nNormally a Termination Plug will be \nput on the last connector on the IDC\ncable, so this should not be populated."
|
||||
(at 113.03 138.43 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
|
||||
)
|
||||
(text "IDC connector for connecting to the bus" (at 106.68 53.34 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 205d995d-efa9-4395-b7ac-ee73df5d6886)
|
||||
)
|
||||
(text "This resistor is an effort to help protect the\n1Wire line in case of a short to VDC. This is\nmore properly handled on the feeder, so this\nshould not normally be populated."
|
||||
(at 176.53 137.16 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 5838a173-5098-448f-b7fe-f95623f1dbc8)
|
||||
)
|
||||
(text "Spring finger interface footprint" (at 186.69 62.23 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid a392e7e5-98ff-4ec6-bf24-3ef56ce7ccf6)
|
||||
)
|
||||
(text "1Wire EEPROM. The attached footprint accepts either\nthe TDFN or the TSOC variants of the component."
|
||||
(at 149.86 105.41 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid c46787ac-bcd5-4718-a119-3b258904b758)
|
||||
)
|
||||
|
||||
(global_label "RS-485-" (shape input) (at 99.06 129.54 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 127679a9-3981-4934-815e-896a4e3ff56e)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -66.04 46.99 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "RS-485-" (shape input) (at 122.555 63.5 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 2d210a96-f81f-42a9-8bf4-1b43c11086f3)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -10.795 -17.78 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "GND" (shape input) (at 180.34 71.12 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 25.4 8.89 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "VIN" (shape input) (at 182.88 67.31 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 6a44418c-7bb4-4e99-8836-57f153c19721)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 38.1 15.24 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "RS-485-" (shape input) (at 177.8 78.74 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 6c2e273e-743c-4f1e-a647-4171f8122550)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 27.94 21.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "VIN" (shape input) (at 109.22 68.58 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 77ed3941-d133-4aef-a9af-5a39322d14eb)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -10.795 -17.78 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "1WIRE" (shape input) (at 168.91 127 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 868e6136-ef4a-4a1e-8dd2-123b46c3fc15)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 269.24 181.61 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "RS-485+" (shape input) (at 135.255 63.5 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -10.795 -17.78 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "GND" (shape input) (at 135.255 72.39 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -10.795 -17.78 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "RS-485+" (shape input) (at 175.26 82.55 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid aa14c3bd-4acc-4908-9d28-228585a22a9d)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 27.94 27.94 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "RS-485+" (shape input) (at 99.06 139.7 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid b1086f75-01ba-4188-8d36-75a9e2828ca9)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -66.04 46.99 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "1WIRE" (shape input) (at 172.72 86.36 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid c022004a-c968-410e-b59e-fbab0e561e9d)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.32 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
(global_label "1WIRE" (shape input) (at 137.16 104.14 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
|
||||
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.83 49.53 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 114.3 106.68 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-000060150d88)
|
||||
(property "Reference" "#PWR0101" (id 0) (at 114.3 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 114.427 111.0742 0))
|
||||
(property "Footprint" "" (id 2) (at 114.3 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 114.3 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid bab46f34-8c8a-41f0-bea2-5779a0f6a524))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 180.34 73.66 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-0000601510a5)
|
||||
(property "Reference" "#PWR0102" (id 0) (at 180.34 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 184.15 74.93 0))
|
||||
(property "Footprint" "" (id 2) (at 180.34 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 180.34 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 5d76824b-78ae-4dd8-98b2-b4328a634435))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 128.905 72.39 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-000060159395)
|
||||
(property "Reference" "#PWR0103" (id 0) (at 128.905 78.74 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 129.032 76.7842 0))
|
||||
(property "Footprint" "" (id 2) (at 128.905 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 128.905 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 623bc7a3-9adc-46ae-907a-be5d570799cb))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+VDC") (at 109.22 66.04 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-00006015a417)
|
||||
(property "Reference" "#PWR0104" (id 0) (at 109.22 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+VDC" (id 1) (at 109.22 59.055 0))
|
||||
(property "Footprint" "" (id 2) (at 109.22 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 109.22 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid b3b08be4-7aba-4f0e-813e-490cdac087d6))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 130.175 66.04 180) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-000060161293)
|
||||
(property "Reference" "J1" (id 0) (at 128.905 57.785 0))
|
||||
(property "Value" "IDC" (id 1) (at 128.905 60.0964 0))
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical" (id 2) (at 130.175 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 130.175 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Digikey" "732-5394-ND" (id 4) (at 130.175 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "710-61200621621" (id 5) (at 130.175 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "LCSC" "C601936" (id 6) (at 130.175 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "JLCPCB" "C601936" (id 7) (at 130.175 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 1d189c12-6827-4c5b-9d05-74f5ed6feee5))
|
||||
(pin "2" (uuid c8d73308-622d-4cb5-a790-de44bc1dad07))
|
||||
(pin "3" (uuid 6ddde599-4f0a-4b3e-811f-c77cdba20f35))
|
||||
(pin "4" (uuid 3bfd20a4-6b0c-4df5-b0ef-667f45d52783))
|
||||
(pin "5" (uuid 36e56d46-f5f1-4673-a9e1-df2568bae84a))
|
||||
(pin "6" (uuid 542c776f-2eb4-42a7-b9a6-55dd764e6081))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 157.48 40.64 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-000060165998)
|
||||
(property "Reference" "H1" (id 0) (at 160.02 39.4716 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (id 1) (at 160.02 41.783 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 157.48 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 157.48 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R_Small") (at 97.79 134.62 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-00006016bc1c)
|
||||
(property "Reference" "R1" (id 0) (at 99.2886 133.4516 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "120R" (id 1) (at 99.2886 135.763 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 97.79 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 97.79 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "JLCPCB" "C17437" (id 4) (at 97.79 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "LCSC" "C61683" (id 5) (at 97.79 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Digikey" "RMCF0805JT120RCT-ND" (id 6) (at 97.79 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "652-CR0805FX-1200ELF" (id 7) (at 97.79 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid e58e6786-442d-4f84-8769-705c408b76f4))
|
||||
(pin "2" (uuid 19370515-7a17-4304-acb5-1f71bfb85d7e))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:PWR_FLAG") (at 109.22 66.04 90) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-0000603b4da0)
|
||||
(property "Reference" "#FLG0101" (id 0) (at 107.315 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "PWR_FLAG" (id 1) (at 105.9942 66.04 90)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 109.22 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 109.22 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid bd111e6b-8efd-4a1e-977d-560a18c5db2f))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:PWR_FLAG") (at 122.555 72.39 90) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 00000000-0000-0000-0000-0000603b607c)
|
||||
(property "Reference" "#FLG0102" (id 0) (at 120.65 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "PWR_FLAG" (id 1) (at 119.3292 72.39 90)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 122.555 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 122.555 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid fcf5a5fb-c085-4220-8d90-a23267dcddc7))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:Conn_01x05_Female") (at 177.8 58.42 90) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 2380f0ea-c541-4606-be9d-2786c6ace66e)
|
||||
(property "Reference" "J2" (id 0) (at 177.8 54.5043 90))
|
||||
(property "Value" "Conn_01x05_Female" (id 1) (at 177.8 57.2794 90))
|
||||
(property "Footprint" "feeder:AVX-915-005-541-Contact-Surface" (id 2) (at 177.8 58.42 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 177.8 58.42 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 24adaed0-5047-4bbd-9d00-5a07bbede4f2))
|
||||
(pin "2" (uuid 18238a13-4a24-40dc-9297-0233c899d398))
|
||||
(pin "3" (uuid 5e3d0667-65df-4227-9805-76746ab8a5cb))
|
||||
(pin "4" (uuid 35a8a498-f6f5-4051-b120-0adb2dc15240))
|
||||
(pin "5" (uuid 168d3aef-971a-4f7b-8399-a51b0bd05333))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 168.91 138.43 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 251ce9e7-e09a-4af2-9df7-bedba534a911)
|
||||
(property "Reference" "#PWR0105" (id 0) (at 168.91 144.78 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 169.037 142.8242 0))
|
||||
(property "Footprint" "" (id 2) (at 168.91 138.43 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 168.91 138.43 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid f7fde10f-83f2-4255-a778-1d9d32052b7c))
|
||||
)
|
||||
|
||||
(symbol (lib_id "feeder:DS28E07") (at 125.73 106.68 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 4ba63516-78e8-4a1e-b0e0-1e2cf8fb514c)
|
||||
(property "Reference" "U1" (id 0) (at 125.73 97.7605 0))
|
||||
(property "Value" "DS28E07" (id 1) (at 125.73 100.5356 0))
|
||||
(property "Footprint" "feeder:DS28E07_MULTI" (id 2) (at 121.92 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 121.92 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 0763e987-2ac7-43c4-84dd-59d3fbf35650))
|
||||
(pin "2" (uuid a18c9224-5ba2-45fc-beb8-c0fde3aa9895))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R_Small") (at 168.91 133.35 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 6746cdd9-d090-474e-85b6-c1314580d10c)
|
||||
(property "Reference" "R2" (id 0) (at 170.4086 132.1816 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "1M" (id 1) (at 170.4086 134.493 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 168.91 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 168.91 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "JLCPCB" "C17437" (id 4) (at 168.91 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "LCSC" "C61683" (id 5) (at 168.91 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Digikey" "RMCF0805JT120RCT-ND" (id 6) (at 168.91 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "652-CR0805FX-1200ELF" (id 7) (at 168.91 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid d19e068d-6dd2-48c5-b5c7-44f9b27423c2))
|
||||
(pin "2" (uuid 87a1426f-6dfb-4024-b9eb-3a075b5aed27))
|
||||
)
|
||||
|
||||
(sheet_instances
|
||||
(path "/" (page "1"))
|
||||
)
|
||||
|
||||
(symbol_instances
|
||||
(path "/00000000-0000-0000-0000-0000603b4da0"
|
||||
(reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-0000603b607c"
|
||||
(reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-000060150d88"
|
||||
(reference "#PWR0101") (unit 1) (value "GND") (footprint "")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-0000601510a5"
|
||||
(reference "#PWR0102") (unit 1) (value "GND") (footprint "")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-000060159395"
|
||||
(reference "#PWR0103") (unit 1) (value "GND") (footprint "")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-00006015a417"
|
||||
(reference "#PWR0104") (unit 1) (value "+VDC") (footprint "")
|
||||
)
|
||||
(path "/251ce9e7-e09a-4af2-9df7-bedba534a911"
|
||||
(reference "#PWR0105") (unit 1) (value "GND") (footprint "")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-000060165998"
|
||||
(reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-000060161293"
|
||||
(reference "J1") (unit 1) (value "IDC") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical")
|
||||
)
|
||||
(path "/2380f0ea-c541-4606-be9d-2786c6ace66e"
|
||||
(reference "J2") (unit 1) (value "Conn_01x05_Female") (footprint "feeder:AVX-915-005-541-Contact-Surface")
|
||||
)
|
||||
(path "/00000000-0000-0000-0000-00006016bc1c"
|
||||
(reference "R1") (unit 1) (value "120R") (footprint "Resistor_SMD:R_0805_2012Metric")
|
||||
)
|
||||
(path "/6746cdd9-d090-474e-85b6-c1314580d10c"
|
||||
(reference "R2") (unit 1) (value "1M") (footprint "Resistor_SMD:R_0805_2012Metric")
|
||||
)
|
||||
(path "/4ba63516-78e8-4a1e-b0e0-1e2cf8fb514c"
|
||||
(reference "U1") (unit 1) (value "DS28E07") (footprint "feeder:DS28E07_MULTI")
|
||||
)
|
||||
)
|
||||
)
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +0,0 @@
|
||||
(fp_lib_table
|
||||
(lib (name "feeder")(type "KiCad")(uri "/Users/stephen/feeder/lib/kicad/feeder.pretty")(options "")(descr ""))
|
||||
(lib (name "index")(type "KiCad")(uri "/Users/stephen/lumenpnp/lib/kicad/index.pretty")(options "")(descr ""))
|
||||
)
|
||||
@@ -1,4 +0,0 @@
|
||||
(sym_lib_table
|
||||
(lib (name "index")(type "KiCad")(uri "${KIPRJMOD}/../../../lib/kicad/index.kicad_sym")(options "")(descr ""))
|
||||
(lib (name "feeder")(type "KiCad")(uri "/Users/stephen/feeder/lib/kicad/feeder.kicad_sym")(options "")(descr ""))
|
||||
)
|
||||
29
pcb/indexingWheel/.gitignore
vendored
29
pcb/indexingWheel/.gitignore
vendored
@@ -1,29 +0,0 @@
|
||||
# For PCBs designed using KiCad: https://www.kicad.org/
|
||||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
@@ -1,3 +0,0 @@
|
||||
(fp_lib_table
|
||||
(lib (name index)(type KiCad)(uri ${KIPRJMOD}/../../../lib/kicad/index.pretty)(options "")(descr ""))
|
||||
)
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,478 +0,0 @@
|
||||
{
|
||||
"board": {
|
||||
"3dviewports": [],
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.762,
|
||||
"height": 1.524,
|
||||
"width": 1.524
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 1.0
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"connection_width": "warning",
|
||||
"copper_edge_clearance": "error",
|
||||
"copper_sliver": "warning",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint": "error",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"isolated_copper": "warning",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"lib_footprint_issues": "warning",
|
||||
"lib_footprint_mismatch": "warning",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_edge_clearance": "warning",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"solder_mask_bridge": "error",
|
||||
"starved_thermal": "error",
|
||||
"text_height": "warning",
|
||||
"text_thickness": "warning",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_connection": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_resolved_spokes": 2,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_text_height": 0.7999999999999999,
|
||||
"min_text_thickness": 0.08,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"solder_mask_to_copper_clearance": 0.0,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"teardrop_options": [
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 5,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_onpadsmd": true,
|
||||
"td_onroundshapesonly": false,
|
||||
"td_ontrackend": false,
|
||||
"td_onviapad": true
|
||||
}
|
||||
],
|
||||
"teardrop_parameters": [
|
||||
{
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_target_name": "td_round_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_target_name": "td_rect_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_target_name": "td_track_end",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
}
|
||||
],
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": [],
|
||||
"viewports": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "indexingWheel.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 3
|
||||
},
|
||||
"net_colors": null,
|
||||
"netclass_assignments": null,
|
||||
"netclass_patterns": []
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "indexingWheel.step",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 25.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"e63e39d7-6ac0-4ffd-8aa3-1841a4541b55",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
@@ -1,161 +0,0 @@
|
||||
(kicad_sch (version 20230121) (generator eeschema)
|
||||
|
||||
(uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(title_block
|
||||
(title "Index Feeder Indexing Wheel")
|
||||
)
|
||||
|
||||
(lib_symbols
|
||||
(symbol "Connector:Conn_01x01_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at 0 2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x01_Pin" (at 0 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_locked" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "ki_keywords" "connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, single row, 01x01, script generated" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_01x01_Pin_1_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 1.27 0)
|
||||
(xy 0.8636 0)
|
||||
)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 0.8636 0.127) (end 0 -0.127)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
(pin passive line (at 5.08 0 180) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (at 0 -6.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "global power" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "GND_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 -1.27)
|
||||
(xy 1.27 -1.27)
|
||||
(xy 0 -2.54)
|
||||
(xy -1.27 -1.27)
|
||||
(xy 0 -1.27)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "GND_1_1"
|
||||
(pin power_in line (at 0 0 270) (length 0) hide
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
(wire (pts (xy 83.82 63.5) (xy 83.82 58.42))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid aa3ed21d-28f5-4c13-b649-b00007f33ecc)
|
||||
)
|
||||
(wire (pts (xy 83.82 58.42) (xy 99.06 58.42))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c7c7dd3b-fd7e-4e3b-bdaf-77a786d474c9)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 83.82 63.5 0) (mirror y) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 24c02362-c030-457b-a18f-d4f9d3be9e6f)
|
||||
(property "Reference" "#PWR01" (at 83.82 69.85 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 83.82 67.6355 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 83.82 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 83.82 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 8c579b4f-8c57-405f-9069-417012cb5036))
|
||||
(instances
|
||||
(project "indexingWheel"
|
||||
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
|
||||
(reference "#PWR01") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:Conn_01x01_Pin") (at 104.14 58.42 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 6bf11659-9b18-4f64-92d0-86678094e26a)
|
||||
(property "Reference" "J1" (at 103.505 55.3339 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x01_Pin" (at 103.505 57.2549 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Horizontal" (at 104.14 58.42 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 104.14 58.42 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid afc17c56-f323-465e-aa8b-19300a5a89a2))
|
||||
(instances
|
||||
(project "indexingWheel"
|
||||
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
|
||||
(reference "J1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(sheet_instances
|
||||
(path "/" (page "1"))
|
||||
)
|
||||
)
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,3 +0,0 @@
|
||||
(sym_lib_table
|
||||
(lib (name "index")(type "KiCad")(uri "${KIPRJMOD}/../../../lib/kicad/index.kicad_sym")(options "")(descr ""))
|
||||
)
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
77553
pcb/mobo/mobo.kicad_pcb
77553
pcb/mobo/mobo.kicad_pcb
File diff suppressed because it is too large
Load Diff
@@ -23,14 +23,17 @@
|
||||
],
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"apply_defaults_to_fp_fields": false,
|
||||
"apply_defaults_to_fp_shapes": false,
|
||||
"apply_defaults_to_fp_text": false,
|
||||
"board_outline_line_width": 0.05,
|
||||
"copper_line_width": 0.2,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"courtyard_line_width": 0.05,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
@@ -41,13 +44,13 @@
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_line_width": 0.1,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_line_width": 0.1,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
@@ -66,7 +69,7 @@
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.19999999999999998
|
||||
"min_clearance": 0.2
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
@@ -94,6 +97,7 @@
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint": "error",
|
||||
"footprint_symbol_mismatch": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
@@ -139,27 +143,24 @@
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_connection": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_copper_edge_clearance": 0.025,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_microvia_diameter": 0.2,
|
||||
"min_microvia_drill": 0.1,
|
||||
"min_resolved_spokes": 2,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_text_height": 0.7999999999999999,
|
||||
"min_text_height": 0.8,
|
||||
"min_text_thickness": 0.08,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"min_track_width": 0.2,
|
||||
"min_via_annular_width": 0.05,
|
||||
"min_via_diameter": 0.4,
|
||||
"solder_mask_to_copper_clearance": 0.0,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"teardrop_options": [
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 5,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_onpadsmd": true,
|
||||
"td_onroundshapesonly": false,
|
||||
"td_ontrackend": false,
|
||||
@@ -168,29 +169,35 @@
|
||||
],
|
||||
"teardrop_parameters": [
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_round_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_rect_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_track_end",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
}
|
||||
@@ -206,6 +213,32 @@
|
||||
1.5,
|
||||
2.0
|
||||
],
|
||||
"tuning_pattern_settings": {
|
||||
"diff_pair_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 1.0
|
||||
},
|
||||
"diff_pair_skew_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 0.6
|
||||
},
|
||||
"single_track_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 0.6
|
||||
}
|
||||
},
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
@@ -215,6 +248,13 @@
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"ipc2581": {
|
||||
"dist": "",
|
||||
"distpn": "",
|
||||
"internal_id": "",
|
||||
"mfg": "",
|
||||
"mpn": ""
|
||||
},
|
||||
"layer_presets": [],
|
||||
"viewports": []
|
||||
},
|
||||
@@ -467,8 +507,11 @@
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "mobo.net",
|
||||
"plot": "",
|
||||
"pos_files": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "mobo.step",
|
||||
"svg": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user