Skip to main content

KiCad HTTP library plugin for InvenTree

Project description

InvenTree KiCad - HTTP Library Plugin

A KiCad Conform API endpoint plugin, designed for integration with InvenTree, empowers users to seamlessly incorporate InvenTree parts into KiCad's parts library tool. Please note that this plugin exclusively offers metadata and necessitates the presence of corresponding symbol and footprint libraries within the KiCad EDA environment.

As of the current stage of development, KiCad exclusively offers read-only access to parts through the HTTP lib interface.

However, this plugin provides a metadata import tool to import changes made within KiCad. This enables users to add footprints, symbols and datasheets to individual parts during the schematic design process if not already available and re-import that information into InvenTree to have it available for the next time.

Installing the Plugin

There are several methods available for installing this plugin. To gain a comprehensive understanding of the installation process, please refer to the InvenTree - Installing a Plugin Guide. Depending on your preferred approach, the following instructions will provide you with the necessary information.

Prior to plugin installation, ensure that you've activated both URL Integration and App Integration. You can accomplish this by going to Settings → Plugin Settings → Plugins. Additionally, if you're operating within a Docker environment, be sure to enable Check plugins on startup as well.

image

Through GitHub

Navigate to the Plugin Settings and click on the Install Plugin button. This will trigger a new window to appear, prompting you to enter the following information:

image

Through PiP

The plugin can be found here: inventree-kicad-plugin.

  • Package Name: inventree-kicad-plugin

image

IMPORTANT: Remember to restart your server and run the migrate command to implement the model changes required for this plugin. Failure to do so may result in the plugin encountering issues and not functioning correctly.

Configure Plugin Settings

After installing the plugin, head over to the Plugin Settings and activate it. Look for KiCadLibraryPlugin in the list of available plugins.

image

Once activated, you'll see a new plugin KiCad Library Endpoint on the left hand side. Click on it to open the plugin and proceed with the setup process.

image

Adding Categories to KiCad

Navigate to the admin backend, and scroll down until you find the INVENTREE_KICAD section. Within this section, click on KiCad Categories. If the section is not visible, ensure you've enabled the "Enable URL integration" and "Enable app integration" options in the Plugin Settings and run a database migration.

image

Once opened the "KiCad Categories" model, you'll have the option to add new categories which, once added, will be visible in KiCad's Symbol Chooser dialog.

image

Default Settings for Categories

The plugin allows you to set default values when the child part lacks specific details regarding the KiCad symbol, footprint, or reference. This feature is particularly useful when dealing with components such as resistors or capacitors, as they often share the same symbols, reducing the need for repetitive data entry.

image

Utilizing Footprint Parameter Mapping

If you have existing Footprint/Package Type parameters assigned to your components and prefer not to define a separate KiCad Footprint Parameter for them, you can leverage the Footprint Parameter Mapping functionality to establish a connection to KiCad Footprint names. Simply incorporate the desired mappings into the KiCad category:

image

Additionally, you can combine this with the per-category "Footprint Parameter Template" override to utilize a different parameter for mapping purposes.

image

Creating User Access Tokens

Return to the administrative backend, navigate to the USER model, and access API Tokens. Select "ADD API Token" to generate a token designated for a specific user. It's crucial to highlight the importance of creating separate tokens for each user, rather than using a universal token for everyone.

image

KiCad HTTP Library File

Below is an example config which should help you get started reasonably quickly. The only thing needed here is to replace http://127.0.0.1:8000 with your server's InvenTree URL, and replace usertokendatastring with a valid token. Save it as a file with .kicad_httplib extension, as specified in the preliminary KiCad docs. To use it, add it as a symbol library inside KiCad.

Please Note: The config file does not contain any part or category information. It merely tells KiCad what API to expect, what token to use and where to find it.

{
    "meta": {
        "version": 1.0
    },
    "name": "KiCad HTTP Library",
    "description": "A KiCad library sourced from a REST API",
    "source": {
        "type": "REST_API",
        "api_version": "v1",
        "root_url": "http://127.0.0.1:8000/plugin/kicad-library-plugin",
        "token": "usertokendatastring",
        "timeout_parts_seconds": 60,
        "timeout_categories_seconds": 6000
    }
}

Add the HTTP library to KiCad

Inside KiCad's project manager, navigate to Preferences -> Manage Symbol Libraries and click on it. Add a GLobal Library by pressing the folder in the bottom left corner. image

When choosing the .kicad_httplib file, KiCad will automatically detect that it is a HTTP lib file and only a Nickname needs to be set.

It's recommended to put a # as prefix to make sure it is at the top of the list. Otherwise one might end up scrolling a lot.

Display Stock Information in KiCad

If activated KiCad will show stock data inside the symbol chooser. The data will be updated whenever the set category timeout expires (timeout_categories_seconds).

image

Users have the option to determine the presentation style of stock data through the Stock Count Display Format as shown above. In this setting, {0} represents the item description, while {1} represents the stock information as a numerical value. Using those placeholders, users can customize how this data is merged and showcased according to their preferences. An example of how this would look is shown below.

Please Note: The stock information is not transferred into the schematic. It is only visible inside the symbol chooser!

image

Use in KiCad

Once everything has been configured properly, KiCad should be able to display all the categories and parts using the Symbol Picker.

Inside the schematic, one can either use the shortcut and press A or navigate to the ribbon at the top and press Place -> Add Symbol.

image

The Symbol Chooser should open up and display the parts sourced from InvenTree.

image

Importing Metadata from Previous Projects

Since KiCad does not offer a way to push information back to the server, InvenTree needs to have all that metadata such as footprints and symbols added manually. This can be very tedious, especially when there are thousands of parts.

This plugin's import tool uses KiCad's intermediate file which is created whenever there is a BOM export. This file contains all the project's data which is needed.

image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

inventree-kicad-plugin-1.4.0.tar.gz (21.0 kB view hashes)

Uploaded Source

Built Distribution

inventree_kicad_plugin-1.4.0-py2.py3-none-any.whl (24.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page