KiCon 2023 Database Libraries

Поделиться
HTML-код
  • Опубликовано: 19 сен 2023
  • A walkthrough from Jon Evans of how Database Libraries work and some useful examples of how to use this feature of KiCad to integrate with other software tools in your workflow. Q&A follows the talk.
    Slides are available at kicon.kicad.org/wp-content/up...
    KiCon 2023 was held in A Coruña, Spain, September 9-10 and brought together KiCad lead developers, hardware designers, plugin developers and electronic engineers from around Europe and Africa. More information can be found at kicon.kicad.org
    KiCon 2023 was made possible by @digikey @uxvtechnologies @PCBWay @kicadservicescorporation4672
  • НаукаНаука

Комментарии • 19

  • @Mtaalas
    @Mtaalas 9 месяцев назад +11

    This is one of the biggest things to come to Kicad. I can't live without database libraries after Altium showed me how powerful they are... Small part at a time and Kicad will get there to be the industry standard!

  • @FimaMillston
    @FimaMillston 8 месяцев назад +1

    Very interesting. And the polite and precise answers to questions. Thank you!

  • @mr_gerber
    @mr_gerber 6 месяцев назад +1

    This was a really good presentation. After seeing the discussions that have been on the KiCAD user forum and how much misunderstandings there were in those, I think this was useful.

  • @JismalJamal
    @JismalJamal 4 месяца назад +2

    I am glad database is there this was the limiting feature which made my colleagues stay away for long. Also Kicad + Octopart or Digikey API will be just cherry on top.

    • @GFScreech
      @GFScreech 4 месяца назад

      Second that, manfacturer part search like Altium will be the cherry on top. If Altium allows Octopart to be used.

  • @TheHareidGamer
    @TheHareidGamer 9 месяцев назад +1

    This is extremely promising, excellent talk and host!

  • @Muny
    @Muny 9 месяцев назад

    Excellent, clear presentation Jon. Thanks for the overview on this feature. I was very glad to see it added

  • @HansWurst-bk9sb
    @HansWurst-bk9sb 9 месяцев назад +1

    What I do use (and think might be interesting) are two columns that save timestamps of when rows in a dblib were created ("date_added") or updated ("date_updated"). The first one is set by creation of the row using CURRENT_TIMESTAMP. The date_update column is set be a trigger:
    CREATE TRIGGER [DATE_UPDATED_RESISTOR]
    AFTER UPDATE ON Resistor FOR EACH ROW
    WHEN OLD.date_updated = NEW.date_updated OR OLD.date_updated IS NULL
    BEGIN
    UPDATE Resistor SET date_updated=CURRENT_TIMESTAMP WHERE part_id=NEW.part_id;
    END
    Also, a nice feature is that KiCad can use views as tables to filter (for example deactivate parts that have NRND status or similar)

  • @maykol161
    @maykol161 9 месяцев назад +1

    This will save a lot of time when generating BOM

  • @GFScreech
    @GFScreech 4 месяца назад

    This is great, I always had an issue with the KiCad library.

  • @marshallscholz8629
    @marshallscholz8629 3 месяца назад +1

    Can this support arbitrary library hierarchies? so I can finally have separate nested folders for each of something like "connectors -> jst -> sh -> smd -> right angle -> [actual list of connector components]" instead of making convoluted component names so they get alphabetically sorted?

    • @BHBalast
      @BHBalast 2 месяца назад +1

      Great question, have you found an answer?

    • @marshallscholz8629
      @marshallscholz8629 2 месяца назад

      @@BHBalast
      It can not unfortionately. Kicad is lagging behind in this area.
      The main thing it does is allow you to use the same symbol/footprint across multiple parts. So for a resistor you just add a new part with the updated value and part number and you can easially add a whole series of parts without recreating a bunch of symbols.
      Now if only you could sort those boatload of parts you just made.

  • @kralsam2
    @kralsam2 5 месяцев назад

    Thank you your presentation. I found my fault of Our my db integration problem. The value attribute was not turning on automatically. I found my fault. I used {... : "true",}. But I was should {.... : true, }

  • @Jacos7rid3RduPreez
    @Jacos7rid3RduPreez 6 месяцев назад

    Can you add multiple symbols per component in 7.x or only in 8.x?

  • @CaseyHancocki3luefire
    @CaseyHancocki3luefire 9 месяцев назад

    so this is live in 7.0 ?