85 lines
3.5 KiB
HTML
85 lines
3.5 KiB
HTML
---
|
|
layout: default
|
|
title: Blinka
|
|
permalink: /blinka
|
|
---
|
|
|
|
<div id="downloads-page">
|
|
<h1>Blinka</h1>
|
|
<p>
|
|
Blinka brings CircuitPython APIs and, therefore, CircuitPython libraries to single board computers (SBCs). It is a <a href="https://pypi.org/project/Adafruit-Blinka/">pip installable Python library</a> that runs in normal "desktop" Python. The CircuitPython runtime isn't used. <a href="https://pypi.org/search/?q=adafruit-circuitpython">CircuitPython libraries</a> can also be installed via pip. See <a href="https://learn.adafruit.com/circuitpython-on-raspberrypi-linux"> the guide</a> for further details.
|
|
</p>
|
|
<div class="downloads-inputs">
|
|
<div class="downloads-search">
|
|
<label class="search-wrapper">
|
|
<input aria-label="Search for Blinka boards" type="text" id="search" placeholder="Search for Blinka boards" />
|
|
</label>
|
|
</div>
|
|
<div class="downloads-filter">
|
|
<button class="filter" title="Filter Boards"><i class="fas fa-sliders-h" aria-hidden="true"></i></button>
|
|
</div>
|
|
<div class="downloads-filter-tags">
|
|
</div>
|
|
</div>
|
|
<div class="downloads-filter-content">
|
|
<div class="filter-buttons">
|
|
<button class="save-changes" title="Close and Save Changes"><i class="fas fa-times" aria-hidden="true"></i></button>
|
|
</div>
|
|
<div>
|
|
<div class="manufacturers">
|
|
<fieldset>
|
|
<legend>Manufacturers</legend>
|
|
<ul class="content"></ul>
|
|
</fieldset>
|
|
</div>
|
|
<div class="features">
|
|
<fieldset>
|
|
<legend>Features</legend>
|
|
<ul class="content"></ul>
|
|
</fieldset>
|
|
</div>
|
|
<div class="sort-by">
|
|
<fieldset>
|
|
<legend>Sort By</legend>
|
|
<ul class="content">
|
|
<li><input type="radio" name="sort-by" value="downloads" aria-label="Downloads" checked> Downloads</li>
|
|
<li><input type="radio" name="sort-by" value="alpha-asc" aria-label="Board Name (A to Z)"> Board Name (A to Z)</li>
|
|
<li><input type="radio" name="sort-by" value="alpha-desc" aria-label="Board Name (Z to A)"> Board Name (Z to A)</li>
|
|
<li><input type="radio" name="sort-by" value="date-desc" aria-label="Date Added (Newest First)"> Date Added (Newest First)</li>
|
|
<li><input type="radio" name="sort-by" value="date-asc" aria-label="Date Added (Oldest First)"> Date Added (Oldest First)</li>
|
|
</ul>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="download-count">
|
|
{% comment %}
|
|
Display the total number of boards.
|
|
{% endcomment %}
|
|
Displaying <span id="board_count">{{ site.blinka.size }}</span> boards.
|
|
</div>
|
|
<div class="downloads-section">
|
|
{% for board in site.blinka %}
|
|
<div class="download" data-id="{{ board.board_id }}"
|
|
data-name="{{ board.name }}"
|
|
data-downloads="0"
|
|
data-manufacturer="{{ board.manufacturer }}"
|
|
data-features="{{ board.features | join: ','}}"
|
|
data-date="{{ board.date_added }}">
|
|
<a href="{{ board.url | relative_url }}">
|
|
<div>
|
|
<div class="img-responsive-4by3">
|
|
{% include downloads/board_image.html board_image=board.board_image %}
|
|
</div>
|
|
<div class="details">
|
|
<h3>{{ board.name }}</h3>
|
|
By {{ board.manufacturer }}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/assets/javascript/downloads.js"></script>
|