I have solar power management module on my project circuit and I didn’t found it in Fritzing can you please help me with this.THANKS
Link: https://www.waveshare.com/wiki/Solar_Power_Manager_(D)#Overview
I have solar power management module on my project circuit and I didn’t found it in Fritzing can you please help me with this.THANKS
Link: https://www.waveshare.com/wiki/Solar_Power_Manager_(D)#Overview
I’ll now create the part.
Update1: done with breadboard view
Update2: done with schematic view
OK, I can’t finish the part. Can someone help me? (the following attatchment is not the finalized part)
Waveshare Solar Power Management Module-incomplete.fzpz (18.7 KB)
Note that you can’t load this part into fritzing as I’m not done with the .fzp file. I also have not added the schematic view into the part yet (the new parts editor has been screwing up on me recently)
That is a good reason to learn to modify the files directly and not use parts editor …
Peter
Thank you very much for the help. I was having a hard time modifying the diagram and this is a great improvement.
OK here are the corrections to your part.
breadboard
First rescale it correctly
then move the connectors to the bottom and place them in the correct order. They should start with connector0 on the top left (in this case there is no connection there and thus it starts on bottom left) which will change the connector pin numbers.
Then correct the spacing on the 2mm connector to be 2mm in fact. Start with the fitst connector
pin2 (connector1pin) should be exactly 2mm (as it is in real life) from pin1 (connector0pin)
so correct that for all 4 pins.
Then renumber the pins (since I moved them to the bottom of the svg I used the setbb.py script to do that)
then delete schematic entirely and redo it using Randy’s script (always worth doing as many core parts have bad schematics as in this case!)
which results in a new schematic like this
Now on to the .fzp file
first add a fritzing version to the first line so we know what version this was tested on.
<module moduleId="WaveshareSolarPowerManager(D)_78f4c56df66a7c90780dcf3c98370e0e_8" referenceFile="generic_ic_dip_10_300mil.fzp" fritzingVersion="1.0.4">
then add a description from the data sheet
<description>This solar power management module is designed for 6V~24V solar panels. It can charge the 3.7V rechargeable Li battery through a solar panel or Type-C connector and provides 5V/3A regulated output (supports multiple protocols such as PD/QC/FCP/PE/SFCP).</description>
replace the icon file (which parts editor copied from breadboard, one more reason to not use parts editor) to save some space.
<iconView>
<layers image="breadboard/WaveshareSolarPowerManager(D)_0fcb28daaa40ecdd54689cfad9d24b25_1_breadboard.svg">
<layer layerId="icon"/>
</layers>
Then remove the breadboard terminalId that comes from the generic IC but is useless from all the pins.
<connectors>
<connector id="connector0" name="Pin 1" type="male">
<description>BAT-</description>
<views>
<breadboardView>
<p layer="breadboard" svgId="connector0pin" terminalId="connector0terminal"/>
</breadboardView>
to
<connectors>
<connector id="connector0" name="Pin 1" type="male">
<description>BAT-</description>
<views>
<breadboardView>
<p layer="breadboard" svgId="connector0pin"/>
</breadboardView>
for all the pins. Then fix up the bus definitions by adding names and in the case of GND more connectors
<buses>
<bus id="GND">
<nodeMember connectorId="connector0"/>
<nodeMember connectorId="connector1"/>
<nodeMember connectorId="connector4"/>
<nodeMember connectorId="connector6"/>
<nodeMember connectorId="connector8"/>
</bus>
<bus id="BAT+">
<nodeMember connectorId="connector2"/>
<nodeMember connectorId="connector3"/>
<nodeMember connectorId="connector5"/>
</bus>
</buses>
which results in this fixed part which should do what @MrBigsEnergyDrink wants
Waveshare Solar Power Management Module-fixed.fzpz (12.7 KB)
Peter
thank you very much for the help you have given me, I have modified the diagram but in a precarious way, it is not an excuse but I started yesterday with fritzing and I am learning to modify these schemes, again thank you very much.
If you want to make parts these two tutorials will help, but as you are undoubtedly finding it is complex.
I lately learned there aren’t links to the videos in Old_Grey’s tutorial so you need to do a google search for the title and then they come up on YouTube.
Peter