Quantcast
Channel: fritzing forum - Latest posts
Viewing all 29840 articles
Browse latest View live

Doit esp32 devkit v1

$
0
0

OK here is an improved (but likely not a direct replacement) version of your part. Much of the change isn’t visible directly. Breadboard has been fully implemented so it now works correctly (that is probably the most visible change). All the svgs have been rescaled to standard scale, Schematic has been made smaller and to match the bb and pcb views. Pcb has a bunch of unneeded elements removed and the pads with holes set to 0.038in (suitable for .1 headers) and aligned to .1in pitch and 1.0 in width. Pin numbers now start at 0 with pin 1 (connector0 internally) the bottom right pin. The labels have been corrected so that hovering over a pin will give you the label that appears on the PCB for that pin, the pin number (1 to 30, which also now appears on the pcb silkscreen) and your description of alternate uses. Remaining to be done are mounting holes on the pcb silkscreen (and on BB where they are present but probably not in the correct position) and the board outline which need measurements from a real board. This was created as a new part so it will load alongside your original for comparison.

DOIT Esp32 DevKit v1 improved.fzpz (34.3 KB)

Peter


Issue with custom created fritzing part

$
0
0

I have a part that I downloaded from someone else ,and it has errors, such as a 9v battery connectors go onto it backwards ,according to the way the leads were assigned I am assuming. Not very experienced at creating any parts , but do want to fix this one so I can use it . Can anyone help out?

Issue with custom created fritzing part

$
0
0

Upload the part with the 7th button.

BME / BMP 280 sensor

$
0
0

Hi, thank you very much for your detail explanations.
The fact is that I didn’t follow tutorial from Fritzing website but I followed other tutorials without paying attention on some details.

The difference I noticed between Illustrator and Inkscape is that if svg file made in Inkscape (XX_improved.fzpz) is imported into Illustrator deform stroke weight so the stroke 0.02in in Inkscape appears as 20px in Illustrator.

For creating pads in pcb file with Illustrator I found that the best way is to make pads as a cyrcle of 0.058in x 0.058in with stroke weight of 0.02in. That appears to be correct - I hope.

Kindly regards
p.s. improved parts uploaded again

Connecteur JST-XH 2.54mm

$
0
0

Hello everyone!
Before going further, is there a forum page in French? If so can you please give me the link? Thanks in advance.
So I am looking for a library for Connectors JST-XH 2.54mm, would you have a link to download this library if it exists?
Again thanks to you.
Happy holidays and happy new year 2019
Cordially.
@ ++
//////////////////////////////////////////////////////////////////////////////////////
Bonjour tout le monde!
Avant d’aller plus loin y a-t-il une page du forum en français? Si oui pouvez vous svp me donnez le lien? D’avance merci.
Donc je suis à la recherche d’une librairie pour les Connecteurs JST-XH 2.54mm, auriez vous un lien pour télécharger cette librairie si elle existe?
Encore merci à vous.
Bonne fêtes et bonne année 2019
Cordialement.
@++

BME / BMP 280 sensor

$
0
0

Unfortunately the tutorials are mostly a mess. Many of them (other than mine and Old_Grey’s) are for older versions of Fritzing and only somewhat apply any more. I learned to make parts by asking questions here, and am now paying that previous assistance forward :slight_smile: . If we can manage to rekindle interest in Fritzing (by restarting development which I’m slowly working on) maybe we can find someone to improve the tutorials situation.

That is fairly ugly, but good to know! I may add that to the Inkscape tips page. Is there a way to convert all the stroke widths from px back to in or do you have to change them individually? I haven’t seen any problems with Inkscape reading Illustrator svgs so far. Unfortunately leaving the svgs dimensioned in px is a bad idea. Fritzing tries to guess what the DPI value for px is based on something in the svg and often gets it wrong. So dimensions in in or mm are a far safer bet (as the svg looks fine in the svg editor but is the wrong scale in Fritzing if it guesses wrong). It is preferable to have a scale that makes 1px = 1 thousandth of an inch (although that isn’t consistent even in the core parts so far, one of my projects is to fix that …). I know how to rescale the drawing in Inkscape to get the drawing to the desired scale, but not how to do it in Illustrator. Using the pcb svg from this part as an example, Inkscape sees the scale as 0.75000 when the desirable scale is 10.41667 (why this odd number I’m not sure, but this is what produces the desired result in the view box definition :slight_smile: ). This produces this xml in your svg:

xmlns=“http://www.w3.org/2000/svg
height=“0.541639in”
xml:space=“preserve”
y=“0px”
width=“0.433431in”
x=“0px”
version=“1.1”
viewBox=“0 0 31.207 38.998”

whereas the pcb svg from my BME280_improved part has the desired (as specified in the parts file format document at:

which is a useful reference document!) 1/1000 ratio and looks like this:

xmlns=“http://www.w3.org/2000/svg
viewBox=“0 0 427.27806 535.54202”
y=“0px”
height=“0.53554183in”
gorn=“0”
xml:space=“preserve”
version=“1.1”
width=“0.42727792in”

The difference is the ratio of the height/width here is the desired 1/1000 ratio (which sets 1 px to be 1 thousandth of an inch and thus 100 drawing units (after translates which complicate things) is .1 in. Having this ratio makes it possible or the part checking script to check pin spacing on connectors for instance (although it doesn’t yet do that). Worse, some of the parts generated by Fritzing don’t use this scale (I think ICs are one example) if I can get a development environment working again (which is close) I’l make a code change to make generated parts consistent and hopefully fix up those in the parts repository.

Yep that appears to be correct. In Inkscape hole diameter would be 0.078in with a stroke-width of 0.02in and the generated hole is 0.038 (from hole diam - (2 * stroke-width) = hole size). It looks like in Illustrator it is hole diam - stroke width (in inches) which is good to know. Coral Draw has a third way of setting the hole diameter (which is documented in an older forum post somewhere). This part looks fine. This part generates two hole sizes according to the gerber drill.txt file:

T100C0.037972
T101C0.038000

The hole with the square pad is slightly smaller (but the board houses typically round up to the next standard drill size which will be 0.038in).
The check script generates only warnings (which don’t affect the operation of the part.) Usually the layerIds (breadboard, icon, pcb schematic) are groups rather than drawing constructs with labels like this (from the pcb svg):

usual:

<g
id=“copper0”
<g
id=“copper1”
<rect
fill=“none”

not usual (and generates a warning):

<polyline id="silkscreen" ...

I don’t know if Fritzing will find the layerId if it isn’t a group and if the layerId is missing the part won’t export as an image (such as a pdf or a png file) but works in all other respects (such as making boards, the gerber export works fine). It is desirable to have the first group in pcb be Silkscreen. If silkscreen is the last group (as in your part) Fritzing tends to select the silkscreen object first (which is rarely what you want) when editing in pcb view in Fritzing.

Peter

Connecteur JST-XH 2.54mm

$
0
0

There is the “other languages” category , but you will usually be best off in the standard forums (I and others use google translate to try and help with questions in other languages with varying success rates :slight_smile: ). Of late there hasn’t been a lot of activity in the forums in any language, but at least signup is now fixed (many thanks to Andre for that!) so hopefully that may change.

Don’t see a part for that particular series (google for fritzing part JST-XH 2.54mm will generally find anything out there) but a standard shrouded header from core parts should do what you need. From the core parts bin in connection, drag the square header (the first icon) in to any view and then click on it. In Inspector (the bottom right window) you can now adjust the size and type of the part. In this case you want to select the “form” pull down and select “shrouded male”. You can then adjust the number of pins to be whatever you need and it will change the connector to match. That will generate a schematic and pcb view with .1 spaced pads which should fit this part fine (the silkscreen may not be quite big enough so you need to keep that in mind when placing parts near the connector). If you have troubles making this work, upload the .fzz file of your sketch (upload is the 7th icon from the left in the reply toolbar) and one of us will give you some help.

Peter

Api-ms-win-crt-runtime-l1-1-0.dll Fix?

$
0
0

THANK U … NOW WORKING 92b IN MY COMPUTER…


BME / BMP 280 sensor

$
0
0

Thank you for your patience :slight_smile:
I am attaching an image that show a problem I mentioned about importing Inkscape svgs into Illustrator:

Illustrator also found multiple nasty groups when re-importing previously created svg files in Illustrator by myself. Those groups were created by unknown reason to me only on text layers which refer in text displaced position. To avoid it, it is advisable to keep to a good tutorial :slight_smile:

To change properties of multiple paths in Illustrator the procedure is to select referenced path and then select from menu: Select>Same>Stroke Weight. This will select all paths with the same stroke weight so a new parameter will apply to all of selected paths. But firstly the units should be set form: Edit>Preferences>Units. I hope something helps.

Kindly regards.

BME / BMP 280 sensor

$
0
0

That is indeed fairly ugly! It is however fairly obvious that it has happened at least and you have a solution.

One place (there may be more though) where groups are added is when you modify a part with parts editor and save it as a new part. Parts editor often creates large numbers of useless nested groups. I usually ungroup the whole svg as the first step and then regroup it when I’m finished to avoid this.

Peter

Strain Gauge Module BF350-3AA

$
0
0

can someone help me create this part for fritzing i want to complete my final year project schematics
thanksthis

Strain Gauge Module BF350-3AA

$
0
0

It is easy enough to make a part, however I can’t find the pinouts for the 3 connectors. I assume power, signal and ground, but in what order?

Edit: Assuming the pins match another board I found on the net this should do what you want. If the pins are not in the correct order, post the correct one and I will change them.

BF350.fzpz (22.6 KB)

Peter

Strain Gauge Module BF350-3AA

$
0
0

hey peter, thanks for your help that is absolutely correct one. the pinouts you used are correct. many thanks my friend

Downloaded a part I need that has errors that I want to try to fix

$
0
0

When I connect the Vcc it shows it as ground in the schematic view…

Issue with custom created fritzing part


Downloaded a part I need that has errors that I want to try to fix

$
0
0

(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)

Issue with custom created fritzing part

$
0
0

There are so many problems in that part that I made a new one. This is a new part so you can load it along side to original to compare the two. Pcb is probably not quite correct as I had to guess at where the .1 pins are.
Schematic has been changed to a more standard (and smaller) version.

yl46.fzpz (20.9 KB)

Peter

Downloaded a part I need that has errors that I want to try to fix

$
0
0

As before, if you upload the part, one of us will have a look at it. Without the part it is impossible to know what is wrong. I am always willing to provide details on what I fixed, as the more people making good parts the better.

Peter

Issue with custom created fritzing part

$
0
0

Ouch :slightly_smiling_face:, I was just typing a long winded response and you post turned up. At least it got fixed properly, because mine wouldn’t’ve :slightly_smiling_face: be as good.

Strain Gauge Module BF350-3AA

$
0
0

No problem, that is a modification to a part that I had already made for someone else so easy to do (at least for me, not so much for someone new to parts creation). The hardest part was finding information on the modules :slight_smile:

Peter

Viewing all 29840 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>