Blinka
Blinka brings CircuitPython APIs and, therefore, CircuitPython libraries to single board computers (SBCs). It is a pip installable Python library that runs in normal "desktop" Python. The CircuitPython runtime isn't used. CircuitPython libraries can also be installed via pip. See the guide for further details.
{% comment %}
Display the total number of boards.
{% endcomment %}
{% assign board_count = 0 %}
{% for board in site.blinka %}
{% if board.downloads_display == false %}
{% continue %}
{% endif %}
{% assign board_count = board_count | plus: 1 %}
{% endfor %}
Displaying {{ board_count }} boards.
{% comment %}
Display the boards. If an image is missing, it is replaced with unknown.jpg.
{% endcomment %}
{% for board in site.blinka %}
{% if board.downloads_display == false %}
{% continue %}
{% endif %}
{% assign board_path = "/assets/images/boards/small/" | append: board.board_image %}
{% assign board_image = 'unknown.jpg' %}
{% for static_file in site.static_files %}
{% if static_file.path == board_path %}
{% assign board_image = board.board_image %}
{% break %}
{% endif %}
{% endfor %}
{% endfor %}