From 70866aede2971783b022d4f039345783390e9f3f Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 21 Mar 2024 12:11:02 -0500 Subject: [PATCH 1/3] Check boards for valid dates, including blinka boards Previously a date was OK if it could be parsed; now it's only OK if frontmatter thinks it's a date. I'm not 100% that this is the same as jekyll, but we'll go with it for now. --- tools/check-boards.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/tools/check-boards.py b/tools/check-boards.py index b7f332fe8a..2a51a9b37c 100755 --- a/tools/check-boards.py +++ b/tools/check-boards.py @@ -1,4 +1,5 @@ #!/usr/bin/python3 +import datetime import os import json import re @@ -31,14 +32,7 @@ def verify_board_id(folder): return valid def valid_date(date): - date = str(date) - if date: - try: - parse(date) - return True - except: - return False - return False + return isinstance(date, datetime.datetime) def verify_features(folder, valid_features): valid = True @@ -160,7 +154,7 @@ def verify_blinka_board(folder): print("Family or not found or invalid value. See https://learn.adafruit.com/how-to-add-a-new-board-to-the-circuitpython-org-website/adding-to-downloads for details") raise SystemExit(True) -if not verify_date_added("_board") or not verify_date_added("blinka"): +if not verify_date_added("_board") or not verify_date_added("_blinka"): print("Date Added field not found or invalid value. See https://learn.adafruit.com/how-to-add-a-new-board-to-the-circuitpython-org-website/adding-to-downloads for details") raise SystemExit(True) From d3160e56dca3407fb1627d2d6b72c84a21608a7a Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 21 Mar 2024 12:07:39 -0500 Subject: [PATCH 2/3] Rewrite all boards with a valid date_added This also reformats all front matter due to how the file is processed. The transformation was done with ```py import datetime import sys import frontmatter for i in sys.argv[1:]: post = frontmatter.load(i) date_added = post.get("date_added", "") if isinstance(date_added, str): try: date_added = datetime.datetime.strptime(date_added, "%Y-%m-%d").replace(hour=12) except ValueError as exc: print(f"Failed to parse date {date_added} in {i}: {exc}") elif isinstance(date_added, datetime.date): date_added = datetime.datetime.combine(date_added, datetime.time(hour=12)) post["date_added"] = date_added with open(i, "wb") as f: frontmatter.dump(post, f) f.write(b"\n") # Re-add trailing newline ``` --- _blinka/adafruit_feather_rp2040.md | 24 ++--- _blinka/adafruit_feather_rp2040_can.md | 28 +++--- _blinka/adafruit_feather_rp2040_rfm.md | 25 ++--- _blinka/adafruit_feather_rp2040_rfm69.md | 25 ++--- _blinka/adafruit_feather_rp2040_thinkink.md | 28 +++--- _blinka/adafruit_itsybitsy_rp2040.md | 23 +++-- _blinka/adafruit_kb2040.md | 23 +++-- _blinka/adafruit_macropad_rp2040.md | 22 ++--- _blinka/adafruit_qt2040_trinkey.md | 23 +++-- _blinka/adafruit_qtpy_rp2040.md | 22 ++--- _blinka/avnet_iiot_gateway.md | 28 +++--- _blinka/banana_pi_bpi_m2_plus.md | 32 +++--- _blinka/banana_pi_bpi_m2_zero.md | 28 +++--- _blinka/banana_pi_bpi_m5.md | 28 +++--- _blinka/beaglebone.md | 22 ++--- _blinka/beaglebone_ai.md | 26 ++--- _blinka/beaglebone_black.md | 22 ++--- _blinka/beaglebone_black_industrial.md | 22 ++--- _blinka/beaglebone_black_wireless.md | 24 ++--- _blinka/beaglebone_blue.md | 24 ++--- _blinka/beaglebone_green_gateway.md | 24 ++--- _blinka/beaglebone_green_wireless.md | 20 ++-- _blinka/beaglev_starlight.md | 26 ++--- _blinka/binho_nova.md | 20 ++-- _blinka/clara_agx_xavier.md | 21 ++-- _blinka/clockworkpi.md | 26 ++--- _blinka/diodes_delight_piunora.md | 28 +++--- _blinka/dragonboard_410c.md | 28 +++--- _blinka/ft232h.md | 22 ++--- _blinka/giant_board.md | 20 ++-- _blinka/google_coral.md | 30 +++--- _blinka/google_coral_mini.md | 28 +++--- _blinka/greatfet_one.md | 20 ++-- _blinka/hifive_unleashed.md | 20 ++-- _blinka/jetson_agx_orin.md | 25 +++-- _blinka/jetson_nano.md | 28 +++--- _blinka/jetson_orin_nano.md | 28 +++--- _blinka/jetson_orin_nx.md | 26 ++--- _blinka/jetson_tx1.md | 26 ++--- _blinka/jetson_tx2.md | 26 ++--- _blinka/jetson_tx2_nx.md | 21 ++-- _blinka/jetson_xavier.md | 26 ++--- _blinka/jetson_xavier_nx.md | 21 ++-- _blinka/khadas_vim3.md | 32 +++--- _blinka/lemaker_banana_pro.md | 28 +++--- _blinka/libre_aml-s905x-cc.md | 28 +++--- _blinka/libre_roc-rk3328-cc.md | 28 +++--- _blinka/lichee_pi_4a.md | 30 +++--- _blinka/lichee_rv_dock_d1.md | 26 ++--- _blinka/lubancat-4.md | 32 +++--- _blinka/lubancat1.md | 30 +++--- _blinka/lubancat1n.md | 30 +++--- _blinka/lubancat2.md | 32 +++--- _blinka/lubancat2n.md | 32 +++--- _blinka/lubancat_i.mx6ull.md | 24 ++--- _blinka/lubancat_zero_n.md | 32 +++--- _blinka/lubancat_zero_w.md | 32 +++--- _blinka/mcp2221.md | 22 ++--- _blinka/milkv_duo.md | 21 ++-- _blinka/nanopi_duo2.md | 25 +++-- _blinka/nanopi_neo_air.md | 25 +++-- _blinka/nanopi_neo_h3.md | 23 +++-- _blinka/octavo_osd32mp1_brk.md | 23 +++-- _blinka/octavo_osd32mp1_red.md | 28 +++--- _blinka/odroid_c2.md | 28 +++--- _blinka/odroid_c4.md | 26 ++--- _blinka/odroid_m1.md | 28 +++--- _blinka/odroid_m1s.md | 26 ++--- _blinka/odroid_n2.md | 28 +++--- _blinka/odroid_xu4.md | 26 ++--- _blinka/odroid_xu4q.md | 26 ++--- _blinka/odyssey_x86j4105.md | 30 +++--- _blinka/olimex_a20_lime2.md | 28 +++--- _blinka/onion_omega2plus.md | 22 ++--- _blinka/orange_pi_2.md | 28 +++--- _blinka/orange_pi_3.md | 28 +++--- _blinka/orange_pi_4.md | 30 +++--- _blinka/orange_pi_4_lts.md | 28 +++--- _blinka/orange_pi_5.md | 26 ++--- _blinka/orange_pi_5_plus.md | 30 +++--- _blinka/orange_pi_lite.md | 28 +++--- _blinka/orange_pi_one.md | 30 +++--- _blinka/orange_pi_pc.md | 30 +++--- _blinka/orange_pi_pc_plus.md | 30 +++--- _blinka/orange_pi_plus_2e.md | 30 +++--- _blinka/orange_pi_r1.md | 26 ++--- _blinka/orange_pi_zero.md | 26 ++--- _blinka/orange_pi_zero2.md | 28 +++--- _blinka/orange_pi_zero_plus.md | 30 +++--- _blinka/orange_pi_zero_plus2_h5.md | 30 +++--- _blinka/pcduino2.md | 17 ++-- _blinka/pcduino3.md | 17 ++-- _blinka/pine64.md | 30 +++--- _blinka/pine_h64.md | 30 +++--- _blinka/pocketbeagle.md | 22 ++--- _blinka/pyboard_v11.md | 17 ++-- _blinka/radxa_cm3_io_board.md | 32 +++--- _blinka/radxa_rock_3a.md | 32 +++--- _blinka/radxa_rock_3c.md | 32 +++--- _blinka/radxa_rock_4se.md | 32 +++--- _blinka/radxa_rock_5b.md | 34 +++---- _blinka/radxa_zero.md | 28 +++--- _blinka/raspberry_pi_1a.md | 20 ++-- _blinka/raspberry_pi_1aplus.md | 24 ++--- _blinka/raspberry_pi_1b.md | 20 ++-- _blinka/raspberry_pi_1bplus.md | 26 ++--- _blinka/raspberry_pi_2b.md | 26 ++--- _blinka/raspberry_pi_3aplus.md | 28 +++--- _blinka/raspberry_pi_3b.md | 30 +++--- _blinka/raspberry_pi_3bplus.md | 30 +++--- _blinka/raspberry_pi_400.md | 32 +++--- _blinka/raspberry_pi_4b.md | 32 +++--- _blinka/raspberry_pi_5.md | 32 +++--- _blinka/raspberry_pi_cm1.md | 22 ++--- _blinka/raspberry_pi_cm3.md | 22 ++--- _blinka/raspberry_pi_cm3lite.md | 22 ++--- _blinka/raspberry_pi_cm3plus.md | 22 ++--- _blinka/raspberry_pi_cm3pluslite.md | 22 ++--- _blinka/raspberry_pi_cm4io.md | 30 +++--- _blinka/raspberry_pi_pico.md | 20 ++-- _blinka/raspberry_pi_zero.md | 20 ++-- _blinka/raspberry_pi_zero_2_w.md | 28 +++--- _blinka/raspberry_pi_zerow.md | 28 +++--- _blinka/rock_pi_4c.md | 34 +++---- _blinka/rock_pi_4c_plus.md | 34 +++---- _blinka/rock_pi_e.md | 30 +++--- _blinka/rock_pi_s.md | 26 ++--- _blinka/siemens_simatic_iot2050.md | 22 ++--- _blinka/siemens_simatic_iot2050_advance.md | 22 ++--- _blinka/sopine_a64.md | 21 ++-- _blinka/stm32mp157c_dk2.md | 30 +++--- _blinka/udoo_x86_ii_ultra.md | 30 +++--- _board/01space_lcd042_esp32c3.md | 28 +++--- _board/0xcb_helios.md | 20 ++-- _board/42keebs_frood.md | 20 ++-- _board/8086_commander.md | 20 ++-- _board/ADM_B_NRF52840_1.md | 18 ++-- _board/Seeed_XIAO_nRF52840_Sense.md | 31 +++--- _board/TG-Watch.md | 24 ++--- _board/adafruit_esp32s3_camera.md | 30 +++--- _board/adafruit_feather_esp32_v2.md | 32 +++--- ...afruit_feather_esp32c6_4mbflash_nopsram.md | 33 +++---- _board/adafruit_feather_esp32s2.md | 30 +++--- _board/adafruit_feather_esp32s2_bme280.md | 33 +++---- .../adafruit_feather_esp32s2_reverse_tft.md | 36 +++---- _board/adafruit_feather_esp32s2_tft.md | 32 +++--- ...fruit_feather_esp32s3_4mbflash_2mbpsram.md | 31 +++--- _board/adafruit_feather_esp32s3_nopsram.md | 31 +++--- .../adafruit_feather_esp32s3_reverse_tft.md | 38 +++---- _board/adafruit_feather_esp32s3_tft.md | 32 +++--- _board/adafruit_feather_huzzah32.md | 30 +++--- _board/adafruit_feather_rp2040.md | 26 ++--- _board/adafruit_feather_rp2040_can.md | 32 +++--- _board/adafruit_feather_rp2040_dvi.md | 32 +++--- _board/adafruit_feather_rp2040_prop_maker.md | 40 ++++---- _board/adafruit_feather_rp2040_rfm69.md | 31 +++--- _board/adafruit_feather_rp2040_rfm9x.md | 33 ++++--- _board/adafruit_feather_rp2040_scorpio.md | 26 ++--- _board/adafruit_feather_rp2040_thinkink.md | 38 +++---- _board/adafruit_feather_rp2040_usb_host.md | 32 +++--- _board/adafruit_floppsy_rp2040.md | 22 ++--- _board/adafruit_funhouse.md | 30 +++--- _board/adafruit_huzzah32_breakout.md | 30 +++--- _board/adafruit_itsybitsy_esp32.md | 26 ++--- _board/adafruit_itsybitsy_rp2040.md | 18 ++-- _board/adafruit_kb2040.md | 22 ++--- _board/adafruit_led_glasses_nrf52840.md | 30 +++--- _board/adafruit_macropad_rp2040.md | 22 ++--- _board/adafruit_magtag_2.9_grayscale.md | 32 +++--- _board/adafruit_matrixportal_s3.md | 34 +++---- _board/adafruit_metro_esp32s2.md | 28 +++--- _board/adafruit_metro_esp32s3.md | 28 +++--- _board/adafruit_metro_m7_1011_sd.md | 22 ++--- _board/adafruit_metro_rp2040.md | 22 ++--- _board/adafruit_neokey_trinkey_m0.md | 21 ++-- _board/adafruit_proxlight_trinkey_m0.md | 21 ++-- _board/adafruit_qt2040_trinkey.md | 19 ++-- _board/adafruit_qtpy_esp32_pico.md | 30 +++--- _board/adafruit_qtpy_esp32c3.md | 32 +++--- _board/adafruit_qtpy_esp32s2.md | 30 +++--- ...adafruit_qtpy_esp32s3_4mbflash_2mbpsram.md | 28 +++--- _board/adafruit_qtpy_esp32s3_nopsram.md | 28 +++--- _board/adafruit_qtpy_rp2040.md | 24 ++--- _board/adafruit_qualia_s3_rgb666.md | 34 +++---- _board/adafruit_rotary_trinkey_m0.md | 21 ++-- _board/adafruit_sht4x_trinkey_m0.md | 21 ++-- _board/adafruit_slide_trinkey_m0.md | 21 ++-- _board/ai_thinker_esp32-c3s-2m.md | 23 ++--- _board/ai_thinker_esp32-c3s.md | 22 ++--- _board/ai_thinker_esp_12k_nodemcu.md | 22 ++--- _board/aloriumtech_evo_m51.md | 28 +++--- _board/aramcon2_badge.md | 26 ++--- _board/aramcon_badge_2019.md | 24 ++--- _board/arduino_mkr1300.md | 20 ++-- _board/arduino_mkrzero.md | 22 ++--- _board/arduino_nano_33_ble.md | 22 ++--- _board/arduino_nano_33_iot.md | 22 ++--- _board/arduino_nano_esp32s3.md | 22 ++--- ...arduino_nano_esp32s3_inverted_statusled.md | 22 ++--- _board/arduino_nano_rp2040_connect.md | 22 ++--- _board/arduino_zero.md | 22 ++--- _board/artisense_rd00.md | 18 ++-- _board/atmegazero_esp32s2.md | 20 ++-- _board/bast_pro_mini_m0.md | 18 ++-- _board/bastble.md | 29 +++--- _board/bdmicro_vina_d21.md | 19 ++-- _board/bdmicro_vina_d51.md | 18 ++-- _board/bdmicro_vina_d51_pcb7.md | 18 ++-- _board/beetle-esp32-c3.md | 32 +++--- _board/bless_dev_board_multi_sensor.md | 20 ++-- _board/blm_badge.md | 24 ++--- _board/bluemicro833.md | 26 ++--- _board/bluemicro840.md | 26 ++--- _board/boardsource_blok.md | 20 ++-- _board/bpi_bit_s2.md | 26 ++--- _board/bpi_leaf_s3.md | 32 +++--- _board/bpi_picow_s3.md | 27 +++-- _board/brainboardz_neuron.md | 27 +++-- _board/breadstick_raspberry.md | 22 ++--- _board/bwshockley_figpi.md | 18 ++-- _board/capablerobot_usbhub.md | 20 ++-- _board/catwan_usbstick.md | 18 ++-- _board/challenger_840.md | 27 +++-- _board/challenger_nb_rp2040_wifi.md | 25 +++-- _board/challenger_rp2040_lora.md | 28 +++--- _board/challenger_rp2040_lte.md | 25 +++-- _board/challenger_rp2040_sdrtc.md | 24 ++--- _board/challenger_rp2040_subghz.md | 27 +++-- _board/challenger_rp2040_wifi.md | 27 +++-- _board/challenger_rp2040_wifi_ble.md | 29 +++--- _board/circuitbrains_basic_m0.md | 22 ++--- _board/circuitbrains_deluxe_m4.md | 24 ++--- _board/circuitplayground_bluefruit.md | 30 +++--- _board/circuitplayground_express.md | 40 ++++---- _board/circuitplayground_express_4h.md | 26 ++--- _board/circuitplayground_express_crickit.md | 24 ++--- ...uitplayground_express_digikey_pycon2019.md | 22 ++--- _board/circuitplayground_express_displayio.md | 28 +++--- _board/clue_nrf52840_express.md | 31 +++--- _board/columbia-dsl-sensor.md | 18 ++-- _board/cosmo_pico.md | 22 ++--- _board/cp32-m4.md | 18 ++-- _board/cp_sapling_m0.md | 22 ++--- _board/cp_sapling_m0_revb.md | 22 ++--- _board/cp_sapling_m0_spiflash.md | 22 ++--- _board/crcibernetica_ideaboard.md | 24 ++--- _board/crumpspace_crumps2.md | 22 ++--- _board/cytron_edu_pico_w.md | 24 ++--- _board/cytron_maker_feather_aiot_s3.md | 27 +++-- _board/cytron_maker_nano_rp2040.md | 22 ++--- _board/cytron_maker_pi_rp2040.md | 24 ++--- _board/cytron_maker_uno_rp2040.md | 22 ++--- _board/datalore_ip_m4.md | 20 ++-- _board/datanoise_picoadk.md | 22 ++--- _board/datum_distance.md | 18 ++-- _board/datum_imu.md | 18 ++-- _board/datum_light.md | 18 ++-- _board/datum_weather.md | 18 ++-- _board/deneyap_kart.md | 28 +++--- _board/deneyap_kart_1a.md | 28 +++--- _board/deneyap_kart_1a_v2.md | 30 +++--- _board/deneyap_kart_g.md | 30 +++--- _board/deneyap_mini.md | 26 ++--- _board/deneyap_mini_v2.md | 28 +++--- _board/diodes_delight_piunora.md | 32 +++--- _board/doit_esp32_devkit_v1.md | 22 ++--- _board/dynalora_usb.md | 20 ++-- _board/dynossat_edu_eps.md | 97 +++++++++--------- _board/dynossat_edu_obc.md | 95 +++++++++--------- _board/e_fidget.md | 20 ++-- _board/edgebadge.md | 26 ++--- _board/elecfreaks_picoed.md | 22 ++--- _board/electrolama_minik.md | 20 ++-- _board/electroniccats_bastwifi.md | 27 +++-- _board/electronut_labs_blip.md | 22 ++--- _board/electronut_labs_papyr.md | 22 ++--- _board/es3ink.md | 22 ++--- _board/escornabot_makech.md | 18 ++-- .../espressif_esp32_devkitc_v4_wroom_32e.md | 24 ++--- _board/espressif_esp32_devkitc_v4_wrover.md | 22 ++--- _board/espressif_esp32_eye.md | 22 ++--- _board/espressif_esp32_lyrat.md | 22 ++--- _board/espressif_esp32c3_devkitm_1_n4.md | 22 ++--- _board/espressif_esp32c6_devkitc_1_n8.md | 24 ++--- _board/espressif_esp32c6_devkitm_1_n4.md | 24 ++--- _board/espressif_esp32h2_devkitm_1_n4.md | 24 ++--- _board/espressif_esp32s2_devkitc_1_n4.md | 22 ++--- _board/espressif_esp32s2_devkitc_1_n4r2.md | 22 ++--- _board/espressif_esp32s2_devkitc_1_n8r2.md | 22 ++--- _board/espressif_esp32s3_box.md | 26 ++--- _board/espressif_esp32s3_box_lite.md | 26 ++--- _board/espressif_esp32s3_devkitc_1_n32r8.md | 24 ++--- _board/espressif_esp32s3_devkitc_1_n8.md | 24 ++--- _board/espressif_esp32s3_devkitc_1_n8r2.md | 24 ++--- _board/espressif_esp32s3_devkitc_1_n8r8.md | 24 ++--- ...essif_esp32s3_devkitc_1_n8r8_hacktablet.md | 24 ++--- _board/espressif_esp32s3_devkitm_1_n8.md | 24 ++--- _board/espressif_esp32s3_eye.md | 24 ++--- _board/espressif_esp32s3_lcd_ev.md | 22 ++--- _board/espressif_esp32s3_usb_otg_n8.md | 26 ++--- _board/espressif_hmi_devkit_1.md | 28 +++--- _board/espressif_kaluga_1.3.md | 20 ++-- _board/espressif_kaluga_1.md | 20 ++-- _board/espressif_saola_1_wroom.md | 22 ++--- _board/espressif_saola_1_wrover.md | 22 ++--- _board/espruino_banglejs2.md | 22 ++--- _board/espruino_pico.md | 19 ++-- _board/espruino_wifi.md | 20 ++-- _board/feather_bluefruit_sense.md | 26 ++--- _board/feather_m0_adalogger.md | 24 ++--- _board/feather_m0_basic.md | 25 ++--- _board/feather_m0_express.md | 24 ++--- _board/feather_m0_express_crickit.md | 26 ++--- _board/feather_m0_rfm69.md | 28 +++--- _board/feather_m0_rfm9x.md | 28 +++--- _board/feather_m0_supersized.md | 24 ++--- _board/feather_m4_can.md | 26 ++--- _board/feather_m4_express.md | 26 ++--- _board/feather_m7_1011.md | 26 ++--- _board/feather_mimxrt1011.md | 24 ++--- _board/feather_mimxrt1062.md | 24 ++--- _board/feather_nrf52840_express.md | 26 ++--- _board/feather_radiofruit_zigbee.md | 20 ++-- _board/feather_stm32f405_express.md | 26 ++--- _board/firebeetle2_esp32s3.md | 28 +++--- _board/flipper-zero_wifi_devboard.md | 22 ++--- _board/fluff_m0.md | 23 ++--- _board/fomu.md | 18 ++-- _board/franzininho_wifi_wroom.md | 20 ++-- _board/franzininho_wifi_wrover.md | 20 ++-- _board/gb_m4.md | 16 +-- _board/gemma_m0.md | 24 ++--- _board/gemma_m0_pycon2018.md | 20 ++-- _board/grandcentral_m4_express.md | 22 ++--- _board/gravitech_cucumber_m.md | 24 ++--- _board/gravitech_cucumber_ms.md | 24 ++--- _board/gravitech_cucumber_r.md | 24 ++--- _board/gravitech_cucumber_rs.md | 24 ++--- _board/hack_club_sprig.md | 20 ++-- _board/hallowing_m0_express.md | 30 +++--- _board/hallowing_m4_express.md | 28 +++--- _board/hardkernel_odroid_go.md | 26 ++--- _board/heltec_esp32s3_wifi_lora_v3.md | 24 ++--- _board/hexky_s2.md | 21 ++-- _board/hiibot_bluefi.md | 34 +++---- _board/hiibot_iots2.md | 30 +++--- _board/huntercat_nfc.md | 18 ++-- _board/ikigaisense_vita.md | 20 ++-- _board/imxrt1010_evk.md | 20 ++-- _board/imxrt1015_evk.md | 20 ++-- _board/imxrt1020_evk.md | 20 ++-- _board/imxrt1040_evk.md | 20 ++-- _board/imxrt1050_evkb.md | 20 ++-- _board/imxrt1060_evk.md | 20 ++-- _board/imxrt1060_evkb.md | 20 ++-- _board/itsybitsy_m0_express.md | 20 ++-- _board/itsybitsy_m4_express.md | 22 ++--- _board/itsybitsy_nrf52840_express.md | 22 ++--- _board/jpconstantineau_encoderpad_rp2040.md | 21 ++-- _board/jpconstantineau_pykey18.md | 25 +++-- _board/jpconstantineau_pykey44.md | 23 +++-- _board/jpconstantineau_pykey60.md | 21 ++-- _board/jpconstantineau_pykey87.md | 23 +++-- _board/kicksat-sprite.md | 18 ++-- _board/lilygo_t_display_rp2040.md | 22 ++--- _board/lilygo_tdeck.md | 26 ++--- _board/lilygo_tdisplay_s3.md | 88 ++++++++--------- _board/lilygo_tembed_esp32s3.md | 30 +++--- _board/lilygo_ttgo_t-01c3.md | 18 ++-- _board/lilygo_ttgo_t-oi-plus.md | 22 ++--- _board/lilygo_ttgo_t8_esp32_s2_wroom.md | 24 ++--- _board/lilygo_ttgo_t8_s2.md | 26 ++--- _board/lilygo_ttgo_t8_s2_st7789.md | 28 +++--- _board/lilygo_ttgo_tdisplay_esp32_16m.md | 26 ++--- _board/lilygo_ttgo_tdisplay_esp32_4m.md | 26 ++--- _board/lilygo_twatch_2020_v3.md | 22 ++--- _board/loc_ber_m4_base_board.md | 20 ++-- _board/lolin_c3_mini.md | 27 +++-- _board/lolin_c3_pico.md | 29 +++--- _board/lolin_s2_mini.md | 22 ++--- _board/lolin_s2_pico.md | 27 +++-- _board/lolin_s3.md | 28 +++--- _board/lolin_s3_mini.md | 26 +++-- _board/lolin_s3_pro.md | 33 +++---- _board/luatos_core_esp32c3.md | 99 +++++++++---------- _board/luatos_core_esp32c3_ch343.md | 27 +++-- _board/m5stack_atom_echo.md | 26 ++--- _board/m5stack_atom_lite.md | 24 ++--- _board/m5stack_atom_matrix.md | 28 +++--- _board/m5stack_atom_u.md | 28 +++--- _board/m5stack_atoms3.md | 28 +++--- _board/m5stack_atoms3_lite.md | 26 ++--- _board/m5stack_atoms3u.md | 26 ++--- _board/m5stack_cardputer.md | 30 +++--- _board/m5stack_core2.md | 30 +++--- _board/m5stack_core_basic.md | 32 +++--- _board/m5stack_core_fire.md | 34 +++---- _board/m5stack_dial.md | 30 +++--- _board/m5stack_m5paper.md | 28 +++--- _board/m5stack_stamp_c3.md | 22 ++--- _board/m5stack_stick_c.md | 28 +++--- _board/m5stack_stick_c_plus.md | 32 +++--- _board/m5stack_timer_camera_x.md | 28 +++--- _board/magiclick_s3_n4r2.md | 29 +++--- _board/maker_badge.md | 24 ++--- _board/makerdiary_m60_keyboard.md | 22 ++--- _board/makerdiary_nrf52840_connectkit.md | 22 ++--- _board/makerdiary_nrf52840_m2_devkit.md | 28 +++--- _board/makerdiary_nrf52840_mdk.md | 22 ++--- _board/makerdiary_nrf52840_mdk_usb_dongle.md | 22 ++--- _board/makerfabs_tft7.md | 22 ++--- _board/maple_elite_pi.md | 20 ++-- _board/matrixportal_m4.md | 32 +++--- _board/melopero_shake_rp2040.md | 26 ++--- _board/meowbit_v121.md | 28 +++--- _board/meowmeow.md | 22 ++--- _board/metro_m0_express.md | 20 ++-- _board/metro_m4_airlift_lite.md | 22 ++--- _board/metro_m4_express.md | 20 ++-- _board/metro_m7_1011.md | 24 ++--- _board/metro_nrf52840_express.md | 24 ++--- _board/microbit_v2.md | 33 +++---- _board/microdev_micro_c3.md | 26 ++--- _board/microdev_micro_s2.md | 22 ++--- _board/mini_sam_m4.md | 19 ++-- _board/mixgo_ce_serial.md | 24 ++--- _board/mixgo_ce_udisk.md | 24 ++--- _board/monster_m4sk.md | 24 ++--- _board/morpheans_morphesp-240.md | 22 ++--- _board/muselab_nanoesp32_s2_wroom.md | 24 ++--- _board/muselab_nanoesp32_s2_wrover.md | 24 ++--- _board/ndgarage_ndbit6.md | 26 ++--- _board/ndgarage_ndbit6_v2.md | 22 ++--- _board/neopixel_trinkey_m0.md | 21 ++-- _board/nfc_copy_cat.md | 18 ++-- _board/nice_nano.md | 26 ++--- _board/nucleo_f446re.md | 18 ++-- _board/nucleo_f746zg.md | 18 ++-- _board/nucleo_f767zi.md | 18 ++-- _board/nucleo_h743zi_2.md | 18 ++-- _board/nullbits_bit_c_pro.md | 22 ++--- _board/odt_bread_2040.md | 20 ++-- _board/odt_cast_away_rp2040.md | 20 ++-- _board/odt_pixelwing_esp32_s2.md | 24 ++--- _board/ohs2020_badge.md | 26 ++--- _board/openbook_m4.md | 24 ++--- _board/openmv_h7.md | 20 ++-- _board/oxocard_artwork.md | 28 +++--- _board/oxocard_connect.md | 26 ++--- _board/oxocard_galaxy.md | 28 +++--- _board/oxocard_science.md | 28 +++--- _board/p1am_200.md | 20 ++-- _board/pajenicko_picopad.md | 29 +++--- _board/particle_argon.md | 32 +++--- _board/particle_boron.md | 30 +++--- _board/particle_xenon.md | 30 +++--- _board/pca10056.md | 22 ++--- _board/pca10059.md | 22 ++--- _board/pca10100.md | 22 ++--- _board/pctel_wsc_1450.md | 20 ++-- _board/pewpew10.md | 22 ++--- _board/pewpew_lcd.md | 22 ++--- _board/pewpew_m4.md | 24 ++--- _board/picomo_v2.md | 24 ++--- _board/picoplanet.md | 25 +++-- _board/pillbug.md | 29 +++--- _board/pimoroni_badger2040.md | 22 ++--- _board/pimoroni_badger2040w.md | 30 +++--- _board/pimoroni_inky_frame_5_7.md | 30 +++--- _board/pimoroni_inky_frame_7_3.md | 30 +++--- _board/pimoroni_interstate75.md | 26 ++--- _board/pimoroni_keybow2040.md | 20 ++-- _board/pimoroni_motor2040.md | 24 ++--- _board/pimoroni_pga2040.md | 16 +-- _board/pimoroni_pico_dv_base.md | 18 ++-- _board/pimoroni_pico_dv_base_w.md | 18 ++-- _board/pimoroni_picolipo_16mb.md | 24 ++--- _board/pimoroni_picolipo_4mb.md | 24 ++--- _board/pimoroni_picosystem.md | 24 ++--- _board/pimoroni_plasma2040.md | 24 ++--- _board/pimoroni_plasma2040w.md | 30 +++--- _board/pimoroni_servo2040.md | 26 ++--- _board/pimoroni_tiny2040.md | 21 ++-- _board/pimoroni_tiny2040_2mb.md | 21 ++-- _board/pirkey_m0.md | 18 ++-- _board/pitaya_go.md | 26 ++--- _board/pyb_nano_v2.md | 20 ++-- _board/pybadge.md | 34 +++---- _board/pybadge_airlift.md | 28 +++--- _board/pyboard_v11.md | 18 ++-- _board/pycubed.md | 20 ++-- _board/pycubed_mram.md | 18 ++-- _board/pycubed_mram_v05.md | 53 +++++----- _board/pycubed_v05.md | 53 +++++----- _board/pygamer.md | 30 +++--- _board/pygamer_advance.md | 26 ++--- _board/pyportal.md | 26 ++--- _board/pyportal_pynt.md | 24 ++--- _board/pyportal_titano.md | 26 ++--- _board/pyruler.md | 20 ++-- _board/qtpy_m0.md | 26 ++--- _board/qtpy_m0_haxpress.md | 26 ++--- _board/raspberry_pi_pico.md | 22 ++--- _board/raspberry_pi_pico_w.md | 28 +++--- _board/raspberrypi_cm4.md | 27 +++-- _board/raspberrypi_cm4io.md | 19 ++-- _board/raspberrypi_pi4b.md | 28 +++--- _board/raspberrypi_zero.md | 23 +++-- _board/raspberrypi_zero2w.md | 19 ++-- _board/raspberrypi_zero_w.md | 31 +++--- _board/raytac_mdbt50q-db-40.md | 21 ++-- _board/raytac_mdbt50q-rx.md | 23 +++-- _board/robohatmm1_m4.md | 20 ++-- _board/sam32.md | 26 ++--- _board/same54_xplained.md | 18 ++-- _board/seeed_xiao_esp32c3.md | 27 +++-- _board/seeeduino_wio_terminal.md | 22 ++--- _board/seeeduino_xiao.md | 25 +++-- _board/seeeduino_xiao_kb.md | 25 +++-- _board/seeeduino_xiao_rp2040.md | 22 ++--- _board/sensebox_mcu.md | 20 ++-- _board/sensebox_mcu_esp32s2.md | 35 +++---- _board/serpente.md | 29 +++--- _board/shirtty.md | 18 ++-- _board/silabs_devkit_xg24_brd2601b.md | 25 ++--- _board/silabs_explorerkit_xg24_brd2703a.md | 28 +++--- _board/silicognition-m4-shim.md | 24 ++--- _board/silicognition_rp2040_shim.md | 20 ++-- _board/simmel.md | 19 ++-- _board/smartbeedesigns_bee_data_logger.md | 26 ++--- _board/smartbeedesigns_bee_motion_s3.md | 26 ++--- _board/smartbeedesigns_bee_s3.md | 24 ++--- _board/snekboard.md | 20 ++-- _board/solderparty_bbq20kbd.md | 26 ++--- _board/solderparty_rp2040_stamp.md | 25 +++-- _board/sparkfun_lumidrive.md | 20 ++-- _board/sparkfun_micromod_rp2040.md | 18 ++-- _board/sparkfun_nrf52840_micromod.md | 20 ++-- _board/sparkfun_nrf52840_mini.md | 22 ++--- _board/sparkfun_pro_micro_rp2040.md | 23 ++--- _board/sparkfun_qwiic_micro_no_flash.md | 21 ++-- _board/sparkfun_qwiic_micro_with_flash.md | 21 ++-- _board/sparkfun_redboard_turbo.md | 22 ++--- _board/sparkfun_samd21_dev.md | 20 ++-- _board/sparkfun_samd21_mini.md | 20 ++-- _board/sparkfun_samd51_micromod.md | 18 ++-- _board/sparkfun_samd51_thing_plus.md | 25 +++-- _board/sparkfun_stm32_thing_plus.md | 27 +++-- _board/sparkfun_stm32f405_micromod.md | 18 ++-- _board/sparkfun_teensy_micromod.md | 17 ++-- _board/sparkfun_thing_plus_matter_mgm240p.md | 28 +++--- _board/sparkfun_thing_plus_rp2040.md | 27 +++-- _board/splitkb_liatris.md | 22 ++--- _board/spresense.md | 24 ++--- _board/ssci_isp1807_dev_board.md | 42 ++++---- _board/ssci_isp1807_micro_board.md | 48 ++++----- _board/stackrduino_m0_pro.md | 26 ++--- _board/stm32f411ce_blackpill.md | 26 ++--- _board/stm32f411ce_blackpill_with_flash.md | 20 ++-- _board/stm32f411ve_discovery.md | 16 +-- _board/stm32f412zg_discovery.md | 18 ++-- _board/stm32f4_discovery.md | 16 +-- _board/stm32f746g_discovery.md | 18 ++-- _board/stringcar_m0_express.md | 18 ++-- _board/supermini_nrf52840.md | 28 +++--- _board/swan_r5.md | 22 ++--- _board/takayoshiotake_octave_rp2040.md | 18 ++-- _board/targett_module_clip_wroom.md | 20 ++-- _board/targett_module_clip_wrover.md | 20 ++-- _board/teensy40.md | 21 ++-- _board/teensy41.md | 20 ++-- _board/teknikio_bluebird.md | 19 ++-- _board/thunderpack_v11.md | 16 +-- _board/thunderpack_v12.md | 16 +-- _board/tinkeringtech_scoutmakes_azul.md | 28 +++--- _board/trellis_m4_express.md | 24 ++--- _board/trinket_m0.md | 20 ++-- _board/trinket_m0_haxpress.md | 20 ++-- _board/uartlogger2.md | 20 ++-- _board/uchip.md | 20 ++-- _board/ugame10.md | 24 ++--- _board/ugame22.md | 22 ++--- _board/unexpectedmaker_bling.md | 20 ++-- _board/unexpectedmaker_blizzard_s3.md | 22 ++--- _board/unexpectedmaker_feathers2.md | 32 +++--- _board/unexpectedmaker_feathers2_neo.md | 32 +++--- .../unexpectedmaker_feathers2_prerelease.md | 32 +++--- _board/unexpectedmaker_feathers3.md | 34 +++---- _board/unexpectedmaker_nanos3.md | 24 ++--- _board/unexpectedmaker_pros3.md | 34 +++---- _board/unexpectedmaker_tinyc6.md | 28 +++--- _board/unexpectedmaker_tinypico.md | 33 +++---- _board/unexpectedmaker_tinypico_nano.md | 24 ++--- _board/unexpectedmaker_tinys2.md | 28 +++--- _board/unexpectedmaker_tinys3.md | 32 +++--- _board/unexpectedmaker_tinywatch_s3.md | 20 ++-- _board/unknown.md | 14 +-- _board/upico.md | 18 ++-- _board/vcc_gnd_yd_rp2040.md | 20 ++-- _board/warmbit_bluepixel.md | 18 ++-- _board/waveshare_esp32_s2_pico_lcd.md | 24 ++--- _board/waveshare_esp32_s3_pico.md | 25 +++-- _board/waveshare_esp32_s3_zero.md | 24 ++--- _board/waveshare_esp32s2_pico.md | 22 ++--- _board/waveshare_rp2040_lcd_0_96.md | 24 ++--- _board/waveshare_rp2040_lcd_1_28.md | 22 ++--- _board/waveshare_rp2040_plus_16mb.md | 20 ++-- _board/waveshare_rp2040_plus_4mb.md | 20 ++-- _board/waveshare_rp2040_tiny.md | 18 ++-- _board/waveshare_rp2040_touch_lcd_1_28.md | 22 ++--- _board/waveshare_rp2040_zero.md | 20 ++-- _board/weact_esp32c6_n4.md | 25 +++-- _board/weact_esp32c6_n8.md | 25 +++-- _board/weact_studio_pico.md | 20 ++-- _board/weact_studio_pico_16mb.md | 20 ++-- _board/winterbloom_big_honking_button.md | 20 ++-- _board/winterbloom_sol.md | 20 ++-- _board/wisdpi_ardu2040m.md | 24 +++-- _board/wisdpi_tiny_rp2040.md | 23 ++--- _board/wiznet_w5100s_evb_pico.md | 18 ++-- _board/wiznet_w5500_evb_pico.md | 18 ++-- _board/xinabox_cc03.md | 19 ++-- _board/xinabox_cs11.md | 19 ++-- _board/yd_esp32_s3_n16r8.md | 20 ++-- _board/yd_esp32_s3_n8r8.md | 20 ++-- _board/zrichard_rp2.65-f.md | 19 ++-- awesome-circuitpython | 2 +- tools/check-boards.py | 1 - 628 files changed, 7814 insertions(+), 7920 deletions(-) diff --git a/_blinka/adafruit_feather_rp2040.md b/_blinka/adafruit_feather_rp2040.md index c9d5130c53..7b4803adb7 100644 --- a/_blinka/adafruit_feather_rp2040.md +++ b/_blinka/adafruit_feather_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "adafruit_feather_rp2040" -title: "Feather RP2040 Download" -name: "Feather RP2040" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/4884" -board_image: "adafruit_feather_rp2040.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico" blinka: true -date_added: 2021-12-6 +board_id: adafruit_feather_rp2040 +board_image: adafruit_feather_rp2040.jpg +board_url: +- https://www.adafruit.com/product/4884 +date_added: 2021-12-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico features: - - Feather-Compatible - - STEMMA QT/QWIIC +- Feather-Compatible +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 +title: Feather RP2040 Download --- A new chip means a new Feather, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the Feather Treatment" and so we did! This Feather features the **RP2040**, and all niceties you know and love about Feather. diff --git a/_blinka/adafruit_feather_rp2040_can.md b/_blinka/adafruit_feather_rp2040_can.md index d2cd1cbd29..60baaacfae 100644 --- a/_blinka/adafruit_feather_rp2040_can.md +++ b/_blinka/adafruit_feather_rp2040_can.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_can" -title: "Feather RP2040 CAN Bus Download" -name: "Feather RP2040 CAN Bus" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5724" -board_image: "adafruit_feather_rp2040_can.jpg" blinka: true -date_added: 2023-5-2 -tags: - - CAN Bus Feather - - Feather CAN Bus +board_id: adafruit_feather_rp2040_can +board_image: adafruit_feather_rp2040_can.jpg +board_url: +- https://www.adafruit.com/product/5724 +date_added: 2023-05-02 12:00:00 features: - - Feather-Compatible - - STEMMA QT/QWIIC +- Feather-Compatible +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 CAN Bus +tags: +- CAN Bus Feather +- Feather CAN Bus +title: Feather RP2040 CAN Bus Download --- If you'd like quickly get started with CAN bus interfacing, with no soldering required, our **Adafruit RP2040 CAN Bus Feather** comes ready-to-rock with a microcontroller, CAN chipset and terminal blocks for instant gratification. [The controller used is the MCP26525 (aka a MCP2515 with built-in transciever), an extremely popular and well-supported chipset](https://www.microchip.com/en-us/product/MCP2515) that has drivers in Arduino and [CircuitPython](https://github.com/adafruit/Adafruit_CircuitPython_MCP2515) and only requires an SPI port and two pins for chip-select and IRQ. Use it to send and receive messages in either standard or extended format at up to 1 Mbps. diff --git a/_blinka/adafruit_feather_rp2040_rfm.md b/_blinka/adafruit_feather_rp2040_rfm.md index ae3f34ffa5..9ffe3b0797 100644 --- a/_blinka/adafruit_feather_rp2040_rfm.md +++ b/_blinka/adafruit_feather_rp2040_rfm.md @@ -1,18 +1,19 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_rfm" -title: "Feather RP2040 RFM9x Board Download" -name: "Feather RP2040 RFM9x" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5714" -board_image: "adafruit_feather_rp2040_rfm9x.jpg" blinka: true -date_added: 2023-4-4 +board_id: adafruit_feather_rp2040_rfm +board_image: adafruit_feather_rp2040_rfm9x.jpg +board_url: +- https://www.adafruit.com/product/5714 +date_added: 2023-04-04 12:00:00 features: - - Feather-Compatible - - STEMMA QT/QWIIC +- Feather-Compatible +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 RFM9x +title: Feather RP2040 RFM9x Board Download --- + This is the Adafruit Feather RP2040 RFM9x. We call these RadioFruits, our take on a microcontroller with packet radio transceiver with built-in USB and battery charging. It's an Adafruit Feather RP2040 with a radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi. Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here. @@ -57,4 +58,4 @@ To make it easy to use for portable projects, we added a connector for any of ou ## Purchase -* [Adafruit](https://www.adafruit.com/product/5714) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5714) diff --git a/_blinka/adafruit_feather_rp2040_rfm69.md b/_blinka/adafruit_feather_rp2040_rfm69.md index 2ff1c5a40c..45b63fc696 100644 --- a/_blinka/adafruit_feather_rp2040_rfm69.md +++ b/_blinka/adafruit_feather_rp2040_rfm69.md @@ -1,18 +1,19 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_rfm" -title: "Feather RP2040 RFM69 Board Download" -name: "Feather RP2040 RFM69" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5712" -board_image: "adafruit_feather_rp2040_rfm69.jpg" blinka: true -date_added: 2023-4-4 +board_id: adafruit_feather_rp2040_rfm +board_image: adafruit_feather_rp2040_rfm69.jpg +board_url: +- https://www.adafruit.com/product/5712 +date_added: 2023-04-04 12:00:00 features: - - Feather-Compatible - - STEMMA QT/QWIIC +- Feather-Compatible +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 RFM69 +title: Feather RP2040 RFM69 Board Download --- + This is the Adafruit Feather RP2040 RFM69. We call these RadioFruits, our take on a microcontroller with packet radio transceiver with built-in USB and battery charging. It's an Adafruit Feather RP2040 with a radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi. Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here. @@ -59,4 +60,4 @@ To make it easy to use for portable projects, we added a connector for any of ou ## Purchase -* [Adafruit](https://www.adafruit.com/product/5712) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5712) diff --git a/_blinka/adafruit_feather_rp2040_thinkink.md b/_blinka/adafruit_feather_rp2040_thinkink.md index ec404ddc35..4b7457afb6 100644 --- a/_blinka/adafruit_feather_rp2040_thinkink.md +++ b/_blinka/adafruit_feather_rp2040_thinkink.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_thinkink" -title: "Feather RP2040 ThinkInk Download" -name: "Feather RP2040 ThinkInk" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5727" -board_image: "adafruit_feather_rp2040_thinkink.jpg" blinka: true -date_added: 2023-5-2 -tags: - - ThinkInk Feather - - Feather ThinkInk +board_id: adafruit_feather_rp2040_thinkink +board_image: adafruit_feather_rp2040_thinkink.jpg +board_url: +- https://www.adafruit.com/product/5727 +date_added: 2023-05-02 12:00:00 features: - - Feather-Compatible - - STEMMA QT/QWIIC +- Feather-Compatible +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 ThinkInk +tags: +- ThinkInk Feather +- Feather ThinkInk +title: Feather RP2040 ThinkInk Download --- Easy e-paper and RP2040 finally come to your Feather with this Adafruit RP2040 Feather Think Ink that's designed to make it a breeze to add almost any common e-Ink/e-Paper display. Chances are you've seen one of those new-fangled 'e-readers' like the Kindle or Nook. They have gigantic electronic paper 'static' displays - that means the image stays on the display even when power is completely disconnected. The image is also high contrast and very daylight readable. It really does look just like printed paper! diff --git a/_blinka/adafruit_itsybitsy_rp2040.md b/_blinka/adafruit_itsybitsy_rp2040.md index 7ff808eb8f..88dda2569f 100644 --- a/_blinka/adafruit_itsybitsy_rp2040.md +++ b/_blinka/adafruit_itsybitsy_rp2040.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "adafruit_itsybitsy_rp2040" -title: "ItsyBitsy RP2040 Download" -name: "ItsyBitsy RP2040" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/4888" -board_image: "adafruit_itsybitsy_rp2040.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico" blinka: true -date_added: 2021-12-6 -features: - +board_id: adafruit_itsybitsy_rp2040 +board_image: adafruit_itsybitsy_rp2040.jpg +board_url: +- https://www.adafruit.com/product/4888 +date_added: 2021-12-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico +features: null +layout: download +manufacturer: Adafruit +name: ItsyBitsy RP2040 +title: ItsyBitsy RP2040 Download --- A new chip means a new ItsyBitsy, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the ItsyBitsy teensy-weensy Treatment" and so we did! This Itsy' features the RP2040, and all niceties you know and love about the [ItsyBitsy family](https://www.adafruit.com/category/1008). diff --git a/_blinka/adafruit_kb2040.md b/_blinka/adafruit_kb2040.md index f13f3be2f1..e4c565b1c8 100644 --- a/_blinka/adafruit_kb2040.md +++ b/_blinka/adafruit_kb2040.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "adafruit_kb2040" -title: "Adafruit KB2040 Download" -name: "Adafruit KB2040" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5302" -board_image: "adafruit_kb2040.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico" blinka: true -date_added: 2023-9-6 +board_id: adafruit_kb2040 +board_image: adafruit_kb2040.jpg +board_url: +- https://www.adafruit.com/product/5302 +date_added: 2023-09-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico features: - - STEMMA QT/QWIIC - +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Adafruit KB2040 +title: Adafruit KB2040 Download --- A wild Kee Boar appears! It’s a shiny **KB2040**! An Arduino Pro Micro-shaped board for Keebs with RP2040. (#keeblife 4 evah) A lot of folks like using Adafruit parts for their Keeb builds – but with the ItsyBitsy not being pin-compatible with the Pro Micro pinout, it really wasn't very easy without some sort of adapter plate. diff --git a/_blinka/adafruit_macropad_rp2040.md b/_blinka/adafruit_macropad_rp2040.md index ccb476954f..6ac0a16251 100644 --- a/_blinka/adafruit_macropad_rp2040.md +++ b/_blinka/adafruit_macropad_rp2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "adafruit_macropad_rp2040" -title: "MacroPad RP2040 Download" -name: "MacroPad RP2040" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5128" -board_image: "adafruit_macropad_rp2040.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico" blinka: true -date_added: 2021-12-6 +board_id: adafruit_macropad_rp2040 +board_image: adafruit_macropad_rp2040.jpg +board_url: +- https://www.adafruit.com/product/5128 +date_added: 2021-12-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico features: - - STEMMA QT/QWIIC +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: MacroPad RP2040 +title: MacroPad RP2040 Download --- Strap yourself in, we're launching in T-minus 10 seconds...Destination? A new Class M planet called MACROPAD! M here, stands for Microcontroller because this 3x4 keyboard controller features the newest technology from the Raspberry Pi sector: say hello to the RP2040. It's speedy little microcontroller with lots of GPIO pins and a 64 times more RAM than the Apollo Guidance Computer. We added 8 MB of flash memory for plenty of storage. diff --git a/_blinka/adafruit_qt2040_trinkey.md b/_blinka/adafruit_qt2040_trinkey.md index 771aaabde3..b2f7d1bf8b 100644 --- a/_blinka/adafruit_qt2040_trinkey.md +++ b/_blinka/adafruit_qt2040_trinkey.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "adafruit_qt2040_trinkey" -title: "Trinkey QT2040 Download" -name: "Trinkey QT2040" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/5056" -board_image: "adafruit_qt2040_trinkey.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico" blinka: true -date_added: 2021-12-6 +board_id: adafruit_qt2040_trinkey +board_image: adafruit_qt2040_trinkey.jpg +board_url: +- https://www.adafruit.com/product/5056 +date_added: 2021-12-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico features: - - STEMMA QT/QWIIC - +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Trinkey QT2040 +title: Trinkey QT2040 Download --- It's half USB Key, half Adafruit QT Py, and a lotta RP2040*...*it's **Trinkey QT2040**, the circuit board with an RP2040 heart and Stemma QT legs. Folks are loving the [QT Py 2040](https://www.adafruit.com/product/4900) we made, but maybe you want something plug-and-play. So we thought, hey what if we made something like that plugs right into your computer's USB port? And this is what we came up with! diff --git a/_blinka/adafruit_qtpy_rp2040.md b/_blinka/adafruit_qtpy_rp2040.md index 33cd974d14..c14bb2d0e3 100644 --- a/_blinka/adafruit_qtpy_rp2040.md +++ b/_blinka/adafruit_qtpy_rp2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "adafruit_qtpy_rp2040" -title: "QT Py RP2040 Download" -name: "QT Py RP2040" -manufacturer: "Adafruit" -board_url: - - "https://www.adafruit.com/product/4900" -board_image: "adafruit_qtpy_rp2040.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico" blinka: true -date_added: 2021-12-6 +board_id: adafruit_qtpy_rp2040 +board_image: adafruit_qtpy_rp2040.jpg +board_url: +- https://www.adafruit.com/product/4900 +date_added: 2021-12-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico features: - - STEMMA QT/QWIIC +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: QT Py RP2040 +title: QT Py RP2040 Download --- What a cutie pie! Or is it... a QT Py? This diminutive dev board comes with one of our new favorite chip, the RP2040. It's been made famous in the new [Raspberry Pi Pico](https://www.adafruit.com/pico) *and* our [Feather RP2040](http://www.adafruit.com/product/4884) and [ItsyBitsy RP2040](http://www.adafruit.com/product/4888), but what if we wanted something really *smol?* diff --git a/_blinka/avnet_iiot_gateway.md b/_blinka/avnet_iiot_gateway.md index 9cfe047fff..83d380cc59 100644 --- a/_blinka/avnet_iiot_gateway.md +++ b/_blinka/avnet_iiot_gateway.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "avnet_iiot_gateway" -title: "SmartEdge Industrial IOT Gateway Download" -name: "SmartEdge Industrial IOT Gateway" -manufacturer: "Avnet, Inc." +blinka: true +board_id: avnet_iiot_gateway +board_image: avnet_iiot_gateway.jpg board_url: - - "https://www.avnet.com/wps/portal/us/solutions/iot/products/gateways/" -board_image: "avnet_iiot_gateway.jpg" +- https://www.avnet.com/wps/portal/us/solutions/iot/products/gateways/ +date_added: 2020-05-15 12:00:00 downloads_display: true -blinka: true -date_added: 2020-5-15 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Avnet, Inc. +name: SmartEdge Industrial IOT Gateway +title: SmartEdge Industrial IOT Gateway Download --- Gateways can be as varied as the devices they help connect, with each gateway needing different protocols, connection methodologies and energy requirements to bring together the myriad of distributed parts that make up the IoT whole. Gateways serve critical functions such as data filtering and security and up to application code. Whether an app on a mobile device, a demo board, or even a connected sensor, gateways are critical to the functioning of the IoT—and Avnet’s deep hardware experience help connect your solutions to the cloud smartly and with security in mind. diff --git a/_blinka/banana_pi_bpi_m2_plus.md b/_blinka/banana_pi_bpi_m2_plus.md index 5bf39c567f..dfcb1a2632 100644 --- a/_blinka/banana_pi_bpi_m2_plus.md +++ b/_blinka/banana_pi_bpi_m2_plus.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "banana_pi_bpi_m2_plus" -title: "Banana Pi BPI-M2+ Download" -name: "Banana Pi BPI-M2+" -manufacturer: "SinoVoip" +blinka: true +board_id: banana_pi_bpi_m2_plus +board_image: banana_pi_bpi_m2_plus.jpg board_url: - - "https://wiki.banana-pi.org/Banana_Pi_BPI-M2%2B" -board_image: "banana_pi_bpi_m2_plus.jpg" -download_instructions: "" +- https://wiki.banana-pi.org/Banana_Pi_BPI-M2%2B +date_added: 2022-10-17 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2022-10-17 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO - - Ethernet - - Infrared Receiver +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +- Ethernet +- Infrared Receiver +layout: download +manufacturer: SinoVoip +name: Banana Pi BPI-M2+ +title: Banana Pi BPI-M2+ Download --- Banana PI BPI-M2+ is the open source hardware platform, use Alliwnner H3 (option H2+ chip and H5 chip ) chip on board. and mini size only 65mm*65mm, diff --git a/_blinka/banana_pi_bpi_m2_zero.md b/_blinka/banana_pi_bpi_m2_zero.md index 06936594f5..9c3ef4385c 100644 --- a/_blinka/banana_pi_bpi_m2_zero.md +++ b/_blinka/banana_pi_bpi_m2_zero.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "banana_pi_bpi_m2_zero" -title: "Banana Pi BPI-M2 Zero Download" -name: "Banana Pi BPI-M2 Zero" -manufacturer: "SinoVoip" +blinka: true +board_id: banana_pi_bpi_m2_zero +board_image: banana_pi_m2_zero.jpg board_url: - - "https://wiki.banana-pi.org/Banana_Pi_BPI-M2_ZERO" -board_image: "banana_pi_m2_zero.jpg" -download_instructions: "" +- https://wiki.banana-pi.org/Banana_Pi_BPI-M2_ZERO +date_added: 2020-10-31 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-10-31 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: SinoVoip +name: Banana Pi BPI-M2 Zero +title: Banana Pi BPI-M2 Zero Download --- The Banana Pi M2 Zero is an ultra compact single board computer which measures only 60mm*30mm. Its external interfaces are the same as the Raspberry Pi Zero W, and it will fit almost all cases and accessories for the Zero W. It uses the quad-core Cortex A7 Allwinner H2+ processor, with 512MB RAM. It's ideal for light-weight systems and space-limited applications. Like other members of the Banana Pi family, it supports both Linux and Android operating systems. diff --git a/_blinka/banana_pi_bpi_m5.md b/_blinka/banana_pi_bpi_m5.md index 151abcef4a..7aa3e53954 100644 --- a/_blinka/banana_pi_bpi_m5.md +++ b/_blinka/banana_pi_bpi_m5.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "banana_pi_bpi_m5" -title: "Banana Pi BPI-M5 Download" -name: "Banana Pi BPI-M5" -manufacturer: "SinoVoip" +blinka: true +board_id: banana_pi_bpi_m5 +board_image: banana_pi_bpi_m5.jpg board_url: - - "https://www.banana-pi.org/en/banana-pi-sbcs/55.html" -board_image: "banana_pi_bpi_m5.jpg" -download_instructions: "" +- https://www.banana-pi.org/en/banana-pi-sbcs/55.html +date_added: 2022-07-22 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2022-7-22 features: - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 - - Infrared Receiver +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +- Infrared Receiver +layout: download +manufacturer: SinoVoip +name: Banana Pi BPI-M5 +title: Banana Pi BPI-M5 Download --- Banana Pi BPI-M5 is the next generation single board computer from Banana Pi in 2020. It is powered by Amlogic S905X3 quad-core Cortex-A55 (2.0 XXGHz) processor.Onboard 4GB LPDDR4 memory and 16GB EMMC storage, and supports 4 USB 3.0 interface, a gigabit network port. diff --git a/_blinka/beaglebone.md b/_blinka/beaglebone.md index cf5d4d9c29..8f4dbcacee 100644 --- a/_blinka/beaglebone.md +++ b/_blinka/beaglebone.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "beaglebone" -title: "BeagleBone Download" -name: "BeagleBone" -manufacturer: "BeagleBoard" +blinka: true +board_id: beaglebone +board_image: beaglebone.jpg board_url: - - "https://beagleboard.org/bone-original" -board_image: "beaglebone.jpg" -download_instructions: "" +- https://beagleboard.org/bone-original +date_added: 2021-04-06 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2021-4-6 features: - - Ethernet +- Ethernet +layout: download +manufacturer: BeagleBoard +name: BeagleBone +title: BeagleBone Download --- BeagleBone is an $89 MSRP, credit-card-sized Linux computer that connects to the Internet and runs software such as Android 4.0 and Ubuntu. With plenty of I/O and processing power for real-time analysis provided by an AM335x 720MHz ARM® processor, BeagleBone can be complemented with cape plug-in boards to augment functionality. diff --git a/_blinka/beaglebone_ai.md b/_blinka/beaglebone_ai.md index 52b16a5d2c..dfcd7af22f 100644 --- a/_blinka/beaglebone_ai.md +++ b/_blinka/beaglebone_ai.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "beaglebone_ai" -title: "BeagleBone AI Download" -name: "BeagleBone AI" -manufacturer: "BeagleBoard" +blinka: true +board_id: beaglebone_ai +board_image: beaglebone_ai.jpg board_url: - - "https://beagleboard.org/ai" -board_image: "beaglebone_ai.jpg" +- https://beagleboard.org/ai +date_added: 2021-01-20 12:00:00 downloads_display: true -blinka: true -date_added: 2021-1-20 features: - - Ethernet - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort +- Ethernet +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +layout: download +manufacturer: BeagleBoard +name: BeagleBone AI +title: BeagleBone AI Download --- Built on the proven BeagleBoard.org® open source Linux approach, BeagleBone® AI fills the gap between small SBCs and more powerful industrial computers. Based on the Texas Instruments AM5729, developers have access to the powerful SoC with the ease of BeagleBone® Black header and mechanical compatibility. BeagleBone® AI makes it easy to explore how artificial intelligence (AI) can be used in everyday life via the TI C66x digital-signal-processor (DSP) cores and embedded-vision-engine (EVE) cores supported through an optimized TIDL machine learning OpenCL API with pre-installed tools. Focused on everyday automation in industrial, commercial and home applications. diff --git a/_blinka/beaglebone_black.md b/_blinka/beaglebone_black.md index b250763a4e..31b377f3cf 100644 --- a/_blinka/beaglebone_black.md +++ b/_blinka/beaglebone_black.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "beaglebone_black" -title: "BeagleBone Black Download" -name: "BeagleBone Black" -manufacturer: "BeagleBoard" +blinka: true +board_id: beaglebone_black +board_image: beaglebone_black.jpg board_url: - - "https://beagleboard.org/black" -board_image: "beaglebone_black.jpg" +- https://beagleboard.org/black +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - HDMI/DisplayPort +- Ethernet +- HDMI/DisplayPort +layout: download +manufacturer: BeagleBoard +name: BeagleBone Black +title: BeagleBone Black Download --- If you liked the BeagleBone Black Rev B, you will love the Rev C! The Rev C has a blistering 1GHz AM3358 processor and 512MB onboard DDR3 RAM, two 46-pin headers, micro HDMI for audio/video output, USB ports, 10/100 Ethernet and other I/O features. The Rev C is an ultra-powered embedded computer that can fit in a mint tin. diff --git a/_blinka/beaglebone_black_industrial.md b/_blinka/beaglebone_black_industrial.md index 5bb1ed4ead..be7601a779 100644 --- a/_blinka/beaglebone_black_industrial.md +++ b/_blinka/beaglebone_black_industrial.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "beaglebone_black_industrial" -title: "BeagleBone Black Industrial Download" -name: "BeagleBone Black Industrial" -manufacturer: "Element14" +blinka: true +board_id: beaglebone_black_industrial +board_image: beaglebone_black_industrial.jpg board_url: - - "https://beagleboard.org/e14-bbbi" -board_image: "beaglebone_black_industrial.jpg" +- https://beagleboard.org/e14-bbbi +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - HDMI/DisplayPort +- Ethernet +- HDMI/DisplayPort +layout: download +manufacturer: Element14 +name: BeagleBone Black Industrial +title: BeagleBone Black Industrial Download --- The element14 BeagleBone Black Industrial (BBONE-BLACK-IND-4G) is a low cost, high-expansion focused BeagleBoard using a low cost industrial temperature grade Sitara™ AM3358 ARM® Cortex™-A8 processor from Texas Instruments. BBONE-BLACK-IND-4G ships with the Debian Linux distribution preinstalled on the onboard FLASH, ready to start evaluation and development. diff --git a/_blinka/beaglebone_black_wireless.md b/_blinka/beaglebone_black_wireless.md index 03eedc8b14..601a095096 100644 --- a/_blinka/beaglebone_black_wireless.md +++ b/_blinka/beaglebone_black_wireless.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "beaglebone_black_wireless" -title: "BeagleBone Black Wireless Download" -name: "BeagleBone Black Wireless" -manufacturer: "BeagleBoard" +blinka: true +board_id: beaglebone_black_wireless +board_image: beaglebone_black_wireless.jpg board_url: - - "https://beagleboard.org/black-wireless" -board_image: "beaglebone_black_wireless.jpg" +- https://beagleboard.org/black-wireless +date_added: 2020-03-25 12:00:00 downloads_display: true -blinka: true -date_added: 2020-3-25 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +layout: download +manufacturer: BeagleBoard +name: BeagleBone Black Wireless +title: BeagleBone Black Wireless Download --- Replacing the 10/100 Ethernet port with onboard 802.11 b/g/n 2.4GHz WiFi and Bluetooth, the popular open source BeagleBone® Black computer now comes with built-in wireless networking capability. Leveraging a partnership with Octavo Systems and designed in CadSoft Eagle, BeagleBone® Black Wireless is the easiest to use and modify credit-card sized IoT Linux computer available. diff --git a/_blinka/beaglebone_blue.md b/_blinka/beaglebone_blue.md index 108b42280f..72ccd7c6cb 100644 --- a/_blinka/beaglebone_blue.md +++ b/_blinka/beaglebone_blue.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "beaglebone_blue" -title: "BeagleBone Blue Download" -name: "BeagleBone Blue" -manufacturer: "BeagleBoard" +blinka: true +board_id: beaglebone_blue +board_image: beaglebone_blue.jpg board_url: - - "https://beagleboard.org/blue" -board_image: "beaglebone_blue.jpg" +- https://beagleboard.org/blue +date_added: 2023-05-04 12:00:00 downloads_display: true -blinka: true -date_added: 2023-5-4 features: - - Wi-Fi - - Bluetooth/BLE - - STEMMA QT/QWIIC +- Wi-Fi +- Bluetooth/BLE +- STEMMA QT/QWIIC +layout: download +manufacturer: BeagleBoard +name: BeagleBone Blue +title: BeagleBone Blue Download --- BeagleBone® Blue is an all-in-one Linux-based computer for robotics, integrating onto a single small (3.5" x 2.15") board the Octavo OSD3358 microprocessor together with wifi/bluetooth, IMU/barometer, power regulation and state-of-charge LEDs for a 2-cell LiPo, H-Bridges, and discrete connectors for 4 DC motors+encoders, 8 servos, and all of the commonly-needed buses for additional peripherals in embedded applications. Fully open source and actively supported by a strong community, the real-time performance, flexible networking, and rich set of robotics-oriented capabilities make building mobile robots with the Blue fast, streamlined, affordable, and fun. diff --git a/_blinka/beaglebone_green_gateway.md b/_blinka/beaglebone_green_gateway.md index af37284cd4..dd6386a951 100644 --- a/_blinka/beaglebone_green_gateway.md +++ b/_blinka/beaglebone_green_gateway.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "beaglebone_green_gateway" -title: "BeagleBone Green Gateway Download" -name: "BeagleBone Green Gateway" -manufacturer: "SeeedStudio" +blinka: true +board_id: beaglebone_green_gateway +board_image: beaglebone_green_gateway.jpg board_url: - - "https://beagleboard.org/green-wireless" -board_image: "beaglebone_green_gateway.jpg" +- https://beagleboard.org/green-wireless +date_added: 2020-11-01 12:00:00 downloads_display: true -blinka: true -date_added: 2020-11-1 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet +- Wi-Fi +- Bluetooth/BLE +- Ethernet +layout: download +manufacturer: SeeedStudio +name: BeagleBone Green Gateway +title: BeagleBone Green Gateway Download --- Seeed Studio BeagleBone® Green Gateway is a low cost, open-source, community supported development platform for developers and hobbyists. It is a joint effort by BeagleBoard.org and Seeed Studio. It is based on the classical open-source hardware design of BeagleBone® Black and developed into this differentiated version. The Seeed Studio BeagleBone® Green Gateway includes two Grove connectors, making it easier to connect to the large family of Grove sensors. The on-board HDMI and Ethernet are removed to make room for these wireless features and Grove connectors. diff --git a/_blinka/beaglebone_green_wireless.md b/_blinka/beaglebone_green_wireless.md index c3d7b5e600..295381c37c 100644 --- a/_blinka/beaglebone_green_wireless.md +++ b/_blinka/beaglebone_green_wireless.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "beaglebone_green_wireless" -title: "BeagleBone Green Wireless Download" -name: "BeagleBone Green Wireless" -manufacturer: "SeeedStudio" +blinka: true +board_id: beaglebone_green_wireless +board_image: beaglebone_green_wireless.jpg board_url: - - "https://beagleboard.org/green-wireless" -board_image: "beaglebone_green_wireless.jpg" +- https://beagleboard.org/green-wireless +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: SeeedStudio +name: BeagleBone Green Wireless +title: BeagleBone Green Wireless Download --- SeeedStudio BeagleBone Green Wireless (BBGW) is a joint effort by BeagleBoard.org and Seeed Studio. It is based on the open-source hardware design of BeagleBone Black and developed into this differentiated version. SeeedStudio BeagleBone Green Wireless has included a high-performance flexible WiFi/Bluetooth interface and two Grove connectors, making it easier to connect to the large family of Grove sensors. The on-board HDMI and Ethernet are removed to make room for these wireless features and Grove connectors. diff --git a/_blinka/beaglev_starlight.md b/_blinka/beaglev_starlight.md index 6bd0ce58c1..d315fd9d07 100644 --- a/_blinka/beaglev_starlight.md +++ b/_blinka/beaglev_starlight.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "beaglev_starlight" -title: "BeagleV Starlight Beta Prototype Download" -name: "BeagleV Starlight Beta Prototype" -manufacturer: "BeagleV" +blinka: true +board_id: beaglev_starlight +board_image: beaglev_starlight.jpg board_url: - - "https://github.com/beagleboard/beaglev-starlight#readme" -board_image: "beaglev_starlight.jpg" +- https://github.com/beagleboard/beaglev-starlight#readme +date_added: 2021-07-17 12:00:00 downloads_display: true -blinka: true -date_added: 2021-7-17 features: - - Ethernet - - HDMI/DisplayPort - - USB 3.0 - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +- 40-pin GPIO +layout: download +manufacturer: BeagleV +name: BeagleV Starlight Beta Prototype +title: BeagleV Starlight Beta Prototype Download --- **The BeagleV™ - Starlight project has concluded and no units beyond the beta prototypes will be produced. This design was never sold as a product.** diff --git a/_blinka/binho_nova.md b/_blinka/binho_nova.md index 1a1eec0c3e..79fb9b7672 100644 --- a/_blinka/binho_nova.md +++ b/_blinka/binho_nova.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "binho_nova" -title: "Nova" -name: "Nova" -manufacturer: "Binho" +blinka: true +board_id: binho_nova +board_image: binho_nova.jpg board_url: - - "https://binho.io/" -board_image: "binho_nova.jpg" +- https://binho.io/ +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 -features: +features: null +layout: download +manufacturer: Binho +name: Nova +title: Nova --- The Binho Nova brings Multi-Protocol USB Host Adapters into the 21st Century. No more fumbling through development with cumbersome, clunky, out-dated adapters. Let your productivity soar to new heights! diff --git a/_blinka/clara_agx_xavier.md b/_blinka/clara_agx_xavier.md index 714e5b6bb1..87ce9c7da3 100644 --- a/_blinka/clara_agx_xavier.md +++ b/_blinka/clara_agx_xavier.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "clara_agx_xavier" -title: "Clara AGX Xavier Download" -name: "Clara AGX Xavier" -manufacturer: "NVIDIA" +blinka: true +board_id: clara_agx_xavier +board_image: clara_agx_xavier.jpg board_url: - - "https://developer.nvidia.com/clara-agx-devkit" -board_image: "clara_agx_xavier.jpg" +- https://developer.nvidia.com/clara-agx-devkit +date_added: 2020-10-06 12:00:00 downloads_display: true -blinka: true -date_added: 2020-10-6 -features: - +features: null +layout: download +manufacturer: NVIDIA +name: Clara AGX Xavier +title: Clara AGX Xavier Download --- The NVIDIA Clara AGX™ developer kit delivers real-time AI and imaging for medical devices. By combining low-powered, NVIDIA Xavier SOC (system on a chip) and RTX GPUs with the NVIDIA Clara AGX SDK and the NVIDIA EGX stack, it’s easy to securely provision and remotely manage fleets of distributed medical instruments. diff --git a/_blinka/clockworkpi.md b/_blinka/clockworkpi.md index ee168d0e82..a4eb163586 100644 --- a/_blinka/clockworkpi.md +++ b/_blinka/clockworkpi.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "clockworkpi" -title: "ClockworkPi Download" -name: "ClockworkPi" -manufacturer: "Clockwork Tech LLC" +blinka: true +board_id: clockworkpi +board_image: clockworkpi.jpg board_url: - - "https://www.clockworkpi.com/product-page/cpi-v3-1" -board_image: "clockworkpi.jpg" -download_instructions: "" +- https://www.clockworkpi.com/product-page/cpi-v3-1 +date_added: 2020-04-16 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-4-16 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +layout: download +manufacturer: Clockwork Tech LLC +name: ClockworkPi +title: ClockworkPi Download --- New clockworkPi v3.1 development board: diff --git a/_blinka/diodes_delight_piunora.md b/_blinka/diodes_delight_piunora.md index 906abf9298..df3792905a 100644 --- a/_blinka/diodes_delight_piunora.md +++ b/_blinka/diodes_delight_piunora.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "diodes_delight_piunora" -title: "Piunora Download" -name: "Piunora" -manufacturer: "Diodes Delight" +blinka: true +board_id: diodes_delight_piunora +board_image: diodes_delight_piunora.jpg board_url: - - "https://www.crowdsupply.com/diodes-delight/piunora" -board_image: "diodes_delight_piunora.jpg" -download_instructions: +- https://www.crowdsupply.com/diodes-delight/piunora +date_added: 2021-12-06 12:00:00 +download_instructions: null downloads_display: true -blinka: true -date_added: 2021-12-6 features: - - HDMI/DisplayPort - - Wi-Fi - - Bluetooth/BLE - - STEMMA QT/QWIIC +- HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +- STEMMA QT/QWIIC +layout: download +manufacturer: Diodes Delight +name: Piunora +title: Piunora Download --- Piunora is a compact, easy-to-use development board for electronics prototyping with Linux. It has a familiar form factor, legible pin labels, and a design that’s well suited to space-constrained applications. diff --git a/_blinka/dragonboard_410c.md b/_blinka/dragonboard_410c.md index f2edccccf0..ed51ab2a41 100644 --- a/_blinka/dragonboard_410c.md +++ b/_blinka/dragonboard_410c.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "dragonboard_410c" -title: "Dragonboard 410c Download" -name: "Dragonboard 410c" -manufacturer: "Arrow Electronics" +blinka: true +board_id: dragonboard_410c +board_image: dragonboard_410c.jpg board_url: - - "https://www.96boards.org/product/dragonboard410c/" -board_image: "dragonboard_410c.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-linux-and-the-96boards-dragonboard-410c" +- https://www.96boards.org/product/dragonboard410c/ +date_added: 2019-06-29 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-linux-and-the-96boards-dragonboard-410c downloads_display: true -blinka: true -date_added: 2019-6-29 features: - - Wi-Fi - - HDMI/DisplayPort - - 40-pin GPIO - - GPS +- Wi-Fi +- HDMI/DisplayPort +- 40-pin GPIO +- GPS +layout: download +manufacturer: Arrow Electronics +name: Dragonboard 410c +title: Dragonboard 410c Download --- The DragonBoard 410c, a product of Arrow Electronics, is the development board based on the mid-tier Qualcomm® APQ8016E processor. It features advanced processing power, Wi-Fi, Bluetooth connectivity, and GPS, all packed into a board the size of a credit card. diff --git a/_blinka/ft232h.md b/_blinka/ft232h.md index 3d82e6df99..2b224dc5cf 100644 --- a/_blinka/ft232h.md +++ b/_blinka/ft232h.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "ft232h" -title: "FT232H Download" -name: "FT232H" -manufacturer: "Adafruit" +blinka: true +board_id: ft232h +board_image: ft232h.jpg board_url: - - "https://www.adafruit.com/product/2264" -board_image: "ft232h.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-any-computer-with-ft232h" +- https://www.adafruit.com/product/2264 +date_added: 2019-09-30 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-any-computer-with-ft232h downloads_display: true -date_added: 2019-9-30 -blinka: true -features: +features: null +layout: download +manufacturer: Adafruit +name: FT232H +title: FT232H Download --- Wouldn't it be cool to drive a tiny OLED display, read a color sensor, or even just flash some LEDs directly from your computer? Sure you can program an Arduino or Trinket to talk to these devices and your computer, but why can't your computer just talk to those devices and sensors itself? Well, now your computer can talk to devices using the Adafruit FT232H breakout board! diff --git a/_blinka/giant_board.md b/_blinka/giant_board.md index 19adedb307..130c45e89b 100644 --- a/_blinka/giant_board.md +++ b/_blinka/giant_board.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "giant_board" -title: "Giant Board" -name: "Giant Board" -manufacturer: "Groboards" +blinka: true +board_id: giant_board +board_image: giant_board.jpg board_url: - - "https://www.crowdsupply.com/groboards/giant-board" -board_image: "giant_board.jpg" +- https://www.crowdsupply.com/groboards/giant-board +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Feather-Compatible +- Feather-Compatible +layout: download +manufacturer: Groboards +name: Giant Board +title: Giant Board --- The Giant Board is a super tiny single-board computer (SBC) based on the Adafruit Feather form factor. We always want more power in a smaller package, and the Giant Board delivers! It provides a small, powerful platform that is compatible with a wide range of pre-existing accessories. FeatherWing support makes the Giant Board a flexible, drop-in component for most Feather based projects. diff --git a/_blinka/google_coral.md b/_blinka/google_coral.md index 0f08de2739..3f7d042f3e 100644 --- a/_blinka/google_coral.md +++ b/_blinka/google_coral.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "google_coral" -title: "Google Coral Dev Board" -name: "Google Coral Dev Board" -manufacturer: "Google" +blinka: true +board_id: google_coral +board_image: google_coral.jpg board_url: - - "https://coral.withgoogle.com/products/dev-board" -board_image: "google_coral.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka" +- https://coral.withgoogle.com/products/dev-board +date_added: 2019-05-13 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka downloads_display: true -blinka: true -date_added: 2019-5-13 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Google +name: Google Coral Dev Board +title: Google Coral Dev Board --- A development board to quickly prototype on-device ML products. Scale from prototype to production with a removable system-on-module (SOM). diff --git a/_blinka/google_coral_mini.md b/_blinka/google_coral_mini.md index 5d6e3b9f05..e354d7d252 100644 --- a/_blinka/google_coral_mini.md +++ b/_blinka/google_coral_mini.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "google_coral_mini" -title: "Google Coral Dev Board Mini" -name: "Google Coral Dev Board Mini" -manufacturer: "Google" +blinka: true +board_id: google_coral_mini +board_image: google_coral_mini.jpg board_url: - - "https://coral.ai/products/dev-board-mini/" -board_image: "google_coral_mini.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka" +- https://coral.ai/products/dev-board-mini/ +date_added: 2020-12-07 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka downloads_display: true -blinka: true -date_added: 2020-12-7 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Google +name: Google Coral Dev Board Mini +title: Google Coral Dev Board Mini --- The Coral Dev Board Mini is a single-board computer that provides fast machine learning (ML) inferencing in a small form factor. It's primarily designed as an evaluation device for the Accelerator Module (a surface-mounted module that provides the Edge TPU), but it's also a fully-functional embedded system you can use for various on-device ML projects. diff --git a/_blinka/greatfet_one.md b/_blinka/greatfet_one.md index 27cb513168..657c838b97 100644 --- a/_blinka/greatfet_one.md +++ b/_blinka/greatfet_one.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "greatfet_one" -title: "GreatFET One Download" -name: "GreatFET One" -manufacturer: "Great Scott Gadgets" +blinka: true +board_id: greatfet_one +board_image: greatfet_one.jpg board_url: - - "https://www.adafruit.com/product/4234" -board_image: "greatfet_one.jpg" +- https://www.adafruit.com/product/4234 +date_added: 2020-05-15 12:00:00 downloads_display: true -blinka: true -date_added: 2020-5-15 features: - - 40-pin GPIO +- 40-pin GPIO +layout: download +manufacturer: Great Scott Gadgets +name: GreatFET One +title: GreatFET One Download --- **GreatFET One** from [Great Scott Gadgets](https://greatscottgadgets.com/) is a hardware hacker’s best friend. At the center is a powerful NXP LPC4330 (Cortex M4 @ 204MHz) with two USB ports, one host and one peripheral, so it can act as a 'man in the middle' for USB interfacing. With an extensible, open source design, two USB ports, and 100 expansion pins, GreatFET One is your essential gadget for hacking, making, and reverse engineering. By adding expansion boards called neighbors, you can turn GreatFET One into a USB peripheral that does almost anything. diff --git a/_blinka/hifive_unleashed.md b/_blinka/hifive_unleashed.md index 8733d8f76b..126f670e5a 100644 --- a/_blinka/hifive_unleashed.md +++ b/_blinka/hifive_unleashed.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "hifive_unleashed" -title: "Hifive Unleashed" -name: "Hifive Unleashed" -manufacturer: "Sifive" +blinka: true +board_id: hifive_unleashed +board_image: hifive_unleashed.jpg board_url: - - "https://www.crowdsupply.com/sifive/hifive-unleashed" -board_image: "hifive_unleashed.jpg" +- https://www.crowdsupply.com/sifive/hifive-unleashed +date_added: 2020-03-25 12:00:00 downloads_display: true -blinka: true -date_added: 2020-3-25 features: - - Ethernet +- Ethernet +layout: download +manufacturer: Sifive +name: Hifive Unleashed +title: Hifive Unleashed --- We founded SiFive to bring the power of open source to the semiconductor industry. We do this not only by supporting the RISC-V specification, but also by implementing the specification and getting usable chips into the hands of developers as quickly as we can. We did exactly that just over a year ago when we introduced the open source, Arduino-compatible HiFive1 dev board based on our Freedom Everywhere line of 32-bit microcontrollers. Today, we’re proud to be doing the same thing with our Freedom Unleashed 64-bit, Linux-capable system-on-chip (SoC) platform. Meet the HiFive Unleashed, the world’s first RISC-V-based, Linux-capable development board. diff --git a/_blinka/jetson_agx_orin.md b/_blinka/jetson_agx_orin.md index 1afaea487a..069f9838c1 100644 --- a/_blinka/jetson_agx_orin.md +++ b/_blinka/jetson_agx_orin.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "jetson_agx_orin" -title: "Jetson AGX Orin" -name: "Jetson AGX Orin" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_agx_orin +board_image: jetson_agx_orin.jpg board_url: - - "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/" -board_image: "jetson_agx_orin.jpg" +- https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/ +date_added: 2022-07-27 12:00:00 downloads_display: true -blinka: true -date_added: 2022-7-27 features: - - Ethernet - - 40-pin GPIO - - HDMI/DisplayPort - +- Ethernet +- 40-pin GPIO +- HDMI/DisplayPort +layout: download +manufacturer: NVIDIA +name: Jetson AGX Orin +title: Jetson AGX Orin --- Bring your next-gen products to life with the world’s most powerful AI computer for energy-efficient autonomous machines. With up to 275 TOPS and 8X the performance of the last generation for multiple concurrent AI inference pipelines, plus high-speed interface support for multiple sensors, NVIDIA Jetson Orin™ modules provide the ideal solution for a new age of robotics. diff --git a/_blinka/jetson_nano.md b/_blinka/jetson_nano.md index 1de2d4eda6..540fd7cb76 100644 --- a/_blinka/jetson_nano.md +++ b/_blinka/jetson_nano.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "jetson_nano" -title: "Jetson Nano Dev Kit" -name: "Jetson Nano Dev Kit" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_nano +board_image: jetson_nano.jpg board_url: - - "https://developer.nvidia.com/embedded/jetson-nano-developer-kit" -board_image: "jetson_nano.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-linux-and-the-nvidia-jetson-nano" +- https://developer.nvidia.com/embedded/jetson-nano-developer-kit +date_added: 2019-09-10 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-linux-and-the-nvidia-jetson-nano downloads_display: true -blinka: true -date_added: 2019-9-10 features: - - Ethernet - - HDMI/DisplayPort - - USB 3.0 - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +- 40-pin GPIO +layout: download +manufacturer: NVIDIA +name: Jetson Nano Dev Kit +title: Jetson Nano Dev Kit --- The NVIDIA® Jetson Nano™ Developer Kit delivers the compute performance to run modern AI workloads at unprecedented size, power, and cost. Developers, learners, and makers can now run AI frameworks and models for applications like image classification, object detection, segmentation, and speech processing. diff --git a/_blinka/jetson_orin_nano.md b/_blinka/jetson_orin_nano.md index 25b2f95bbc..6b7c27fdcf 100644 --- a/_blinka/jetson_orin_nano.md +++ b/_blinka/jetson_orin_nano.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "jetson_orin_nano" -title: "Jetson Orin Nano Dev Kit Download" -name: "Jetson Orin Nano Dev Kit" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_orin_nano +board_image: jetson_orin_nano.jpg board_url: - - "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/" -board_image: "jetson_orin_nano.jpg" -download_instructions: "" +- https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-8 features: - - Ethernet - - 40-pin GPIO - - HDMI/DisplayPort +- Ethernet +- 40-pin GPIO +- HDMI/DisplayPort +layout: download +manufacturer: NVIDIA +name: Jetson Orin Nano Dev Kit +title: Jetson Orin Nano Dev Kit Download --- NVIDIA Jetson Orin™ Nano Developer Kit is a compact edge AI board built with Jetson Orin™ Nano 8GB module which delivers up to 40TOPS AI performance and has a rich set of IOs including USB 3.2 Gen 2 ports, 2x M.2 Key M for SSD, pre-installed Wi-Fi module, and more. @@ -31,4 +31,4 @@ The developer kit comprises a Jetson Orin™ Nano 8GB module and a reference car ## Purchase * [Amazon](https://amzn.to/42Ay4Xf) * [Arrow](https://www.arrow.com/en/products/945-13766-0000-000/nvidia) -* [Seeed Studio](https://www.seeedstudio.com/NVIDIAr-Jetson-Orintm-Nano-Developer-Kit-p-5617.html) \ No newline at end of file +* [Seeed Studio](https://www.seeedstudio.com/NVIDIAr-Jetson-Orintm-Nano-Developer-Kit-p-5617.html) diff --git a/_blinka/jetson_orin_nx.md b/_blinka/jetson_orin_nx.md index ad7be3b836..ef9d56f089 100644 --- a/_blinka/jetson_orin_nx.md +++ b/_blinka/jetson_orin_nx.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "jetson_orin_nx" -title: "Jetson Orin NX AI Dev Kit Download" -name: "Jetson Orin NX AI Dev Kit" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_orin_nx +board_image: jetson_orin_nx.jpg board_url: - - "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/" -board_image: "jetson_orin_nx.jpg" -download_instructions: "" +- https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-8 features: - - Ethernet - - 40-pin GPIO - - HDMI/DisplayPort +- Ethernet +- 40-pin GPIO +- HDMI/DisplayPort +layout: download +manufacturer: NVIDIA +name: Jetson Orin NX AI Dev Kit +title: Jetson Orin NX AI Dev Kit Download --- Based on [Jetson Orin NX Module](https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/), with [JETSON-IO-BASE-B](https://www.waveshare.com/jetson-xavier-nx-dev-kit.htm?sku=22452) base board, providing rich peripheral interfaces such as M.2, HDMI, USB, etc., which is more convenient for users to realize the product performance. diff --git a/_blinka/jetson_tx1.md b/_blinka/jetson_tx1.md index e329ec2d83..59614fe6e2 100644 --- a/_blinka/jetson_tx1.md +++ b/_blinka/jetson_tx1.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "jetson_tx1" -title: "Jetson TX1" -name: "Jetson TX1" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_tx1 +board_image: jetson_tx1.jpg board_url: - - "https://developer.nvidia.com/embedded/jetson-tx1" -board_image: "jetson_tx1.jpg" +- https://developer.nvidia.com/embedded/jetson-tx1 +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - HDMI/DisplayPort - - USB 3.0 - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +- 40-pin GPIO +layout: download +manufacturer: NVIDIA +name: Jetson TX1 +title: Jetson TX1 --- The world's first supercomputer on a module, Jetson TX1 is capable of delivering the performance and power efficiency needed for the latest visual computing applications. It's built around the revolutionary NVIDIA Maxwell™ architecture with 256 CUDA cores delivering over 1 TeraFLOPs of performance. 64-bit CPUs, 4K video encode and decode capabilities, and a camera interface capable of 1400 MPix/s make this the best system for embedded deep learning, computer vision, graphics, and GPU computing. diff --git a/_blinka/jetson_tx2.md b/_blinka/jetson_tx2.md index 713e970293..415935bd7a 100644 --- a/_blinka/jetson_tx2.md +++ b/_blinka/jetson_tx2.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "jetson_tx2" -title: "Jetson TX2 Dev Kit" -name: "Jetson TX2 Dev Kit" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_tx2 +board_image: jetson_tx2.jpg board_url: - - "https://developer.nvidia.com/embedded/jetson-tx2-developer-kit" -board_image: "jetson_tx2.jpg" +- https://developer.nvidia.com/embedded/jetson-tx2-developer-kit +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - HDMI/DisplayPort - - USB 3.0 - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +- 40-pin GPIO +layout: download +manufacturer: NVIDIA +name: Jetson TX2 Dev Kit +title: Jetson TX2 Dev Kit --- The Jetson TX2 Developer Kit gives you a fast, easy way to develop hardware and software for the Jetson TX2 AI supercomputer on a module. It exposes the hardware capabilities and interfaces of the developer board, comes with design guides and other documentation, and is pre-flashed with a Linux development environment. diff --git a/_blinka/jetson_tx2_nx.md b/_blinka/jetson_tx2_nx.md index 7d84a2e966..f2a8e8addf 100644 --- a/_blinka/jetson_tx2_nx.md +++ b/_blinka/jetson_tx2_nx.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "jetson_tx2_nx" -title: "Jetson TX2 Dev Kit" -name: "Jetson TX2 Dev Kit" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_tx2_nx +board_image: jetson_tx2_nx.jpg board_url: - - "https://developer.nvidia.com/embedded/jetson-tx2-nx" -board_image: "jetson_tx2_nx.jpg" +- https://developer.nvidia.com/embedded/jetson-tx2-nx +date_added: 2021-02-25 12:00:00 downloads_display: true -blinka: true -date_added: 2021-2-25 -features: - +features: null +layout: download +manufacturer: NVIDIA +name: Jetson TX2 Dev Kit +title: Jetson TX2 Dev Kit --- NVIDIA® Jetson™ TX2 NX delivers the next step in AI performance for entry-level embedded and edge products. It provides up to 2.5X the performance of Jetson Nano, and shares form-factor and pin compatibility with Jetson Nano and Jetson Xavier™ NX. diff --git a/_blinka/jetson_xavier.md b/_blinka/jetson_xavier.md index 9e002188c8..569602e876 100644 --- a/_blinka/jetson_xavier.md +++ b/_blinka/jetson_xavier.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "jetson_xavier" -title: "Jetson AGX Xavier Dev Kit" -name: "Jetson AGX Xavier Dev Kit" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_xavier +board_image: jetson_xavier.jpg board_url: - - "https://developer.nvidia.com/embedded/jetson-agx-xavier-developer-kit" -board_image: "jetson_xavier.jpg" +- https://developer.nvidia.com/embedded/jetson-agx-xavier-developer-kit +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - HDMI/DisplayPort - - USB 3.0 - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +- 40-pin GPIO +layout: download +manufacturer: NVIDIA +name: Jetson AGX Xavier Dev Kit +title: Jetson AGX Xavier Dev Kit --- With the NVIDIA Jetson AGX Xavier developer kit, you can easily create and deploy end-to-end AI robotics applications for manufacturing, delivery, retail, agriculture, and more. diff --git a/_blinka/jetson_xavier_nx.md b/_blinka/jetson_xavier_nx.md index 20593cc388..e6e3144083 100644 --- a/_blinka/jetson_xavier_nx.md +++ b/_blinka/jetson_xavier_nx.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "jetson_xavier_nx" -title: "Jetson Xavier NX" -name: "Jetson Xavier NX" -manufacturer: "NVIDIA" +blinka: true +board_id: jetson_xavier_nx +board_image: jetson_xavier_nx.jpg board_url: - - "https://developer.nvidia.com/embedded/jetson-xavier-nx" -board_image: "jetson_xavier_nx.jpg" +- https://developer.nvidia.com/embedded/jetson-xavier-nx +date_added: 2020-03-25 12:00:00 downloads_display: true -blinka: true -date_added: 2020-3-25 -features: - +features: null +layout: download +manufacturer: NVIDIA +name: Jetson Xavier NX +title: Jetson Xavier NX --- Jetson Xavier NX delivers up to 21 TOPS for running modern AI workloads, consumes as little as 10 watts of power, and has a compact form factor smaller than a credit card. It can run modern neural networks in parallel and process data from multiple high-resolution sensors, opening the door for embedded and edge computing devices that demand increased performance but are constrained by size, weight, and power budgets. diff --git a/_blinka/khadas_vim3.md b/_blinka/khadas_vim3.md index 7205b9fd41..3746a1bdc1 100644 --- a/_blinka/khadas_vim3.md +++ b/_blinka/khadas_vim3.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "khadas_vim3" -title: "Khadas VIM3 Download" -name: "Khadas VIM3" -manufacturer: "Khadas" +blinka: true +board_id: khadas_vim3 +board_image: khadas_vim3.jpg board_url: - - "https://www.khadas.com/vim3" -board_image: "khadas_vim3.jpg" +- https://www.khadas.com/vim3 +date_added: 2022-04-01 12:00:00 downloads_display: true -blinka: true -date_added: 2022-4-1 features: - - Ethernet - - HDMI/DisplayPort - - Wi-Fi - - 40-pin GPIO - - USB 3.0 - - Bluetooth/BLE - - Infrared Receiver +- Ethernet +- HDMI/DisplayPort +- Wi-Fi +- 40-pin GPIO +- USB 3.0 +- Bluetooth/BLE +- Infrared Receiver +layout: download +manufacturer: Khadas +name: Khadas VIM3 +title: Khadas VIM3 Download --- - High Performance: Amlogic A311D - x4 2.2Ghz Cortex A73, x2 1.8Ghz Cortex A53 12nm SoC fabrication process for low heat 2T2R AC Wi-Fi with RSDB Features Bluetooth 5.0 USB 3.0 Available Gigabit Ethernet with WOL support LPDDR4/X USB-C PD for heavy applications diff --git a/_blinka/lemaker_banana_pro.md b/_blinka/lemaker_banana_pro.md index c88a02e69b..8b2084abf2 100644 --- a/_blinka/lemaker_banana_pro.md +++ b/_blinka/lemaker_banana_pro.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lemaker_banana_pro" -title: "Banana Pro Download" -name: "Banana Pro" -manufacturer: "LeMaker" +blinka: true +board_id: lemaker_banana_pro +board_image: lemaker_banana_pro.jpg board_url: - - "https://en.wikipedia.org/wiki/Banana_Pi#Banana_Pi_Pro" -board_image: "lemaker_banana_pro.jpg" -download_instructions: "" +- https://en.wikipedia.org/wiki/Banana_Pi#Banana_Pi_Pro +date_added: 2023-09-06 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-9-6 features: - - HDMI/DisplayPort - - 40-pin GPIO - - Wi-Fi - - Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- Wi-Fi +- Ethernet +layout: download +manufacturer: LeMaker +name: Banana Pro +title: Banana Pro Download --- LeMaker Banana Pro is an updated version of its predecessor Banana Pi, a low-cost single-board computer. diff --git a/_blinka/libre_aml-s905x-cc.md b/_blinka/libre_aml-s905x-cc.md index 128bffd261..8e25becd2c 100644 --- a/_blinka/libre_aml-s905x-cc.md +++ b/_blinka/libre_aml-s905x-cc.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "libre_aml-s905x-cc" -title: "AML-S905X-CC (Le Potato) Download" -name: "AML-S905X-CC (Le Potato)" -manufacturer: "Libre Computer" +blinka: true +board_id: libre_aml-s905x-cc +board_image: libre_aml-s905x-cc.jpg board_url: - - "https://libre.computer/products/s905x/" -board_image: "libre_aml-s905x-cc.jpg" -download_instructions: "" +- https://libre.computer/products/s905x/ +date_added: 2022-10-17 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2022-10-17 features: - - HDMI/DisplayPort - - 40-pin GPIO - - Ethernet - - Infrared Receiver +- HDMI/DisplayPort +- 40-pin GPIO +- Ethernet +- Infrared Receiver +layout: download +manufacturer: Libre Computer +name: AML-S905X-CC (Le Potato) +title: AML-S905X-CC (Le Potato) Download --- Le Potato is our flagship hardware platform with support for the latest Android 9/TV, upstream Linux, u-boot, Kodi, and more. Based on a long term supported SoC family with a proven record of mass deployments by the largest regional content providers, Google, and Amazon, AML-S905X-CC is the perfect development platform for projects that require highly performant ARM Cortex-A class CPUs, secure and non-secure 4K media delivery and playback, Widevine CAS DRM, high reliability, and low power. diff --git a/_blinka/libre_roc-rk3328-cc.md b/_blinka/libre_roc-rk3328-cc.md index ba3cf3826c..c97c8f628c 100644 --- a/_blinka/libre_roc-rk3328-cc.md +++ b/_blinka/libre_roc-rk3328-cc.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "libre_roc-rk3328-cc" -title: "ROC-RK3328-CC (Renegade) Download" -name: "ROC-RK3328-CC (Renegade)" -manufacturer: "Libre Computer" +blinka: true +board_id: libre_roc-rk3328-cc +board_image: libre_roc-rk3328-cc.jpg board_url: - - "https://libre.computer/products/roc-rk3328-cc/" -board_image: "libre_roc-rk3328-cc.jpg" -download_instructions: "" +- https://libre.computer/products/roc-rk3328-cc/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-8 features: - - HDMI/DisplayPort - - 40-pin GPIO - - Ethernet - - Infrared Receiver +- HDMI/DisplayPort +- 40-pin GPIO +- Ethernet +- Infrared Receiver +layout: download +manufacturer: Libre Computer +name: ROC-RK3328-CC (Renegade) +title: ROC-RK3328-CC (Renegade) Download --- The ROC-RK3328-CC platform is built on the Rockchip RK3328 system-on-chip optimized for low cost, low power, and high performance IO. It features a high performance native USB 3.0 interface and Gigabit MAC. Libre Computer is one of the few Linux-based software and hardware solutions provider for this chip. diff --git a/_blinka/lichee_pi_4a.md b/_blinka/lichee_pi_4a.md index c96f24352c..bf0be393d9 100644 --- a/_blinka/lichee_pi_4a.md +++ b/_blinka/lichee_pi_4a.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "lichee_pi_4a" -title: "LicheePi 4A Download" -name: "LicheePi 4A" -manufacturer: "Sipeed" +blinka: true +board_id: lichee_pi_4a +board_image: lichee_pi_4a.jpg board_url: - - "https://sipeed.com/licheepi4a" -board_image: "lichee_pi_4a.jpg" -download_instructions: "" +- https://sipeed.com/licheepi4a +date_added: 2024-01-23 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2024-01-23 features: - - Ethernet - - HDMI/DisplayPort - - Wi-Fi - - Bluetooth/BLE - - USB 3.0 +- Ethernet +- HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +- USB 3.0 +layout: download +manufacturer: Sipeed +name: LicheePi 4A +title: LicheePi 4A Download --- Lichee Pi 4A is a high performance RISC-V linux development board using Lichee Module 4A, based on the TH1520 SoC. It contains 4TOPS@int8 AI NPU, supports 16GB LPDDR4X memory and 128G eMMC storage, supports dual 4K resolution screen display, supports 4K mipi camera input, dual POE Gigabit Ethernet ports and multiple USB interfaces. There is an extra RISC-V C906 Core for audio decode. diff --git a/_blinka/lichee_rv_dock_d1.md b/_blinka/lichee_rv_dock_d1.md index 7d715bef48..3f2616dd25 100644 --- a/_blinka/lichee_rv_dock_d1.md +++ b/_blinka/lichee_rv_dock_d1.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "lichee_rv_dock_d1" -title: "Lichee RV Dock D1 Download" -name: "Lichee RV Dock D1" -manufacturer: "Sipeed" +blinka: true +board_id: lichee_rv_dock_d1 +board_image: lichee_rv_dock_d1.jpg board_url: - - "https://www.seeedstudio.com/Lichee-RV-Dock-Allwinner-D1-SoC-RISC-V-Linux-dev-kit-High-Integration-Open-Source-p-5380.html" -board_image: "lichee_rv_dock_d1.jpg" -download_instructions: "" +- https://www.seeedstudio.com/Lichee-RV-Dock-Allwinner-D1-SoC-RISC-V-Linux-dev-kit-High-Integration-Open-Source-p-5380.html +date_added: 2022-10-06 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2022-10-6 features: - - HDMI/DisplayPort - - Wi-Fi - - Bluetooth/BLE +- HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +layout: download +manufacturer: Sipeed +name: Lichee RV Dock D1 +title: Lichee RV Dock D1 Download --- Lichee RV Dock is a RISC-V Linux development kit. It expands the module’s usable interfaces by providing an HDMI port with support for up to 4K@30fps output, a 40-pin header with GPIO and power switches, among other things, plus headers and connectors that you can use for speakers, microphones, and more. It supports RGB and MIPI screen interfaces with its screen convert board. There is an onboard 2.4G WIFI+BT module, a 2.4G Patch antenna, an IPEX connector, and a USB Type-A host. The highest network speed is up to 30Mbps (with RTL8723DS), and the average network bandwidth is about 20Mbps. diff --git a/_blinka/lubancat-4.md b/_blinka/lubancat-4.md index 8a3ca5797f..9514393a53 100644 --- a/_blinka/lubancat-4.md +++ b/_blinka/lubancat-4.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat-4" -title: "LubanCat-4 Download" -name: "LubanCat-4" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat-4.jpg" -download_instructions: "" blinka: true -date_added: 2023-10-27 +board_id: lubancat-4 +board_image: lubancat-4.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-10-27 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat-4 +title: LubanCat-4 Download --- LubanCat-4 is equipped with a quad-core A76+quad-core A55 eight-core CPU and a powerful Arm high-performance GPU, and has a built-in NPU with 6T computing power. Equipped with a Gigabit network port, mini-HDMI, USB3.0, MINI PCI-E interface, MIPI and other peripherals. While introducing high-usage interfaces, some low-usage interfaces and peripherals are deleted, significantly reducing the board area, and the reserved universal interfaces such as USB and MINI PCI-E are further expanded. In the usage scenarios of the board, the small body can still burst out great performance. @@ -45,4 +45,4 @@ The LubanCat-4 board provides a complete SDK driver development package, design - Support TF card to start the system, up to 512GB - Support infrared remote control - Support RTC function -- Supports installation of fans for cooling \ No newline at end of file +- Supports installation of fans for cooling diff --git a/_blinka/lubancat1.md b/_blinka/lubancat1.md index 55b92f74e4..ae9fadbc76 100644 --- a/_blinka/lubancat1.md +++ b/_blinka/lubancat1.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat1" -title: "LubanCat1 Download" -name: "LubanCat1" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat1.jpg" -download_instructions: "" blinka: true -date_added: 2023-5-8 +board_id: lubancat1 +board_image: lubancat1.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat1 +title: LubanCat1 Download --- **Specifications** diff --git a/_blinka/lubancat1n.md b/_blinka/lubancat1n.md index 65e4b22ccd..af652643ff 100644 --- a/_blinka/lubancat1n.md +++ b/_blinka/lubancat1n.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat1n" -title: "LubanCat1N Download" -name: "LubanCat1N" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat1n.jpg" -download_instructions: "" blinka: true -date_added: 2023-5-8 +board_id: lubancat1n +board_image: lubancat1n.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat1N +title: LubanCat1N Download --- **Specifications** diff --git a/_blinka/lubancat2.md b/_blinka/lubancat2.md index 1c2477311b..0f99611e6a 100644 --- a/_blinka/lubancat2.md +++ b/_blinka/lubancat2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat2" -title: "LubanCat2 Download" -name: "LubanCat2" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat2.jpg" -download_instructions: "" blinka: true -date_added: 2023-5-8 +board_id: lubancat2 +board_image: lubancat2.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat2 +title: LubanCat2 Download --- **Specifications** @@ -39,4 +39,4 @@ features: - Power button; MaskRom button; Recovery button - Support infrared remote control function - Support RTC function -- Support fan cooling \ No newline at end of file +- Support fan cooling diff --git a/_blinka/lubancat2n.md b/_blinka/lubancat2n.md index 819b285510..2f021ba387 100644 --- a/_blinka/lubancat2n.md +++ b/_blinka/lubancat2n.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat2n" -title: "LubanCat2N Download" -name: "LubanCat2N" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat2n.jpg" -download_instructions: "" blinka: true -date_added: 2023-5-8 +board_id: lubancat2n +board_image: lubancat2n.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat2N +title: LubanCat2N Download --- **Specifications** @@ -42,4 +42,4 @@ features: - Support RTC function - Support fan cooling - Mini-PCIe interface, can be used with full-height or half-height WIFI network card, 4G module -- or other Mini-PCIe interface modules to use \ No newline at end of file +- or other Mini-PCIe interface modules to use diff --git a/_blinka/lubancat_i.mx6ull.md b/_blinka/lubancat_i.mx6ull.md index b71862fe63..3ffe49fe10 100644 --- a/_blinka/lubancat_i.mx6ull.md +++ b/_blinka/lubancat_i.mx6ull.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "lubancat_i.mx6ull" -title: "LubanCat I.MX6ULL Download" -name: "LubanCat I.MX6ULL" -manufacturer: "EmbedFire" -board_url: - - "https://www.seeedstudio.com/NPi-i-MX6ULL-Dev-Board-Industrial-Grade-Linux-SBC-NAND-Version-p-4220.html" -board_image: "lubancat_i.mx6ull.jpg" -download_instructions: "" blinka: true -date_added: 2021-1-15 +board_id: lubancat_i.mx6ull +board_image: lubancat_i.mx6ull.jpg +board_url: +- https://www.seeedstudio.com/NPi-i-MX6ULL-Dev-Board-Industrial-Grade-Linux-SBC-NAND-Version-p-4220.html +date_added: 2021-01-15 12:00:00 +download_instructions: '' features: - - Ethernet - - 40-pin GPIO +- Ethernet +- 40-pin GPIO +layout: download +manufacturer: EmbedFire +name: LubanCat I.MX6ULL +title: LubanCat I.MX6ULL Download --- Meet the new i.MX6ULL ARM Cortex A7 processor from NXP, it is a high performance and power-efficient processor with a frequency up to 800MHz! diff --git a/_blinka/lubancat_zero_n.md b/_blinka/lubancat_zero_n.md index 3046922d0d..f568ccab95 100644 --- a/_blinka/lubancat_zero_n.md +++ b/_blinka/lubancat_zero_n.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat_zero_n" -title: "LubanCat Zero N Download" -name: "LubanCat Zero N" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat_zero_n.jpg" -download_instructions: "" blinka: true -date_added: 2023-5-8 +board_id: lubancat_zero_n +board_image: lubancat_zero_n.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat Zero N +title: LubanCat Zero N Download --- **Specifications** @@ -30,4 +30,4 @@ features: - Default parameter 1500000-8-N-1 - Support Micro SD (TF) card boot system, up to 128GB - Type-C interface*1 (OTG), shared with the power interface; -- Type-C interface*1 (HOST), not for power supply \ No newline at end of file +- Type-C interface*1 (HOST), not for power supply diff --git a/_blinka/lubancat_zero_w.md b/_blinka/lubancat_zero_w.md index c9d82751c1..a8049dc36e 100644 --- a/_blinka/lubancat_zero_w.md +++ b/_blinka/lubancat_zero_w.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lubancat_zero_w" -title: "LubanCat Zero W Download" -name: "LubanCat Zero W" -manufacturer: "EmbedFire" -board_url: - - "https://embedfire.com/products/" -board_image: "lubancat_zero_w.jpg" -download_instructions: "" blinka: true -date_added: 2023-5-8 +board_id: lubancat_zero_w +board_image: lubancat_zero_w.jpg +board_url: +- https://embedfire.com/products/ +date_added: 2023-05-08 12:00:00 +download_instructions: '' features: - - HDMI/DisplayPort - - Ethernet - - USB 3.0 - - 40-pin GPIO - - Infrared Receiver +- HDMI/DisplayPort +- Ethernet +- USB 3.0 +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: EmbedFire +name: LubanCat Zero W +title: LubanCat Zero W Download --- **Specifications** @@ -30,4 +30,4 @@ features: - Default parameter 1500000-8-N-1 - Support Micro SD (TF) card boot system, up to 128GB - Type-C interface*1 (OTG), shared with the power interface; -- Type-C interface*1 (HOST), not for power supply \ No newline at end of file +- Type-C interface*1 (HOST), not for power supply diff --git a/_blinka/mcp2221.md b/_blinka/mcp2221.md index 16a240a40b..bb68530684 100644 --- a/_blinka/mcp2221.md +++ b/_blinka/mcp2221.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "mcp2221" -title: "MCP2221 Download" -name: "MCP2221" -manufacturer: "Adafruit" +blinka: true +board_id: mcp2221 +board_image: mcp2221.jpg board_url: - - "https://www.adafruit.com/product/4471" -board_image: "mcp2221.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-mcp2221" +- https://www.adafruit.com/product/4471 +date_added: 2020-03-25 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-mcp2221 downloads_display: true -blinka: true -date_added: 2020-3-25 -features: +features: null +layout: download +manufacturer: Adafruit +name: MCP2221 +title: MCP2221 Download --- Wouldn't it be cool to drive a [tiny OLED display](https://www.adafruit.com/categories/98), read a [color sensor](https://www.adafruit.com/products/1334), or even just flash some LEDs directly from your computer? Sure you can program an [Arduino](https://www.adafruit.com/products/50) or [Trinket](https://www.adafruit.com/products/2000) to talk to these devices and your computer, but why can't your computer just talk to those devices and sensors itself? Well, now your computer _can_ talk to devices using the Adafruit MCP2221A breakout board! diff --git a/_blinka/milkv_duo.md b/_blinka/milkv_duo.md index f929abfbdb..7aa017c7bb 100644 --- a/_blinka/milkv_duo.md +++ b/_blinka/milkv_duo.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "milkv_duo" -title: "MilkV Duo Download" -name: "MilkV Duo" -manufacturer: "Shenzhen MilkV Technology Co., Ltd" +blinka: true +board_id: milkv_duo +board_image: milkv_duo.jpg board_url: - - "https://milkv.io/docs/duo/overview" -board_image: "milkv_duo.jpg" +- https://milkv.io/docs/duo/overview +date_added: 2024-03-13 12:00:00 downloads_display: true -blinka: true -date_added: 2024-3-13 -features: - +features: null +layout: download +manufacturer: Shenzhen MilkV Technology Co., Ltd +name: MilkV Duo +title: MilkV Duo Download --- Milk-V Duo is an ultra-compact embedded development platform based on the CV1800B chip. It can run Linux and RTOS, providing a reliable, low-cost, and high-performance platform for professionals, industrial ODMs, AIoT enthusiasts, DIY hobbyists, and creators. diff --git a/_blinka/nanopi_duo2.md b/_blinka/nanopi_duo2.md index f5d5b02cab..8549ecd0c4 100644 --- a/_blinka/nanopi_duo2.md +++ b/_blinka/nanopi_duo2.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "nanopi_duo2" -title: "NanoPi Duo2 Download" -name: "NanoPi Duo2" -manufacturer: "FriendlyElec" +blinka: true +board_id: nanopi_duo2 +board_image: nanopi_duo2.jpg board_url: - - "http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo2" -board_image: "nanopi_duo2.jpg" -download_instructions: "" +- http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo2 +date_added: 2021-02-05 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2021-2-5 features: - - Wi-Fi - - Bluetooth/BLE - +- Wi-Fi +- Bluetooth/BLE +layout: download +manufacturer: FriendlyElec +name: NanoPi Duo2 +title: NanoPi Duo2 Download --- The NanoPi Duo2("Duo2") is an ARM board designed and developed by FriendlyELEC for makers and hobbyists. It is only 55 x 25.4mm. It features Allwinner quad-core A7 processor H3, and has 256M/512M DDR3 RAM, onboard WiFi & bluetooth module and an OV5640 camera interface. It works with Linux variants such as Ubuntu Core. diff --git a/_blinka/nanopi_neo_air.md b/_blinka/nanopi_neo_air.md index 9f627f9e39..d12dcc3fdb 100644 --- a/_blinka/nanopi_neo_air.md +++ b/_blinka/nanopi_neo_air.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "nanopi_neo_air" -title: "NanoPi NEO Air Download" -name: "NanoPi NEO Air" -manufacturer: "FriendlyElec" +blinka: true +board_id: nanopi_neo_air +board_image: nanopi_neo_air.jpg board_url: - - "http://nanopi.io/nanopi-neo-air.html" -board_image: "nanopi_neo_air.jpg" -download_instructions: "" +- http://nanopi.io/nanopi-neo-air.html +date_added: 2021-01-20 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2021-1-20 features: - - Wi-Fi - - Bluetooth/BLE - +- Wi-Fi +- Bluetooth/BLE +layout: download +manufacturer: FriendlyElec +name: NanoPi NEO Air +title: NanoPi NEO Air Download --- LTS - long term support, We will not make any changes to this model and will provide support as long as possible diff --git a/_blinka/nanopi_neo_h3.md b/_blinka/nanopi_neo_h3.md index 258367af22..8c07f31b41 100644 --- a/_blinka/nanopi_neo_h3.md +++ b/_blinka/nanopi_neo_h3.md @@ -1,19 +1,18 @@ --- -layout: download -board_id: "nanopi_neo" -title: "NanoPi NEO Download" -name: "NanoPi NEO" -manufacturer: "FriendlyElec" +blinka: true +board_id: nanopi_neo +board_image: nanopi_neo.jpg board_url: - - "http://nanopi.io/nanopi-neo.html" -board_image: "nanopi_neo.jpg" -download_instructions: "" +- http://nanopi.io/nanopi-neo.html +date_added: 2022-01-04 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2022-1-4 features: - - Ethernet - +- Ethernet +layout: download +manufacturer: FriendlyElec +name: NanoPi NEO +title: NanoPi NEO Download --- LTS - long term support, We will not make any changes to this model and will provide support as long as possible diff --git a/_blinka/octavo_osd32mp1_brk.md b/_blinka/octavo_osd32mp1_brk.md index 94ea8ac925..89a05e94a2 100644 --- a/_blinka/octavo_osd32mp1_brk.md +++ b/_blinka/octavo_osd32mp1_brk.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "octavo_osd32mp1_brk" -title: "OSD32MP1-RED Download" -name: "OSD32MP1-RED" -manufacturer: "Octavo Systems" +blinka: true +board_id: octavo_osd32mp1_brk +board_image: octavo_osd32mp1_brk.jpg board_url: - - "https://octavosystems.com/octavo_products/osd32mp1-brk/" -board_image: "octavo_osd32mp1_brk.jpg" -download_instructions: +- https://octavosystems.com/octavo_products/osd32mp1-brk/ +date_added: 2021-12-06 12:00:00 +download_instructions: null downloads_display: true -blinka: true -date_added: 2021-12-6 -features: - +features: null +layout: download +manufacturer: Octavo Systems +name: OSD32MP1-RED +title: OSD32MP1-RED Download --- The OSD32MP1-BRK is a small flexible prototyping platform for the [STM32MP1](https://www.st.com/en/microcontrollers-microprocessors/stm32mp1-series.html) based SiP, the [OSD32MP15x](https://octavosystems.com/octavo_products/osd32mp15x/). At only 3in X 1.8in (75mm X 46mm), it provides easy access to the I/O of the STM32MP1 through a set of breadboard compatible headers. The OSD32MP1-BRK allows developers to quickly build a proof of concept that more closely resembles their actual system without the need to build their own custom hardware. diff --git a/_blinka/octavo_osd32mp1_red.md b/_blinka/octavo_osd32mp1_red.md index 5dc75be834..e9a401eb72 100644 --- a/_blinka/octavo_osd32mp1_red.md +++ b/_blinka/octavo_osd32mp1_red.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "octavo_osd32mp1_red" -title: "OSD32MP1-RED Download" -name: "OSD32MP1-RED" -manufacturer: "Octavo Systems" +blinka: true +board_id: octavo_osd32mp1_red +board_image: octavo_osd32mp1_red.jpg board_url: - - "https://octavosystems.com/octavo_products/osd32mp1-red" -board_image: "octavo_osd32mp1_red.jpg" -download_instructions: +- https://octavosystems.com/octavo_products/osd32mp1-red +date_added: 2021-12-06 12:00:00 +download_instructions: null downloads_display: true -blinka: true -date_added: 2021-12-6 features: - - Wi-Fi - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Octavo Systems +name: OSD32MP1-RED +title: OSD32MP1-RED Download --- The OSD32MP1-RED is a full featured Reference, Evaluation and Development platform for the [STM32MP1](https://www.st.com/en/microcontrollers-microprocessors/stm32mp1-series.html) based SiP, the [OSD32MP15x](https://octavosystems.com/octavo_products/osd32mp15x/). It provides access to a number of standard communication interfaces like WiFi and Bluetooth, 1Gb Ethernet, and CAN. It supports HDMI or DSI displays and has a connector for a camera. The OSD32MP1-RED expands easily by providing connectors that are compatible with Raspberry Pi, MikroElektronika mikroBUS™ Click, and STMicroelectronics Motor Control Header. diff --git a/_blinka/odroid_c2.md b/_blinka/odroid_c2.md index 8760c73b9e..b36d71745b 100644 --- a/_blinka/odroid_c2.md +++ b/_blinka/odroid_c2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "odroid_c2" -title: "ODROID C2 Download" -name: "ODROID C2" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_c2 +board_image: odroid_c2.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-c2/" -board_image: "odroid_c2.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libaries-linux-odroid-c2" +- https://www.hardkernel.com/shop/odroid-c2/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libaries-linux-odroid-c2 downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - Infrared Receiver +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID C2 +title: ODROID C2 Download --- The ODROID-C2 is a 64-bit quad-core single board computer(SBC) that is one of the most cost-effective 64bit development boards available in the ARM world. It can function as a home theater set-top box, a general purpose computer for web browsing, gaming and socializing, a compact tool for college or office work, a prototyping device for hardware tinkering, a controller for home automation, a workstation for software development, and much more. diff --git a/_blinka/odroid_c4.md b/_blinka/odroid_c4.md index 95e2a2f729..fac4dba6f7 100644 --- a/_blinka/odroid_c4.md +++ b/_blinka/odroid_c4.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "odroid_c4" -title: "ODROID C4 Download" -name: "ODROID C4" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_c4 +board_image: odroid_c4.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-c4/" -board_image: "odroid_c4.jpg" +- https://www.hardkernel.com/shop/odroid-c4/ +date_added: 2020-05-15 12:00:00 downloads_display: true -blinka: true -date_added: 2020-5-15 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - Infrared Receiver +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID C4 +title: ODROID C4 Download --- ODROID-C4 is a new generation single board computer that is more energy efficient and faster performing than ODROID-C2 which was introduced over four years ago as the world’s first affordable ARM 64bit computer. diff --git a/_blinka/odroid_m1.md b/_blinka/odroid_m1.md index 4070b0c0fd..fafc96e287 100644 --- a/_blinka/odroid_m1.md +++ b/_blinka/odroid_m1.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "odroid_m1" -title: "ODROID M1 Download" -name: "ODROID M1" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_m1 +board_image: odroid_m1.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-m1-with-4gbyte-ram/" -board_image: "odroid_m1.jpg" +- https://www.hardkernel.com/shop/odroid-m1-with-4gbyte-ram/ +date_added: 2022-11-28 12:00:00 downloads_display: true -blinka: true -date_added: 2022-11-28 features: - - Ethernet - - USB 3.0 - - HDMI/DisplayPort - - 40-pin GPIO - - Infrared Receiver +- Ethernet +- USB 3.0 +- HDMI/DisplayPort +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID M1 +title: ODROID M1 Download --- The ODROID-M1 is a single board computer with a wide range of useful peripherals developed for use in a variety of embedded system applications. To achieve this goal, we have developed various hardware accessories and device driver software over the past 10 months. In addition, RK3568B2, the core brain of ODROID-M1, is considered suitable for embedded application use as the SoC manufacturer (Rockchip) guarantees supply for the next 15 years. Therefore, we expect we can supply the ODROID-M1 boards to our important B2B customers until the year 2036 or beyond. diff --git a/_blinka/odroid_m1s.md b/_blinka/odroid_m1s.md index 0433ee44d7..852145fe7a 100644 --- a/_blinka/odroid_m1s.md +++ b/_blinka/odroid_m1s.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "odroid_m1s" -title: "ODROID M1S Download" -name: "ODROID M1S" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_m1s +board_image: odroid_m1s.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-m1s-with-8gbyte-ram/" -board_image: "odroid_m1s.jpg" +- https://www.hardkernel.com/shop/odroid-m1s-with-8gbyte-ram/ +date_added: 2023-11-15 12:00:00 downloads_display: true -blinka: true -date_added: 2023-11-15 features: - - Ethernet - - USB 3.0 - - HDMI/DisplayPort - - 40-pin GPIO +- Ethernet +- USB 3.0 +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID M1S +title: ODROID M1S Download --- We launched ODROID-M1 about 20 months ago and have supplied it to many B2B and B2C customers. Feedback from many customers requested a lower price, more GPIO ports, lower power consumption, a slimmer form factor, and a variety of practical peripherals. diff --git a/_blinka/odroid_n2.md b/_blinka/odroid_n2.md index 9b15d9cbc0..a57be28185 100644 --- a/_blinka/odroid_n2.md +++ b/_blinka/odroid_n2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "odroid_n2" -title: "ODROID N2 Download" -name: "ODROID N2" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_n2 +board_image: odroid_n2.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-n2-with-2gbyte-ram/" -board_image: "odroid_n2.jpg" +- https://www.hardkernel.com/shop/odroid-n2-with-2gbyte-ram/ +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - USB 3.0 - - HDMI/DisplayPort - - 40-pin GPIO - - Infrared Receiver +- Ethernet +- USB 3.0 +- HDMI/DisplayPort +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID N2 +title: ODROID N2 Download --- ODROID-N2 is a new generation single board computer that is more powerful, more stable, and faster performing than N1. diff --git a/_blinka/odroid_xu4.md b/_blinka/odroid_xu4.md index 89eeea8ac9..a1273cc225 100644 --- a/_blinka/odroid_xu4.md +++ b/_blinka/odroid_xu4.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "odroid_xu4" -title: "ODROID XU4 Download" -name: "ODROID XU4" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_xu4 +board_image: odroid_xu4.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-xu4-special-price/" -board_image: "odroid_xu4.jpg" +- https://www.hardkernel.com/shop/odroid-xu4-special-price/ +date_added: 2020-05-29 12:00:00 downloads_display: true -blinka: true -date_added: 2020-5-29 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID XU4 +title: ODROID XU4 Download --- ODROID-XU4 is powered by ARM® big.LITTLE™ technology, the Heterogeneous Multi-Processing (HMP) solution. diff --git a/_blinka/odroid_xu4q.md b/_blinka/odroid_xu4q.md index 8b834c2ffb..d0d8e4a354 100644 --- a/_blinka/odroid_xu4q.md +++ b/_blinka/odroid_xu4q.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "odroid_xu4q" -title: "ODROID XU4Q Download" -name: "ODROID XU4Q" -manufacturer: "Hardkernel co., Ltd." +blinka: true +board_id: odroid_xu4q +board_image: odroid_xu4q.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-xu4q-special-price/" -board_image: "odroid_xu4q.jpg" +- https://www.hardkernel.com/shop/odroid-xu4q-special-price/ +date_added: 2020-05-29 12:00:00 downloads_display: true -blinka: true -date_added: 2020-5-29 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Hardkernel co., Ltd. +name: ODROID XU4Q +title: ODROID XU4Q Download --- ODROID-XU4Q diff --git a/_blinka/odyssey_x86j4105.md b/_blinka/odyssey_x86j4105.md index 19fedfe87f..a597aa311e 100644 --- a/_blinka/odyssey_x86j4105.md +++ b/_blinka/odyssey_x86j4105.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "odyssey_x86j4105" -title: "ODYSSEY - X86J4105 Download" -name: "ODYSSEY - X86J4105" -manufacturer: "SeeedStudio" +blinka: true +board_id: odyssey_x86j4105 +board_image: odyssey_x86j4105.jpg board_url: - - "https://www.seeedstudio.com/ODYSSEY-X86J4105800-p-4445.html" -board_image: "odyssey_x86j4105.jpg" -download_instructions: "" +- https://www.seeedstudio.com/ODYSSEY-X86J4105800-p-4445.html +date_added: 2022-11-28 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2022-11-28 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +layout: download +manufacturer: SeeedStudio +name: ODYSSEY - X86J4105 +title: ODYSSEY - X86J4105 Download --- Edge Computing devices are playing an increasingly important role in the field of IoT. Nowadays, a computer is not just a big rectangular black box under the desk, or a small portable device working on your knees. Computers are ubiquitous devices that span calculating, communicating, and data storage. Based on this definition, here we would like to introduce our new product – the ODYSSEY - X86J4105. diff --git a/_blinka/olimex_a20_lime2.md b/_blinka/olimex_a20_lime2.md index d9aa85d76b..ce5643e81c 100644 --- a/_blinka/olimex_a20_lime2.md +++ b/_blinka/olimex_a20_lime2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "olimex_a20_lime2" -title: "A20-OLinuXino-LIME2 Download" -name: "A20-OLinuXino-LIME2" -manufacturer: "Olimex" +blinka: true +board_id: olimex_a20_lime2 +board_image: olimex_a20_lime2.jpg board_url: - - "https://www.olimex.com/wiki/A20-OLinuXino-LIME2" -board_image: "olimex_a20_lime2.jpg" -download_instructions: "" +- https://www.olimex.com/wiki/A20-OLinuXino-LIME2 +date_added: 2023-12-11 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-12-11 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - Infrared Receiver +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- Infrared Receiver +layout: download +manufacturer: Olimex +name: A20-OLinuXino-LIME2 +title: A20-OLinuXino-LIME2 Download --- A20-OLinuXino-LIME2 looks similar to both [A20-OLinuXino-LIME](https://www.olimex.com/wiki/A20-OLinuXino-LIME) and [A10-OLinuXino-LIME](https://www.olimex.com/wiki/A10-OLinuXino-LIME). The major differences between A20-OLinuXino-LIME2 and A20-OLinuXino-LIME are: diff --git a/_blinka/onion_omega2plus.md b/_blinka/onion_omega2plus.md index eaa6940025..39f5bd95a9 100644 --- a/_blinka/onion_omega2plus.md +++ b/_blinka/onion_omega2plus.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "onion_omega2plus" -title: "Onion Omega2+" -name: "Onion Omega2+" -manufacturer: "Onion Corporation" +blinka: true +board_id: onion_omega2plus +board_image: onion_omega2plus.jpg board_url: - - "https://onion.io/store/omega2p/" -board_image: "onion_omega2plus.jpg" -download_instructions: "" +- https://onion.io/store/omega2p/ +date_added: 2020-04-22 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-4-22 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Onion Corporation +name: Onion Omega2+ +title: Onion Omega2+ --- Ever wanted your own Linux-based IoT computer? A small one, that can be battery powered? The Onion Omega2 is sort of in-between a microcontroller (like an Arduino/CircuitPython/MakeCode running chip) and a full-fledged microcomputer (like Raspbery Pi). What you get is a bite-sized development board that combines the power-efficiency of the Arduino and the flexibility of the Raspberry Pi! diff --git a/_blinka/orange_pi_2.md b/_blinka/orange_pi_2.md index dd1064c0ea..7071e4e820 100644 --- a/_blinka/orange_pi_2.md +++ b/_blinka/orange_pi_2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "orange_pi_2" -title: "Orange Pi 2 Download" -name: "Orange Pi 2" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_2 +board_image: orange_pi_2.jpg board_url: - - "http://www.orangepi.org/orangepi2/" -board_image: "orange_pi_2.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepi2/ +date_added: 2020-05-11 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2020-5-11 features: - - Wi-Fi - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi 2 +title: Orange Pi 2 Download --- Orange Pi 2 is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you. diff --git a/_blinka/orange_pi_3.md b/_blinka/orange_pi_3.md index fbf1f46ecb..4d6adc0656 100644 --- a/_blinka/orange_pi_3.md +++ b/_blinka/orange_pi_3.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "orange_pi_3" -title: "Orange Pi 3 Download" -name: "Orange Pi 3" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_3 +board_image: orange_pi_3.jpg board_url: - - "http://www.orangepi.org/Orange%20Pi%203/" -board_image: "orange_pi_3.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/Orange%20Pi%203/ +date_added: 2022-01-04 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2022-1-4 features: - - Wi-Fi - - Ethernet - - HDMI/DisplayPort - - Infrared Receiver +- Wi-Fi +- Ethernet +- HDMI/DisplayPort +- Infrared Receiver +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi 3 +title: Orange Pi 3 Download --- Orange Pi 3 is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you. diff --git a/_blinka/orange_pi_4.md b/_blinka/orange_pi_4.md index 8cb46f953b..54271c8c4e 100644 --- a/_blinka/orange_pi_4.md +++ b/_blinka/orange_pi_4.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_4" -title: "Orange Pi 4 Download" -name: "Orange Pi 4" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_4 +board_image: orange_pi_4.jpg board_url: - - "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-4.html" -board_image: "orange_pi_4.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-4.html +date_added: 2022-10-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2022-10-6 features: - - Wi-Fi - - Ethernet - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Ethernet +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi 4 +title: Orange Pi 4 Download --- Orange Pi 4 is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0. It is highly compact with a dimension of 56 x 91mm. diff --git a/_blinka/orange_pi_4_lts.md b/_blinka/orange_pi_4_lts.md index 9a6c2c70e4..228793b194 100644 --- a/_blinka/orange_pi_4_lts.md +++ b/_blinka/orange_pi_4_lts.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "orange_pi_4_lts" -title: "Orange Pi 4 LTS Download" -name: "Orange Pi 4 LTS" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_4_lts +board_image: orange_pi_4_lts.jpg board_url: - - "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/orange-pi-4-LTS.html" -board_image: "orange_pi_4_lts.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/orange-pi-4-LTS.html +date_added: 2022-10-06 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2022-10-6 features: - - Wi-Fi - - Ethernet - - Bluetooth/BLE - - HDMI/DisplayPort +- Wi-Fi +- Ethernet +- Bluetooth/BLE +- HDMI/DisplayPort +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi 4 LTS +title: Orange Pi 4 LTS Download --- Orange Pi 4 LTS is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0. It is highly compact with a dimension of 56 x 91mm. diff --git a/_blinka/orange_pi_5.md b/_blinka/orange_pi_5.md index 7c7d97e36d..cb0f0e2509 100644 --- a/_blinka/orange_pi_5.md +++ b/_blinka/orange_pi_5.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "orange_pi_5" -title: "Orange Pi 5 Download" -name: "Orange Pi 5" -manufacturer: "Shenzhen Xunlong Software CO., Limited" +blinka: true +board_id: orange_pi_5 +board_image: orange_pi_5.jpg board_url: - - "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5.html" -board_image: "orange_pi_5.jpg" -download_instructions: "" +- http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5.html +date_added: 2023-05-08 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-8 features: - - Ethernet - - USB 3.0 - - HDMI/DisplayPort +- Ethernet +- USB 3.0 +- HDMI/DisplayPort +layout: download +manufacturer: Shenzhen Xunlong Software CO., Limited +name: Orange Pi 5 +title: Orange Pi 5 Download --- Orange Pi 5 uses Rockchip RK3588S new generation 8-core 64-bit processor, quad-core A76+quad-core A55, with 8nm process design, up to 2.4GHz main frequency, integrated ARM Mali-G610 GPU, embedded high-performance 3D/2D image acceleration module, built-in NPU with 6Tops computing power, with 4GB/8GB/16GB/32GB (LPDDR4/4x), and up to 8K display processing capability. diff --git a/_blinka/orange_pi_5_plus.md b/_blinka/orange_pi_5_plus.md index 83d6486a08..58dbe1df95 100644 --- a/_blinka/orange_pi_5_plus.md +++ b/_blinka/orange_pi_5_plus.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_5_plus" -title: "Orange Pi 5 Plus Download" -name: "Orange Pi 5 Plus" -manufacturer: "Shenzhen Xunlong Software CO., Limited" +blinka: true +board_id: orange_pi_5_plus +board_image: orange_pi_5_plus.jpg board_url: - - "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5-plus.html" -board_image: "orange_pi_5_plus.jpg" -download_instructions: "" +- http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5-plus.html +date_added: 2023-12-11 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-12-11 features: - - Ethernet - - USB 3.0 - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Ethernet +- USB 3.0 +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Shenzhen Xunlong Software CO., Limited +name: Orange Pi 5 Plus +title: Orange Pi 5 Plus Download --- Orange Pi 5 Plus uses Rockchip RK3588 8-core 64-bit processor, quad-core A76+quad-core A55, with 8nm process design, up to 2.4GHz main frequency, integrated ARM Mali-G610, built-in 3D GPU, compatible with OpenGL ES1.1/2.0/3.2, OpenCL 2.2 and Vulkan 1.2; embedded NPU supports INT4/INT8/INT16/FP16 mixed computing, with up to 6Tops of computing power, which can meet the edge computing needs of most end devices; 4GB/8GB/16GB LPDDR4/4X memory and eMMC socket, which can be connected with 16GB/32GB/64GB/128GB/256GB eMMC module. Orange Pi 5 Plus supports Orange Pi OS, the official operating system developed by Orange Pi, as well as Android 12, Debian 11, Ubuntu 22.04 and other operating systems. diff --git a/_blinka/orange_pi_lite.md b/_blinka/orange_pi_lite.md index 8af2c2c0a9..89de602af2 100644 --- a/_blinka/orange_pi_lite.md +++ b/_blinka/orange_pi_lite.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "orange_pi_lite" -title: "Orange Pi Lite Download" -name: "Orange Pi Lite" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_lite +board_image: orange_pi_lite.png board_url: - - "http://www.orangepi.org/orangepilite/" -board_image: "orange_pi_lite.png" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepilite/ +date_added: 2020-01-18 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2020-1-18 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi Lite +title: Orange Pi Lite Download --- What's Orange Pi Lite? diff --git a/_blinka/orange_pi_one.md b/_blinka/orange_pi_one.md index df16846f0f..129be5dc79 100644 --- a/_blinka/orange_pi_one.md +++ b/_blinka/orange_pi_one.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_one" -title: "Orange Pi One Download" -name: "Orange Pi One" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_one +board_image: orange_pi_one.png board_url: - - "http://www.orangepi.org/orangepione/" -board_image: "orange_pi_one.png" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepione/ +date_added: 2020-01-18 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2020-1-18 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi One +title: Orange Pi One Download --- What’s Orange Pi One? It’s an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H3 SoC, and has 512MB DDR3 SDRAM diff --git a/_blinka/orange_pi_pc.md b/_blinka/orange_pi_pc.md index 8dc9cf75ce..8a0a2599e9 100644 --- a/_blinka/orange_pi_pc.md +++ b/_blinka/orange_pi_pc.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_pc" -title: "Orange Pi PC Download" -name: "Orange Pi PC" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_pc +board_image: orange_pi_pc.jpg board_url: - - "http://www.orangepi.org/orangepipc/" -board_image: "orange_pi_pc.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepipc/ +date_added: 2019-06-04 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2019-6-4 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi PC +title: Orange Pi PC Download --- What’s Orange Pi PC?It’s an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H3 SoC, and has 1GB DDR3 SDRAM. diff --git a/_blinka/orange_pi_pc_plus.md b/_blinka/orange_pi_pc_plus.md index eed1cbbb9d..73903a86ca 100644 --- a/_blinka/orange_pi_pc_plus.md +++ b/_blinka/orange_pi_pc_plus.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_pc_plus" -title: "Orange Pi PC Plus Download" -name: "Orange Pi PC Plus" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_pc_plus +board_image: orange_pi_pc_plus.jpg board_url: - - "http://www.orangepi.org/orangepipcplus/" -board_image: "orange_pi_pc_plus.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepipcplus/ +date_added: 2020-03-25 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2020-3-25 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi PC Plus +title: Orange Pi PC Plus Download --- What’s Orange Pi PC Plus? diff --git a/_blinka/orange_pi_plus_2e.md b/_blinka/orange_pi_plus_2e.md index 0f81b30ea4..a1130d0735 100644 --- a/_blinka/orange_pi_plus_2e.md +++ b/_blinka/orange_pi_plus_2e.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_plus_2e" -title: "Orange Pi Plus 2E Download" -name: "Orange Pi Plus 2E" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_plus_2e +board_image: orange_pi_plus_2e.png board_url: - - "http://www.orangepi.org/orangepiplus2e/" -board_image: "orange_pi_plus_2e.png" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepiplus2e/ +date_added: 2020-01-18 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2020-1-18 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi Plus 2E +title: Orange Pi Plus 2E Download --- What's Orange Pi Plus 2E? diff --git a/_blinka/orange_pi_r1.md b/_blinka/orange_pi_r1.md index a27d75a870..fe7d2b2ae6 100644 --- a/_blinka/orange_pi_r1.md +++ b/_blinka/orange_pi_r1.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "orange_pi_r1" -title: "Orange Pi R1 Download" -name: "Orange Pi R1" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_r1 +board_image: orange_pi_r1.jpg board_url: - - "http://www.orangepi.org/OrangePiR1/" -board_image: "orange_pi_r1.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/OrangePiR1/ +date_added: 2019-06-04 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2019-6-4 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet +- Wi-Fi +- Bluetooth/BLE +- Ethernet +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi R1 +title: Orange Pi R1 Download --- What’s Orange Pi R1?It’s an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H2 SoC, and has 256MB DDR3 SDRAM. diff --git a/_blinka/orange_pi_zero.md b/_blinka/orange_pi_zero.md index 8f1e44ade3..c09da894e7 100644 --- a/_blinka/orange_pi_zero.md +++ b/_blinka/orange_pi_zero.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "orange_pi_zero" -title: "Orange Pi Zero Download" -name: "Orange Pi Zero" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_zero +board_image: orange_pi_zero.jpg board_url: - - "http://www.orangepi.org/orangepizero/" -board_image: "orange_pi_zero.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi" +- http://www.orangepi.org/orangepizero/ +date_added: 2019-12-03 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet +- Wi-Fi +- Bluetooth/BLE +- Ethernet +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi Zero +title: Orange Pi Zero Download --- Orange Pi Zero is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you. diff --git a/_blinka/orange_pi_zero2.md b/_blinka/orange_pi_zero2.md index 857193fcdb..e4be4f0818 100644 --- a/_blinka/orange_pi_zero2.md +++ b/_blinka/orange_pi_zero2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "orange_pi_zero2" -title: "Orange Pi Zero2 Download" -name: "Orange Pi Zero2" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_zero2 +board_image: orange_pi_zero.jpg board_url: - - "http://www.orangepi.org/Orange%20Pi%20Zero2/" -board_image: "orange_pi_zero.jpg" -download_instructions: "" +- http://www.orangepi.org/Orange%20Pi%20Zero2/ +date_added: 2020-02-08 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-2-8 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi Zero2 +title: Orange Pi Zero2 Download --- Orange Pi Zero2 is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you. diff --git a/_blinka/orange_pi_zero_plus.md b/_blinka/orange_pi_zero_plus.md index 4c504005ac..5660c2a615 100644 --- a/_blinka/orange_pi_zero_plus.md +++ b/_blinka/orange_pi_zero_plus.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_zero_plus" -title: "Orange Pi Zero Plus Download" -name: "Orange Pi Zero Plus" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_zero_plus +board_image: orange_pi_zero_plus.jpg board_url: - - "http://www.orangepi.org/OrangePiZeroPlus/" -board_image: "orange_pi_zero_plus.jpg" -download_instructions: "" +- http://www.orangepi.org/OrangePiZeroPlus/ +date_added: 2021-01-14 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2021-1-14 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi Zero Plus +title: Orange Pi Zero Plus Download --- What’s Orange Pi Zero Plus? diff --git a/_blinka/orange_pi_zero_plus2_h5.md b/_blinka/orange_pi_zero_plus2_h5.md index 0f9a3c42f8..3e624e5782 100644 --- a/_blinka/orange_pi_zero_plus2_h5.md +++ b/_blinka/orange_pi_zero_plus2_h5.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "orange_pi_zero_plus2_h5" -title: "Orange Pi Zero Plus2 (H5 Version) Download" -name: "Orange Pi Zero Plus2 (H5 Version)" -manufacturer: "Shenzhen Xunlong Software CO.,Limited" +blinka: true +board_id: orange_pi_zero_plus2_h5 +board_image: orange_pi_zero_plus2_h5.jpg board_url: - - "http://www.orangepi.org/OrangePiZeroPlus2/" -board_image: "orange_pi_zero_plus2_h5.jpg" -download_instructions: "" +- http://www.orangepi.org/OrangePiZeroPlus2/ +date_added: 2020-11-02 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-11-2 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Shenzhen Xunlong Software CO.,Limited +name: Orange Pi Zero Plus2 (H5 Version) +title: Orange Pi Zero Plus2 (H5 Version) Download --- What’s Orange Pi Zero Plus2? diff --git a/_blinka/pcduino2.md b/_blinka/pcduino2.md index 51dc55fcc9..2cf6958aa7 100644 --- a/_blinka/pcduino2.md +++ b/_blinka/pcduino2.md @@ -1,15 +1,14 @@ --- -layout: download -board_id: "pcduino2" -title: "pcDuino2 Download" -name: "pcDuino2" -manufacturer: "LinkSprite" blinka: true +board_id: pcduino2 +board_image: pcduino2.jpg board_url: - - "https://www.linksprite.com/linksprite-pcduino2/" -board_image: "pcduino2.jpg" -date_added: 2023-10-27 - +- https://www.linksprite.com/linksprite-pcduino2/ +date_added: 2023-10-27 12:00:00 +layout: download +manufacturer: LinkSprite +name: pcDuino2 +title: pcDuino2 Download --- As the field of embedded electronics gets more advanced, hobbyists and professionals are both in need of smaller and more powerful computers. The pcDuino2 is a high performance, cost effective mini PC platform that runs full-featured operating systems such as Ubuntu and Android ICS. Now included with the pcDuino2 is a built in Wi-Fi module and Arduino headers (finally with the same architecture as Uno boards) meaning you will no longer need to purchase a separate wireless module or shield adapter for this dev board! diff --git a/_blinka/pcduino3.md b/_blinka/pcduino3.md index b2b7ebf508..5e367ae2ed 100644 --- a/_blinka/pcduino3.md +++ b/_blinka/pcduino3.md @@ -1,15 +1,14 @@ --- -layout: download -board_id: "pcduino3" -title: "pcDuino3 Download" -name: "pcDuino3" -manufacturer: "LinkSprite" blinka: true +board_id: pcduino3 +board_image: pcduino3.jpg board_url: - - "https://www.linksprite.com/linksprite-pcduino3/" -board_image: "pcduino3.jpg" -date_added: 2023-10-27 - +- https://www.linksprite.com/linksprite-pcduino3/ +date_added: 2023-10-27 12:00:00 +layout: download +manufacturer: LinkSprite +name: pcDuino3 +title: pcDuino3 Download --- The pcDuino3 is a high performance, cost effective mini PC platform that runs full-featured operating systems such as Ubuntu and Android. In addition to running Linux and Android, the pcDuino3 has support for programming languages such as C, C++, Java, Python, Arduino, and more. You can even use your favorite Arduino shields for added hardware capability. The pcDuino3 has an impressive set of features including an IR receiver, SATA host, USB-OTG, LVDS LCD interface, MIPI camera interface, 3.5mm audio output, battery header, WiFi, Ethernet, and more. If you're looking for the 'kitchen sink' of development boards, look no further. diff --git a/_blinka/pine64.md b/_blinka/pine64.md index 907956c1d8..34d6d0c384 100644 --- a/_blinka/pine64.md +++ b/_blinka/pine64.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "pine64" -title: "Pine A64+ Download" -name: "Pine A64+" -manufacturer: "Pine64" +blinka: true +board_id: pine64 +board_image: pine64.png board_url: - - "https://www.pine64.org/devices/single-board-computers/pine-a64/" -board_image: "pine64.png" -download_instructions: "" +- https://www.pine64.org/devices/single-board-computers/pine-a64/ +date_added: 2020-01-09 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-1-9 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Pine64 +name: Pine A64+ +title: Pine A64+ Download --- The PINE A64 (+) is the first pine64.org Single Board Computer powered by Allwinner’s A64 Quad-Core ARM Cortex A53 64-Bit SOC. There are many Operating Systems available for the PINE A64 (+) created by the open source community and various partner projects. Currently the majority of Linux distributions for the PINE A64 are using mainline Linux but there are a number of BSP-based distribution and / or legacy systems that you can download too. diff --git a/_blinka/pine_h64.md b/_blinka/pine_h64.md index f6548b0ede..79a6f1c145 100644 --- a/_blinka/pine_h64.md +++ b/_blinka/pine_h64.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "pine_h64" -title: "PINE H64 Download" -name: "PINE H64" -manufacturer: "Pine64" +blinka: true +board_id: pine_h64 +board_image: pine_h64.jpg board_url: - - "https://www.pine64.org/pine-h64-ver-b/" -board_image: "pine_h64.jpg" -download_instructions: "" +- https://www.pine64.org/pine-h64-ver-b/ +date_added: 2020-11-01 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-11-1 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Pine64 +name: PINE H64 +title: PINE H64 Download --- PINE H64 is latest Single Board Computer by Pine64. Its powered by an Allwinner “H6” Quad-Core ARM Cortex A53 64-Bit Processor with MALI T-722 GPU. The PINE H64 is equipped with up-to 3GB LPDDR3 PC-1600 system memory and 128Mb SPI boot Flash. There is also an optional eMMC module (up to 128GB) and microSD slot for booting. The board is equipped with an onboard build-in 11n Wifi/BT, 1x USB 3.0 Host, 2x USB 2.0 Host, Gigabit Ethernet, PI-2 GPIO Bus, Euler GPIO Bus as well as many other peripheral device interface such as UART, SPI, I2C, for makers to integrate with sensors and other peripherals. diff --git a/_blinka/pocketbeagle.md b/_blinka/pocketbeagle.md index 4567834ec6..404217f9b8 100644 --- a/_blinka/pocketbeagle.md +++ b/_blinka/pocketbeagle.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pocketbeagle" -title: "PocketBeagle" -name: "PocketBeagle" -manufacturer: "BeagleBoard" +blinka: true +board_id: pocketbeagle +board_image: pocketbeagle.jpg board_url: - - "https://beagleboard.org/pocket" -board_image: "pocketbeagle.jpg" +- https://beagleboard.org/pocket +date_added: 2019-12-03 12:00:00 downloads_display: true -blinka: true -date_added: 2019-12-3 features: - - Ethernet - - HDMI/DisplayPort +- Ethernet +- HDMI/DisplayPort +layout: download +manufacturer: BeagleBoard +name: PocketBeagle +title: PocketBeagle --- Want a powerful 1GHz AM3358 powered Linux single board that's ultra-tiny and open-source? PocketBeagle offers a wealth of computer power in a small footprint (pawprint?). This board is just like the BeagleBone Black but small enough to fit in your wallet. It has a fully-integrated chip that combines the processor and RAM all on one chip, so it's super small. Despite the compact shape, there are 72 total breakout pads, a microSD card slot for your filesystem and OS, and a native USB connection diff --git a/_blinka/pyboard_v11.md b/_blinka/pyboard_v11.md index 4dcb6c8fc2..e312478e75 100644 --- a/_blinka/pyboard_v11.md +++ b/_blinka/pyboard_v11.md @@ -1,15 +1,14 @@ --- -layout: download -board_id: "pyboard_v11" -title: "Pyboard Download" -name: "Pyboard" -manufacturer: "Damien George" blinka: true +board_id: pyboard_v11 +board_image: pyboard_v11.jpg board_url: - - "https://www.adafruit.com/product/2390" -board_image: "pyboard_v11.jpg" -date_added: 2021-5-24 - +- https://www.adafruit.com/product/2390 +date_added: 2021-05-24 12:00:00 +layout: download +manufacturer: Damien George +name: Pyboard +title: Pyboard Download --- The pyboard is a compact and powerful electronics development board that runs MicroPython. It connects to your PC over USB, giving you a USB flash drive to save your Python scripts, and a serial Python prompt (a REPL) for instant programming. Requires a micro USB cable, and will work with Windows, Mac and Linux. diff --git a/_blinka/radxa_cm3_io_board.md b/_blinka/radxa_cm3_io_board.md index 2966e583aa..6d34b3615d 100644 --- a/_blinka/radxa_cm3_io_board.md +++ b/_blinka/radxa_cm3_io_board.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "radxa_cm3_io_board" -title: "Radxa CM3 IO Board Download" -name: "Radxa CM3 IO Board" -manufacturer: "Radxa Limited" +blinka: true +board_id: radxa_cm3_io_board +board_image: radxa_cm3_io_board.jpg board_url: - - "https://wiki.radxa.com/Rock3/CM3/IO" -board_image: "radxa_cm3_io_board.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rock3/CM3/IO +date_added: 2023-05-05 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-5 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Radxa CM3 IO Board +title: Radxa CM3 IO Board Download --- Radxa CM3 + Raspberry Pi CM4 IO Board is an application board for the ROCK3 Compute Module(CM3) with rich IO features. @@ -53,4 +53,4 @@ Unleash the potential of your Radxa ROCK 3 Compute Module (CM3) with The ROCK 3 ## Purchase -* [OKdo](https://www.okdo.com/us/p/rock-3-compute-module-cm3-io-board/) \ No newline at end of file +* [OKdo](https://www.okdo.com/us/p/rock-3-compute-module-cm3-io-board/) diff --git a/_blinka/radxa_rock_3a.md b/_blinka/radxa_rock_3a.md index 000028aad3..7214af06fb 100644 --- a/_blinka/radxa_rock_3a.md +++ b/_blinka/radxa_rock_3a.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "radxa_rock_3a" -title: "Rock 3A Download" -name: "Rock 3A" -manufacturer: "Radxa Limited" +blinka: true +board_id: radxa_rock_3a +board_image: radxa_rock_3a.jpg board_url: - - "https://wiki.radxa.com/Rock3/3a" -board_image: "radxa_rock_3a.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rock3/3a +date_added: 2023-05-05 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-5 features: - - Wi-Fi - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Rock 3A +title: Rock 3A Download --- ROCK 3A is an improved version of the ROCK Pi 4. ROCK 3A features a quad core Cortex-A55 ARM processor, 32bit 3200Mb/s LPDDR4, up to 4K@60 HDMI, MIPI DSI, MIPI CSI, 3.5mm jack with mic, USB Port, GbE LAN, PCIe 3.0, PCIe 2.0, 40-pin color expansion header, RTC. Also, ROCK 3 supports USB PD and QC powering. @@ -37,4 +37,4 @@ ROCK 3A is an improved version of the ROCK Pi 4. ROCK 3A features a quad core Co ## Purchase * [OKd (2GB)](https://www.okdo.com/us/p/okdo-rock-3-model-a-2gb-single-board-computer-rockchip-rk3568-arm-cortex-a55/) -* [OKd (4GB)](https://www.okdo.com/us/p/okdo-rock-3-model-a-4gb-single-board-computer-rockchip-rk3568-arm-cortex-a55/) \ No newline at end of file +* [OKd (4GB)](https://www.okdo.com/us/p/okdo-rock-3-model-a-4gb-single-board-computer-rockchip-rk3568-arm-cortex-a55/) diff --git a/_blinka/radxa_rock_3c.md b/_blinka/radxa_rock_3c.md index f8d8a3eec9..077b8462e6 100644 --- a/_blinka/radxa_rock_3c.md +++ b/_blinka/radxa_rock_3c.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "radxa_rock_3c" -title: "Rock 3C Download" -name: "Rock 3C" -manufacturer: "Radxa Limited" +blinka: true +board_id: radxa_rock_3c +board_image: radxa_rock_3a.jpg board_url: - - "https://wiki.radxa.com/Rock3/3c" -board_image: "radxa_rock_3a.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rock3/3c +date_added: 2024-03-13 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2024-3-13 features: - - Wi-Fi - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Rock 3C +title: Rock 3C Download --- This is the documentation for ROCK 3 Model C, written by Radxa Team with community contributions. @@ -37,4 +37,4 @@ ROCK 3C features a quad core Cortex-A55 ARM processor, 32bit 3200Mb/s LPDDR4, up ## Purchase -* [Amazon](https://amzn.to/3v01Idv) \ No newline at end of file +* [Amazon](https://amzn.to/3v01Idv) diff --git a/_blinka/radxa_rock_4se.md b/_blinka/radxa_rock_4se.md index 4be0f0a0c4..9563fb8e46 100644 --- a/_blinka/radxa_rock_4se.md +++ b/_blinka/radxa_rock_4se.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "radxa_rock_4se" -title: "Rock 4 SE Download" -name: "Rock 4 SE" -manufacturer: "Radxa Limited" +blinka: true +board_id: radxa_rock_4se +board_image: radxa_rock_4se.jpg board_url: - - "https://wiki.radxa.com/Rock4/se" -board_image: "radxa_rock_4se.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rock4/se +date_added: 2024-03-13 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2024-3-13 features: - - Wi-Fi - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Rock 4 SE +title: Rock 4 SE Download --- This is the documentation for ROCK 4 SE, written by Radxa Team with community contributions. @@ -39,4 +39,4 @@ ROCK 4 SE is powered by RK3399-T with a dual core Cortex-A72@1.5GHz + quad core ## Purchase -* [AliExpress](https://www.aliexpress.us/item/3256804923772687.html) \ No newline at end of file +* [AliExpress](https://www.aliexpress.us/item/3256804923772687.html) diff --git a/_blinka/radxa_rock_5b.md b/_blinka/radxa_rock_5b.md index 3f4e7c0e6c..e907bbf235 100644 --- a/_blinka/radxa_rock_5b.md +++ b/_blinka/radxa_rock_5b.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "radxa_rock_5b" -title: "Rock 5B Download" -name: "Rock 5B" -manufacturer: "Radxa Limited" +blinka: true +board_id: radxa_rock_5b +board_image: radxa_rock_5b.jpg board_url: - - "https://wiki.radxa.com/Rock5/5b" -board_image: "radxa_rock_5b.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rock5/5b +date_added: 2023-05-05 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-5 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Rock 5B +title: Rock 5B Download --- The ROCK 5 Model B is the latest Radxa SBC with a Pico ITX form factor (2.5 inch, 100 x 72mm). Powered by the all-new powerhouse RK3588 SoC, the ROCK5 Model B offers awesome power-efficient performance in 4GB, 8GB or 16GB RAM configurations. @@ -37,4 +37,4 @@ The ROCK 5 Model B is the latest Radxa SBC with a Pico ITX form factor (2.5 inch ## Purchase -* [OKdo](https://www.okdo.com/us/p/okdo-rock-5-model-b-8gb-single-board-computer-rockchip-rk3588-arm-cortex-a76-cortex-a55/) \ No newline at end of file +* [OKdo](https://www.okdo.com/us/p/okdo-rock-5-model-b-8gb-single-board-computer-rockchip-rk3588-arm-cortex-a76-cortex-a55/) diff --git a/_blinka/radxa_zero.md b/_blinka/radxa_zero.md index 6ee2632b79..526443c040 100644 --- a/_blinka/radxa_zero.md +++ b/_blinka/radxa_zero.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "radxa_zero" -title: "Radxa Zero Download" -name: "Radxa Zero" -manufacturer: "Radxa" +blinka: true +board_id: radxa_zero +board_image: radxa_zero.jpg board_url: - - "https://wiki.radxa.com/Zero" -board_image: "radxa_zero.jpg" +- https://wiki.radxa.com/Zero +date_added: 2022-06-02 12:00:00 downloads_display: true -blinka: true -date_added: "2022-6-2" features: - - HDMI/DisplayPort - - Wi-Fi - - Bluetooth/BLE - - USB 3.0 - - 40-pin GPIO +- HDMI/DisplayPort +- Wi-Fi +- Bluetooth/BLE +- USB 3.0 +- 40-pin GPIO +layout: download +manufacturer: Radxa +name: Radxa Zero +title: Radxa Zero Download --- Radxa Zero is an ultra thin SBC in small form factor with powerful performance based on Amlogic S905Y2. It can run Android and selected Linux distributions. diff --git a/_blinka/raspberry_pi_1a.md b/_blinka/raspberry_pi_1a.md index 5499a563cc..8315aaf22a 100644 --- a/_blinka/raspberry_pi_1a.md +++ b/_blinka/raspberry_pi_1a.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_1a" -title: "Raspberry Pi 1 Model A Download" -name: "Pi 1 Model A" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_1a +board_image: raspberry_pi_1a.jpg board_url: - - "https://www.adafruit.com/product/998" -board_image: "raspberry_pi_1a.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.adafruit.com/product/998 +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Pi 1 Model A +title: Raspberry Pi 1 Model A Download --- The Raspberry Pi 1 Model A is the original Model A. In November 2014 It was superseded by the Raspberry Pi 1 Model A+ diff --git a/_blinka/raspberry_pi_1aplus.md b/_blinka/raspberry_pi_1aplus.md index cf2f6d0b22..b109b209d1 100644 --- a/_blinka/raspberry_pi_1aplus.md +++ b/_blinka/raspberry_pi_1aplus.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "raspberry_pi_1aplus" -title: "Raspberry Pi 1 Model A+ Download" -name: "Pi 1 Model A+" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_1aplus +board_image: raspberry_pi_1aplus.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-1-model-a-plus/" -board_image: "raspberry_pi_1aplus.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-1-model-a-plus/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - HDMI/DisplayPort - - 40-pin GPIO +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Pi 1 Model A+ +title: Raspberry Pi 1 Model A+ Download --- The Model A+ is the low-cost variant of the Raspberry Pi. It replaced the original Model A in November 2014. diff --git a/_blinka/raspberry_pi_1b.md b/_blinka/raspberry_pi_1b.md index a5634b66ad..c4d789867a 100644 --- a/_blinka/raspberry_pi_1b.md +++ b/_blinka/raspberry_pi_1b.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "raspberry_pi_1b" -title: "Raspberry Pi 1 Model B Download" -name: "Pi 1 Model B" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_1b +board_image: raspberry_pi_1b.jpg board_url: - - "https://www.adafruit.com/product/998" -board_image: "raspberry_pi_1b.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.adafruit.com/product/998 +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - Ethernet - HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Pi 1 Model B +title: Raspberry Pi 1 Model B Download --- The Model B was the original Raspberry Pi Model B and consisted of two revisions. In July 2014 It was superseded by the Raspberry Pi 1 Model B+ diff --git a/_blinka/raspberry_pi_1bplus.md b/_blinka/raspberry_pi_1bplus.md index 57eb2f14d6..1c8cbbab7e 100644 --- a/_blinka/raspberry_pi_1bplus.md +++ b/_blinka/raspberry_pi_1bplus.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "raspberry_pi_1bplus" -title: "Raspberry Pi 1 Model B+ Download" -name: "Pi 1 Model B+" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_1bplus +board_image: raspberry_pi_1bplus.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-1-model-b-plus/" -board_image: "raspberry_pi_1bplus.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-1-model-b-plus/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Pi 1 Model B+ +title: Raspberry Pi 1 Model B+ Download --- The Model B+ is the final revision of the original Raspberry Pi. It replaced the Model B in July 2014 and was superseded by the Raspberry Pi 2 Model B diff --git a/_blinka/raspberry_pi_2b.md b/_blinka/raspberry_pi_2b.md index d686d0090a..311fbec409 100644 --- a/_blinka/raspberry_pi_2b.md +++ b/_blinka/raspberry_pi_2b.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "raspberry_pi_2b" -title: "Raspberry Pi 2 Model B Download" -name: "Pi 2 Model B" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_2b +board_image: raspberry_pi_2b.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-2-model-b/" -board_image: "raspberry_pi_2b.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-2-model-b/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Pi 2 Model B +title: Raspberry Pi 2 Model B Download --- Didn't think the Raspberry Pi could get any better? You're in for a big surprise! The Raspberry Pi 2 Model B is out and it's amazing! With an upgraded ARM Cortex-A53 quad-core processor, Dual Core VideoCore IV Multimedia coprocessor, and a full Gigabyte of RAM, this pocket computer has moved from being a 'toy' to a real desktop PC! diff --git a/_blinka/raspberry_pi_3aplus.md b/_blinka/raspberry_pi_3aplus.md index 73020f0df2..a851829904 100644 --- a/_blinka/raspberry_pi_3aplus.md +++ b/_blinka/raspberry_pi_3aplus.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "raspberry_pi_3aplus" -title: "Raspberry Pi 3 Model A+ Download" -name: "Pi 3 Model A+" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_3aplus +board_image: raspberry_pi_3aplus.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-3-model-a-plus/" -board_image: "raspberry_pi_3aplus.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-3-model-a-plus/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Pi 3 Model A+ +title: Raspberry Pi 3 Model A+ Download --- The Raspberry Pi 3 Model A+ is the latest board for the minimalist Pi fan. Like the Raspberry Pi 3 Model B+, it boasts a 64-bit quad core processor running at 1.4 GHz, dual-band 2.4 GHz and 5 GHz wireless LAN, and Bluetooth 4.3/BLE. This low-cost Pi uses the same processor as the model 3 B+, but does away with the Ethernet jack and three of the USB ports. It's still compatible with all Pi operating systems and software, and has the exact same 40 pin GPIO connector and camera/display sockets, so any HATs or Pi Plates or other things that plug into the model B+ will work just the same. diff --git a/_blinka/raspberry_pi_3b.md b/_blinka/raspberry_pi_3b.md index 2a21319360..b93392be51 100644 --- a/_blinka/raspberry_pi_3b.md +++ b/_blinka/raspberry_pi_3b.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "raspberry_pi_3bplus" -title: "Raspberry Pi 3 Model B Download" -name: "Pi 3 Model B" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_3bplus +board_image: raspberry_pi_3b.jpg board_url: - - "https://www.raspberrypi.org/products/raspberry-pi-3-model-b/" -board_image: "raspberry_pi_3b.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.org/products/raspberry-pi-3-model-b/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Pi 3 Model B +title: Raspberry Pi 3 Model B Download --- Did you really think the Raspberry Pi would stop getting better? At this point, we sound like a broken record, extolling on the new Pi’s myriad improvements like we’re surprised that the folks at the Raspberry Pi Foundation are continuously making their flagship board better. Still, we’ll say it again - the Raspberry Pi team have outdone themselves. The Raspberry Pi 3 Model B is out and it is AMAZING. diff --git a/_blinka/raspberry_pi_3bplus.md b/_blinka/raspberry_pi_3bplus.md index 5ee71a0a75..fc040b27d5 100644 --- a/_blinka/raspberry_pi_3bplus.md +++ b/_blinka/raspberry_pi_3bplus.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "raspberry_pi_3bplus" -title: "Raspberry Pi 3 Model B+ Download" -name: "Pi 3 Model B+" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_3bplus +board_image: raspberry_pi_3bplus.jpg board_url: - - "https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/" -board_image: "raspberry_pi_3bplus.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Pi 3 Model B+ +title: Raspberry Pi 3 Model B+ Download --- The Raspberry Pi 3 Model B+ is the most popular Raspberry Pi computer made, and the Pi Foundation knows you can always make a good thing better! And what could make the Pi 3 better? How about a faster processor, 5 GHz WiFi, and updated Ethernet chip with PoE capability? Good guess - that's exactly what they did! diff --git a/_blinka/raspberry_pi_400.md b/_blinka/raspberry_pi_400.md index c04c1ec198..7912135a6e 100644 --- a/_blinka/raspberry_pi_400.md +++ b/_blinka/raspberry_pi_400.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "raspberry_pi_400" -title: "Raspberry Pi 400 Desktop Download" -name: "Pi 400 Desktop" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_400 +board_image: raspberry_pi_400.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-400-unit" -board_image: "raspberry_pi_400.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-400-unit +date_added: 2020-11-02 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2020-11-2 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Raspberry Pi +name: Pi 400 Desktop +title: Raspberry Pi 400 Desktop Download --- Raspberry Pi 400 is your complete personal computer, built into a compact keyboard. Featuring a quad-core 64-bit processor, 4GB of RAM, wireless networking, dual-display output, and 4K video playback, as well as a 40-pin GPIO header, it's the most powerful and easy-to-use Raspberry Pi computer yet. diff --git a/_blinka/raspberry_pi_4b.md b/_blinka/raspberry_pi_4b.md index e6c556ac84..5289426b0a 100644 --- a/_blinka/raspberry_pi_4b.md +++ b/_blinka/raspberry_pi_4b.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "raspberry_pi_4b" -title: "Raspberry Pi 4 Model B Download" -name: "Pi 4 Model B" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_4b +board_image: raspberry_pi_4b.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-4-model-b/" -board_image: "raspberry_pi_4b.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-4-model-b/ +date_added: 2019-06-24 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-24 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Raspberry Pi +name: Pi 4 Model B +title: Raspberry Pi 4 Model B Download --- The Raspberry Pi 4 Model B is the newest Raspberry Pi computer made, and the Pi Foundation knows you can always make a good thing better! And what could make the Pi 4 better than the 3? How about a faster processor, USB 3.0 ports, and updated Gigabit Ethernet chip with PoE capability? Good guess - that's exactly what they did! diff --git a/_blinka/raspberry_pi_5.md b/_blinka/raspberry_pi_5.md index 0248a80bb0..fe70bbe37e 100644 --- a/_blinka/raspberry_pi_5.md +++ b/_blinka/raspberry_pi_5.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "raspberry_pi_5" -title: "Raspberry Pi 5 Download" -name: "Pi 5" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_5 +board_image: raspberry_pi_5.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-5/" -board_image: "raspberry_pi_5.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-5/ +date_added: 2023-10-27 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2023-10-27 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Raspberry Pi +name: Pi 5 +title: Raspberry Pi 5 Download --- The Raspberry Pi 5 is the newest Raspberry Pi computer, and the Pi Foundation knows you can always make a good thing better! And what could make the Pi 5 better than the 4? How about a faster processor, USB 3.0 ports, and an updated Gigabit Ethernet chip with PoE capability? Good guess - that's exactly what they did! diff --git a/_blinka/raspberry_pi_cm1.md b/_blinka/raspberry_pi_cm1.md index 866f6f1e78..b8e69b63c2 100644 --- a/_blinka/raspberry_pi_cm1.md +++ b/_blinka/raspberry_pi_cm1.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_cm1" -title: "Raspberry Pi Compute Module 1 Download" -name: "Compute Module 1" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_cm1 +board_image: raspberry_pi_cm1.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-1/" -board_image: "raspberry_pi_cm1.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/compute-module-1/ +date_added: 2019-06-24 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-24 features: - - HDMI/DisplayPort +- HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Compute Module 1 +title: Raspberry Pi Compute Module 1 Download --- The Compute Module is a Raspberry Pi in a more flexible form factor, intended for industrial application. diff --git a/_blinka/raspberry_pi_cm3.md b/_blinka/raspberry_pi_cm3.md index d7c0f2529f..4f5638a868 100644 --- a/_blinka/raspberry_pi_cm3.md +++ b/_blinka/raspberry_pi_cm3.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_cm3" -title: "Raspberry Pi Compute Module 3 Download" -name: "Compute Module 3" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_cm3 +board_image: raspberry_pi_cm3.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-3/" -board_image: "raspberry_pi_cm3.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/compute-module-3/ +date_added: 2019-06-24 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-24 features: - - HDMI/DisplayPort +- HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Compute Module 3 +title: Raspberry Pi Compute Module 3 Download --- The Compute Module 3 contains the guts of a Raspberry Pi 3 (the BCM2837 processor and 1GB RAM) as well as an optional 4GB eMMC Flash device (which is the equivalent of the SD card in the Pi). The Pi 3 has a processor speed of 1.2GHz and runs at roughly 10 times the speed of the Pi 1 due to its quad-core CPU. This is all integrated on to a small 67.6mm x 31mm board which fits into a standard DDR2 SODIMM connector (the same type of connector as used for laptop memory). The Flash memory is connected directly to the processor on the board, but the remaining processor interfaces are available to the user via the connector pins. You get the full flexibility of the BCM2837 SoC (which means that many more GPIOs and interfaces are available as compared to the Raspberry Pi), and designing the Module into a custom system should be relatively straightforward as we’ve put all the tricky bits onto the Module itself. diff --git a/_blinka/raspberry_pi_cm3lite.md b/_blinka/raspberry_pi_cm3lite.md index b58b49ca77..bbd0af722e 100644 --- a/_blinka/raspberry_pi_cm3lite.md +++ b/_blinka/raspberry_pi_cm3lite.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_cm3lite" -title: "Raspberry Pi Compute Module 3 Lite Download" -name: "Compute Module 3 Lite" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_cm3lite +board_image: raspberry_pi_cm3lite.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-3/" -board_image: "raspberry_pi_cm3lite.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/compute-module-3/ +date_added: 2019-06-24 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-24 features: - - HDMI/DisplayPort +- HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Compute Module 3 Lite +title: Raspberry Pi Compute Module 3 Lite Download --- The Compute Module 3 contains the guts of a Raspberry Pi 3 (the BCM2837 processor and 1GB RAM) as well as an optional 4GB eMMC Flash device (which is the equivalent of the SD card in the Pi). The Pi 3 has a processor speed of 1.2GHz and runs at roughly 10 times the speed of the Pi 1 due to its quad-core CPU. This is all integrated on to a small 67.6mm x 31mm board which fits into a standard DDR2 SODIMM connector (the same type of connector as used for laptop memory). The Flash memory is connected directly to the processor on the board, but the remaining processor interfaces are available to the user via the connector pins. You get the full flexibility of the BCM2837 SoC (which means that many more GPIOs and interfaces are available as compared to the Raspberry Pi), and designing the Module into a custom system should be relatively straightforward as we’ve put all the tricky bits onto the Module itself. diff --git a/_blinka/raspberry_pi_cm3plus.md b/_blinka/raspberry_pi_cm3plus.md index 9037ff7c07..2dbf190b11 100644 --- a/_blinka/raspberry_pi_cm3plus.md +++ b/_blinka/raspberry_pi_cm3plus.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_cm3plus" -title: "Raspberry Pi Compute Module 3+ Download" -name: "Compute Module 3+" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_cm3plus +board_image: raspberry_pi_cm3plus.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-3-plus/" -board_image: "raspberry_pi_cm3plus.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/compute-module-3-plus/ +date_added: 2019-06-24 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-24 features: - - HDMI/DisplayPort +- HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Compute Module 3+ +title: Raspberry Pi Compute Module 3+ Download --- The Compute Module is a Raspberry Pi in a more flexible form factor, intended for industrial application. CM3+ (Compute Module 3+) is the Raspberry Pi 3 B+-based revision of the original Compute Module. The big update to the CM3+ compared to the CM3 series is more eMMC Flash memory and the new heat spreader on the main processor which will let it run at full speed much faster without overheating. diff --git a/_blinka/raspberry_pi_cm3pluslite.md b/_blinka/raspberry_pi_cm3pluslite.md index b0cf0c16ba..c2a28ee6f6 100644 --- a/_blinka/raspberry_pi_cm3pluslite.md +++ b/_blinka/raspberry_pi_cm3pluslite.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_cm3pluslite" -title: "Raspberry Pi Compute Module 3+ Lite Download" -name: "Compute Module 3+ Lite" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_cm3pluslite +board_image: raspberry_pi_cm3pluslite.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-3-plus/" -board_image: "raspberry_pi_cm3pluslite.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/compute-module-3-plus/ +date_added: 2019-06-24 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-24 features: - - HDMI/DisplayPort +- HDMI/DisplayPort +layout: download +manufacturer: Raspberry Pi +name: Compute Module 3+ Lite +title: Raspberry Pi Compute Module 3+ Lite Download --- The Compute Module is a Raspberry Pi in a more flexible form factor, intended for industrial application. CM3+ (Compute Module 3+ Lite) is the Raspberry Pi 3 B+-based revision of the original Compute Module. The big update to the CM3+ compared to the CM3 series is the new heat spreader on the main processor which will let it run at full speed much faster without overheating. diff --git a/_blinka/raspberry_pi_cm4io.md b/_blinka/raspberry_pi_cm4io.md index 242c204c24..cc09954d02 100644 --- a/_blinka/raspberry_pi_cm4io.md +++ b/_blinka/raspberry_pi_cm4io.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "raspberry_pi_cm4io" -title: "Raspberry Pi Compute Module 4 IO Board Download" -name: "Compute Module 4 IO Board" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_cm4io +board_image: raspberrypi_cm4io.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-4-io-board/" -board_image: "raspberrypi_cm4io.jpg" -download_instructions: +- https://www.raspberrypi.com/products/compute-module-4-io-board/ +date_added: 2020-12-10 12:00:00 +download_instructions: null downloads_display: true -blinka: true -date_added: 2020-12-10 features: - - HDMI/DisplayPort - - Ethernet - - Wi-Fi - - 40-pin GPIO - - Bluetooth/BLE +- HDMI/DisplayPort +- Ethernet +- Wi-Fi +- 40-pin GPIO +- Bluetooth/BLE +layout: download +manufacturer: Raspberry Pi +name: Compute Module 4 IO Board +title: Raspberry Pi Compute Module 4 IO Board Download --- Compute Module 4 diff --git a/_blinka/raspberry_pi_pico.md b/_blinka/raspberry_pi_pico.md index efc18542c9..f71d729523 100644 --- a/_blinka/raspberry_pi_pico.md +++ b/_blinka/raspberry_pi_pico.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "raspberry_pi_pico" -title: "Pico Download" -name: "Pico" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_pico +board_image: raspberry_pi_pico.jpg board_url: - - "https://www.adafruit.com/product/4883" -board_image: "raspberry_pi_pico.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-micropython-using-the-raspberry-pi-pico" +- https://www.adafruit.com/product/4883 +date_added: 2021-05-20 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-libraries-on-micropython-using-the-raspberry-pi-pico downloads_display: true -blinka: true -date_added: 2021-5-20 +layout: download +manufacturer: Raspberry Pi +name: Pico +title: Pico Download --- The Raspberry Pi foundation changed single-board computing when they released the Raspberry Pi computer, now they're ready to do the same for microcontrollers with the release of the brand new **Raspberry Pi Pico**. This low-cost microcontroller board features a powerful new chip, the **RP2040**, and all the fixin's to get started with embedded electronics projects at a stress-free price. diff --git a/_blinka/raspberry_pi_zero.md b/_blinka/raspberry_pi_zero.md index 56a51e52c5..4fd942f8a6 100644 --- a/_blinka/raspberry_pi_zero.md +++ b/_blinka/raspberry_pi_zero.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "raspberry_pi_zero" -title: "Raspberry Pi Zero Download" -name: "Zero" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_zero +board_image: raspberry_pi_zero.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-zero/" -board_image: "raspberry_pi_zero.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-zero/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - HDMI/DisplayPort - 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Zero +title: Raspberry Pi Zero Download --- At first glance, the Pi Zero isn't much. It just looks like a slimmed down version of the Raspberry Pi we know and love. But when we started to think of the possibilities - and what a well-chosen set of accessories could add - we realized the appeal. And then we saw the price...could it be true? Yes! diff --git a/_blinka/raspberry_pi_zero_2_w.md b/_blinka/raspberry_pi_zero_2_w.md index 2871fa8873..f5cb4eabfe 100644 --- a/_blinka/raspberry_pi_zero_2_w.md +++ b/_blinka/raspberry_pi_zero_2_w.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "raspberry_pi_zero_2_w" -title: "Raspberry Pi Zero 2 W Download" -name: "Zero 2 W" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_zero_2_w +board_image: raspberry_pi_zero_2_w.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-zero-2-w/" -board_image: "raspberry_pi_zero_2_w.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-zero-2-w/ +date_added: 2021-11-01 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2021-11-1 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Zero 2 W +title: Raspberry Pi Zero 2 W Download --- **Raspberry Pi Zero 2 W** is the latest product in Raspberry Pi's most affordable range of single-board computers. The successor to the breakthrough Raspberry Pi Zero W, **Raspberry Pi Zero 2 W** is a form factor–compatible drop-in replacement for the original board. diff --git a/_blinka/raspberry_pi_zerow.md b/_blinka/raspberry_pi_zerow.md index 3f3d2372db..031382457a 100644 --- a/_blinka/raspberry_pi_zerow.md +++ b/_blinka/raspberry_pi_zerow.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "raspberry_pi_zerow" -title: "Raspberry Pi Zero W Download" -name: "Zero W" -manufacturer: "Raspberry Pi" +blinka: true +board_id: raspberry_pi_zerow +board_image: raspberry_pi_zerow.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-zero-w/" -board_image: "raspberry_pi_zerow.jpg" -download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi" +- https://www.raspberrypi.com/products/raspberry-pi-zero-w/ +date_added: 2019-06-17 12:00:00 +download_instructions: https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi downloads_display: true -blinka: true -date_added: 2019-6-17 features: - - Wi-Fi - - Bluetooth/BLE - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: Raspberry Pi +name: Zero W +title: Raspberry Pi Zero W Download --- If you didn't think that the Raspberry Pi Zero could possibly get any better, then boy do we have a pleasant surprise for you! The new Raspberry Pi Zero W offers all the benefits of the Pi Zero v1.3, but with one big difference – built-in WiFi! diff --git a/_blinka/rock_pi_4c.md b/_blinka/rock_pi_4c.md index 663dc0ede4..e6929cbed7 100644 --- a/_blinka/rock_pi_4c.md +++ b/_blinka/rock_pi_4c.md @@ -1,26 +1,26 @@ --- -layout: download -board_id: "rock_pi_4c" -title: "Rock Pi 4C Download" -name: "Rock Pi 4C" -manufacturer: "Radxa Limited" +blinka: true +board_id: rock_pi_4c +board_image: rock_pi_4c.jpg board_url: - - "https://wiki.radxa.com/Rockpi4" -board_image: "rock_pi_4c.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rockpi4 +date_added: 2021-04-06 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2021-4-6 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Rock Pi 4C +title: Rock Pi 4C Download --- - - Powerful Rockchip RK3399 64-bit Hexa-core processor for better multithread application performance +- Powerful Rockchip RK3399 64-bit Hexa-core processor for better multithread application performance - Mali T860MP4 Quad-core GPU for AI capabilities - Better IO performance with multiple storage options - Faster wireless connectivity with 2.4/5GHz Wi-Fi and Bluetooth 5.0 diff --git a/_blinka/rock_pi_4c_plus.md b/_blinka/rock_pi_4c_plus.md index 49f862bf99..a7505e6335 100644 --- a/_blinka/rock_pi_4c_plus.md +++ b/_blinka/rock_pi_4c_plus.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "rock_pi_4c_plus" -title: "ROCK Pi 4C+ Download" -name: "ROCK Pi 4C+" -manufacturer: "Radxa Limited" +blinka: true +board_id: rock_pi_4c_plus +board_image: rock_pi_4c_plus.jpg board_url: - - "https://wiki.radxa.com/Rock4/4cplus" -board_image: "rock_pi_4c_plus.jpg" -download_instructions: "" +- https://wiki.radxa.com/Rock4/4cplus +date_added: 2023-05-05 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2023-5-5 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: ROCK Pi 4C+ +title: ROCK Pi 4C+ Download --- ROCK Pi 4 Model C+ is a single board computer (SBC) by a Rockchip RK3399-T hexa-core processor @ 1.5 GHz, equipped with 4GB RAM, and two micro HDMI ports to drive up to one 4K display, and one 2K display. @@ -62,4 +62,4 @@ ROCK Pi 4 Model C+ provides support for Debian/Ubuntu Linux, Android 7.1/9.0/11 ## Purchase -* [OKdo](https://www.okdo.com/us/p/okdo-rock-4-model-c-4gb-single-board-computer-rockchip-rk3399-t-arm-cortex-a72-cortex-a53/) \ No newline at end of file +* [OKdo](https://www.okdo.com/us/p/okdo-rock-4-model-c-4gb-single-board-computer-rockchip-rk3399-t-arm-cortex-a72-cortex-a53/) diff --git a/_blinka/rock_pi_e.md b/_blinka/rock_pi_e.md index ab997f1cb2..b22b564227 100644 --- a/_blinka/rock_pi_e.md +++ b/_blinka/rock_pi_e.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "rock_pi_e" -title: "Rock Pi E Download" -name: "Rock Pi E" -manufacturer: "Radxa Limited" +blinka: true +board_id: rock_pi_e +board_image: rock_pi_e.jpg board_url: - - "https://wiki.radxa.com/RockpiE" -board_image: "rock_pi_e.jpg" -download_instructions: "" +- https://wiki.radxa.com/RockpiE +date_added: 2021-05-20 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2021-5-20 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - 40-pin GPIO - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- 40-pin GPIO +- USB 3.0 +layout: download +manufacturer: Radxa Limited +name: Rock Pi E +title: Rock Pi E Download --- E for Ethernets. diff --git a/_blinka/rock_pi_s.md b/_blinka/rock_pi_s.md index b6e4af772b..ae9dfea136 100644 --- a/_blinka/rock_pi_s.md +++ b/_blinka/rock_pi_s.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "rock_pi_s" -title: "Rock Pi S Download" -name: "Rock Pi S" -manufacturer: "Radxa Limited" +blinka: true +board_id: rock_pi_s +board_image: rock_pi_s.jpg board_url: - - "https://wiki.radxa.com/RockpiS" -board_image: "rock_pi_s.jpg" -download_instructions: "" +- https://wiki.radxa.com/RockpiS +date_added: 2020-04-29 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-4-29 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet +- Wi-Fi +- Bluetooth/BLE +- Ethernet +layout: download +manufacturer: Radxa Limited +name: Rock Pi S +title: Rock Pi S Download --- S is for Small Square. diff --git a/_blinka/siemens_simatic_iot2050.md b/_blinka/siemens_simatic_iot2050.md index 2f5d4b70ab..989c2cae88 100644 --- a/_blinka/siemens_simatic_iot2050.md +++ b/_blinka/siemens_simatic_iot2050.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "siemens_simatic_iot2050" -title: "SIMATIC IOT2050 Download" -name: "SIMATIC IOT2050" -manufacturer: "Siemens" +blinka: true +board_id: siemens_simatic_iot2050 +board_image: siemens_simatic_iot2050.jpg board_url: - - "https://iot2050.com/products/simatic-iot2050" -board_image: "siemens_simatic_iot2050.jpg" +- https://iot2050.com/products/simatic-iot2050 +date_added: 2022-10-06 12:00:00 downloads_display: true -blinka: true -date_added: 2022-10-6 features: - - Ethernet - - HDMI/DisplayPort +- Ethernet +- HDMI/DisplayPort +layout: download +manufacturer: Siemens +name: SIMATIC IOT2050 +title: SIMATIC IOT2050 Download --- SIMATIC IOT2050 is a versatile IOT edge device that allows you to connect PLCs on the factory floor to the cloud. A dual core or quad core processor gives you enough horse power to run analytics and decision making on the edge before you send off the data to the Cloud. diff --git a/_blinka/siemens_simatic_iot2050_advance.md b/_blinka/siemens_simatic_iot2050_advance.md index c34576b11a..94722bc1da 100644 --- a/_blinka/siemens_simatic_iot2050_advance.md +++ b/_blinka/siemens_simatic_iot2050_advance.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "siemens_simatic_iot2050_advance" -title: "SIMATIC IOT2050 Advance Download" -name: "SIMATIC IOT2050 Advance" -manufacturer: "Siemens" +blinka: true +board_id: siemens_simatic_iot2050_advance +board_image: siemens_simatic_iot2050.jpg board_url: - - "https://iot2050.com/products/simatic-iot2050-advance" -board_image: "siemens_simatic_iot2050.jpg" +- https://iot2050.com/products/simatic-iot2050-advance +date_added: 2022-10-06 12:00:00 downloads_display: true -blinka: true -date_added: 2022-10-6 features: - - Ethernet - - HDMI/DisplayPort +- Ethernet +- HDMI/DisplayPort +layout: download +manufacturer: Siemens +name: SIMATIC IOT2050 Advance +title: SIMATIC IOT2050 Advance Download --- SIMATIC IOT2050 Advance is a versatile IOT edge device that allows you to connect PLCs on the factory floor to the cloud. A quad core ARM processor, 20 digital IOs and 6 analog inputs gives you enough horse power to run analytics and decision making on the edge before you send off the data to the Cloud. diff --git a/_blinka/sopine_a64.md b/_blinka/sopine_a64.md index 038543a3d1..d6de2d1906 100644 --- a/_blinka/sopine_a64.md +++ b/_blinka/sopine_a64.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "sopine_a64" -title: "SOPINE A64 Download" -name: "SOPINE A64" -manufacturer: "Pine64" +blinka: true +board_id: sopine_a64 +board_image: sopine_a64.jpg board_url: - - "https://www.pine64.org/sopine/" -board_image: "sopine_a64.jpg" -download_instructions: "" +- https://www.pine64.org/sopine/ +date_added: 2020-11-18 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-11-18 - +layout: download +manufacturer: Pine64 +name: SOPINE A64 +title: SOPINE A64 Download --- SOPINE A64 is a compute module powered by the same Quad-Core ARM Cortex A53 64-Bit Processor used in the PINE A64 with 2G LPDDR3 RAM memory, Power Management Unit, SPI Flash and integrated MicroSD Slot (for bootable OS images microSD card). The SOPINE module has a 5 years LTS (Long Term Supply) status, which means that it will be supplied to 2022 at the very least. There is a one year warranty period for the SOPINE module. diff --git a/_blinka/stm32mp157c_dk2.md b/_blinka/stm32mp157c_dk2.md index c951e1a7f2..33db6aff77 100644 --- a/_blinka/stm32mp157c_dk2.md +++ b/_blinka/stm32mp157c_dk2.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "stm32mp157c_dk2" -title: "STM32MP1 Discovery Kit 2 Download" -name: "STM32MP1 Discovery Kit 2" -manufacturer: "STMicroelectronics" +blinka: true +board_id: stm32mp157c_dk2 +board_image: stm32mp157c_dk2.jpg board_url: - - "https://www.st.com/en/evaluation-tools/stm32mp157c-dk2.html" -board_image: "stm32mp157c_dk2.jpg" -download_instructions: "" +- https://www.st.com/en/evaluation-tools/stm32mp157c-dk2.html +date_added: 2020-09-10 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-9-10 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - 40-pin GPIO +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- 40-pin GPIO +layout: download +manufacturer: STMicroelectronics +name: STM32MP1 Discovery Kit 2 +title: STM32MP1 Discovery Kit 2 Download --- The STM32MP157A-DK1 and STM32MP157C-DK2 Discovery kits leverage the capabilities of STM32MP1 Series microprocessors to allow users easily develop applications using STM32 MPU OpenSTLinux Distribution software for the main processor and STM32CubeMP1 software for the co-processor. diff --git a/_blinka/udoo_x86_ii_ultra.md b/_blinka/udoo_x86_ii_ultra.md index 4b320b6926..2834a19267 100644 --- a/_blinka/udoo_x86_ii_ultra.md +++ b/_blinka/udoo_x86_ii_ultra.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "udoo_x86_ii_ultra" -title: "X86 II ULTRA Download" -name: "X86 II ULTRA" -manufacturer: "UDOO" +blinka: true +board_id: udoo_x86_ii_ultra +board_image: udoo_x86_ii_ultra.jpg board_url: - - "https://shop.udoo.org/udoo-x86-ii-ultra.html" -board_image: "udoo_x86_ii_ultra.jpg" -download_instructions: "" +- https://shop.udoo.org/udoo-x86-ii-ultra.html +date_added: 2020-08-17 12:00:00 +download_instructions: '' downloads_display: true -blinka: true -date_added: 2020-8-17 features: - - Wi-Fi - - Bluetooth/BLE - - Ethernet - - HDMI/DisplayPort - - USB 3.0 +- Wi-Fi +- Bluetooth/BLE +- Ethernet +- HDMI/DisplayPort +- USB 3.0 +layout: download +manufacturer: UDOO +name: X86 II ULTRA +title: X86 II ULTRA Download --- UDOO X86 II is the New PC: the most powerful x86 maker board ever and an Arduino™ Leonardo-compatible platform, all embedded on the same board. diff --git a/_board/01space_lcd042_esp32c3.md b/_board/01space_lcd042_esp32c3.md index 54f928509a..a8d0b79600 100644 --- a/_board/01space_lcd042_esp32c3.md +++ b/_board/01space_lcd042_esp32c3.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "01space_lcd042_esp32c3" -title: "ESP32-C3-0.42LCD Download" -name: "ESP32-C3-0.42LCD" -manufacturer: "01space" +board_id: 01space_lcd042_esp32c3 +board_image: 01space_lcd042_esp32c3.jpg board_url: - - "https://github.com/01Space/ESP32-C3-0.42LCD" -board_image: "01space_lcd042_esp32c3.jpg" -date_added: 2023-5-4 -family: esp32c3 +- https://github.com/01Space/ESP32-C3-0.42LCD +date_added: 2023-05-04 12:00:00 downloads_display: true +family: esp32c3 features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Wi-Fi - - Display +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Wi-Fi +- Display +layout: download +manufacturer: 01space +name: ESP32-C3-0.42LCD +title: ESP32-C3-0.42LCD Download --- The ESP32-C3-0.42LCD is an ESP32 C3 / RP2040 Raspberry Pi Pico Development board with 0.42 inch LCD risc-v WiFi Bluetooth. diff --git a/_board/0xcb_helios.md b/_board/0xcb_helios.md index 12f814f579..3a9005ea83 100644 --- a/_board/0xcb_helios.md +++ b/_board/0xcb_helios.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "0xcb_helios" -title: "0xCB Helios Download" -name: "Helios" -manufacturer: "0xCB" +board_id: 0xcb_helios +board_image: 0xcb_helios.jpg board_url: - - "https://github.com/0xCB-dev/0xCB-Helios" -board_image: "0xcb_helios.jpg" -date_added: 2023-01-05 +- https://github.com/0xCB-dev/0xCB-Helios +date_added: 2023-01-05 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: '0xCB' +name: Helios +title: 0xCB Helios Download --- The 0xCB Helios is our Elite-C compatible MicroController, based on the high-performance and affordable RP2040. diff --git a/_board/42keebs_frood.md b/_board/42keebs_frood.md index be76db0d60..3a44de1e11 100644 --- a/_board/42keebs_frood.md +++ b/_board/42keebs_frood.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "42keebs_frood" -title: "42. Keebs Frood Download" -name: "The Frood" -manufacturer: "42. Keebs" +board_id: 42keebs_frood +board_image: 42keebs_frood.jpg board_url: - - "https://github.com/piit79/frood" -board_image: "42keebs_frood.jpg" -date_added: 2022-10-26 +- https://github.com/piit79/frood +date_added: 2022-10-26 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: 42. Keebs +name: The Frood +title: 42. Keebs Frood Download --- The Frood is a high-performance and affordable drop-in replacement for the Pro Micro (used in many DIY custom mechanical keyboard kits), based on the Raspberry Pi RP2040. It is physically and electrically compatible with Elite-C/nice!nano as much as possible. diff --git a/_board/8086_commander.md b/_board/8086_commander.md index a580044983..ebef3a0125 100644 --- a/_board/8086_commander.md +++ b/_board/8086_commander.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "8086_commander" -title: "Commander Download" -name: "Commander" -manufacturer: "8086 Consultancy" +board_id: 8086_commander +board_image: 8086_commander.jpg board_url: - - "https://8086.net/p/commander" -board_image: "8086_commander.jpg" -date_added: 2020-3-24 -family: atmel-samd +- https://8086.net/p/commander bootloader_id: 8086_commander - +date_added: 2020-03-24 12:00:00 +family: atmel-samd +layout: download +manufacturer: 8086 Consultancy +name: Commander +title: Commander Download --- The Commander is a handheld button and LED board supplied with the UF2 bootloader and CircuitPython. @@ -27,4 +26,3 @@ The Commander is a handheld button and LED board supplied with the UF2 bootloade ## Purchase * [8086 Consultancy](https://www.tindie.com/products/8086net/commander/) - diff --git a/_board/ADM_B_NRF52840_1.md b/_board/ADM_B_NRF52840_1.md index 7afd1cb29b..b78f518bec 100644 --- a/_board/ADM_B_NRF52840_1.md +++ b/_board/ADM_B_NRF52840_1.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "ADM_B_NRF52840_1" -title: "ADM_52840 Breakout board for Holyiot_18010 Download" -name: "ADM_52840 Breakout board for Holyiot_18010" -manufacturer: "Atelier du Maker" +board_id: ADM_B_NRF52840_1 +board_image: ADM_B_NRF52840_1.jpg board_url: - - "https://anderson69s.com/portfolio/nrf52840-breakout-holyiot/" -board_image: "ADM_B_NRF52840_1.jpg" -date_added: 2020-10-30 +- https://anderson69s.com/portfolio/nrf52840-breakout-holyiot/ +date_added: 2020-10-30 12:00:00 family: nrf52840 +layout: download +manufacturer: Atelier du Maker +name: ADM_52840 Breakout board for Holyiot_18010 +title: ADM_52840 Breakout board for Holyiot_18010 Download --- The ADM_52840 is a Breakout board to test an NRF52840 module from HolyIOT. Nothing very difficult, apart from the soldering part which requires a stencil in order to solder all the pads of the module. However, since internal pads are routed using vias, it's possible to solder them all with a good soldering iron. It requires a J-link type programmer. An ST-Link V2 should be suitable or the J-Link of Nordic DK boards. @@ -16,4 +16,4 @@ The ADM_52840 is a Breakout board to test an NRF52840 module from HolyIOT. Nothi ## Learn More * [GitHub](https://github.com/Atelier-Du-Maker/ADM_52840) -* [anderson69s.com (French)](https://anderson69s.com/portfolio/nrf52840-breakout-holyiot/) \ No newline at end of file +* [anderson69s.com (French)](https://anderson69s.com/portfolio/nrf52840-breakout-holyiot/) diff --git a/_board/Seeed_XIAO_nRF52840_Sense.md b/_board/Seeed_XIAO_nRF52840_Sense.md index 0343b60a08..7db37ec185 100644 --- a/_board/Seeed_XIAO_nRF52840_Sense.md +++ b/_board/Seeed_XIAO_nRF52840_Sense.md @@ -1,24 +1,21 @@ --- -layout: download -board_id: "Seeed_XIAO_nRF52840_Sense" -title: "Seeed Studio XIAO nRF52840 (Sense) Download" -name: "Seeed Studio XIAO nRF52840 (Sense)" -manufacturer: "Seeed Studio" +board_id: Seeed_XIAO_nRF52840_Sense +board_image: Seeed_XIAO_nRF52840_Sense.jpg board_url: - - "https://www.seeedstudio.com/Seeed-XIAO-BLE-Sense-nRF52840-p-5253.html" -board_image: "Seeed_XIAO_nRF52840_Sense.jpg" -date_added: 2021-12-29 -family: nrf52840 +- https://www.seeedstudio.com/Seeed-XIAO-BLE-Sense-nRF52840-p-5253.html +date_added: 2021-12-29 12:00:00 downloads_display: true - - +family: nrf52840 features: - - Bluetooth/BTLE - - Breadboard-Friendly - - Battery Charging - - USB-C - - Xiao / QTPy Form Factor - +- Bluetooth/BTLE +- Breadboard-Friendly +- Battery Charging +- USB-C +- Xiao / QTPy Form Factor +layout: download +manufacturer: Seeed Studio +name: Seeed Studio XIAO nRF52840 (Sense) +title: Seeed Studio XIAO nRF52840 (Sense) Download --- Seeed Studio XIAO nRF52840 (Sense) has equipped a powerful Nordic nRF52840 MCU which is designed in a Bluetooth 5.0 module, built around 32-bit ARM® Cortex™-M4 CPU with Floating-Point Unit(FPU) operating at 64Mhz. With the capabilities of wireless connection, it still remains the Seeed Studio XIAO series classic form-factor of small and exquisite which can be used for wearable devices and Internet of Things projects. Furthermore, it only costs 5 μA in the deep sleep model and it supports battery charge management because of the BQ25101 chip. diff --git a/_board/TG-Watch.md b/_board/TG-Watch.md index 9e35b6554e..f648a01af3 100644 --- a/_board/TG-Watch.md +++ b/_board/TG-Watch.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "TG-Watch" -title: "TG-Watch Download" -name: "TG-Watch" -manufacturer: "TG-Techie" +board_id: TG-Watch +board_image: TG-Watch.jpg board_url: - - "https://github.com/TG-Techie/TG-Watch02-PCB" -board_image: "TG-Watch.jpg" -date_added: 2020-3-31 +- https://github.com/TG-Techie/TG-Watch02-PCB +date_added: 2020-03-31 12:00:00 family: atmel-samd features: - - Display - - Bluetooth/BTLE - - Battery Charging - - USB-C +- Display +- Bluetooth/BTLE +- Battery Charging +- USB-C +layout: download +manufacturer: TG-Techie +name: TG-Watch +title: TG-Watch Download --- Why buy an Apple watch when you can spend your weekends building a microcontroller based "smart" watch instead? The TG-Watch is an open source, not-dumb watch meant for makers who want to hack on their watch, people who want to bring Python with them everywhere, or as a great starting point to learn about programming. diff --git a/_board/adafruit_esp32s3_camera.md b/_board/adafruit_esp32s3_camera.md index 3209df7ac1..d8295555f5 100644 --- a/_board/adafruit_esp32s3_camera.md +++ b/_board/adafruit_esp32s3_camera.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_esp32s3_camera" -title: "MEMENTO - Python Programmable DIY Camera Download" -name: "MEMENTO - Python Programmable DIY Camera" -manufacturer: "Adafruit" +board_id: adafruit_esp32s3_camera +board_image: adafruit_esp32s3_camera.jpg board_url: - - "https://www.adafruit.com/product/5420" -board_image: "adafruit_esp32s3_camera.jpg" -date_added: 2023-10-27 -family: esp32s3 +- https://www.adafruit.com/product/5420 bootloader_id: adafruit_camera_esp32s3 +date_added: 2023-10-27 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Camera - - Display - - USB-C - - Battery Charging +- Wi-Fi +- Bluetooth/BTLE +- Camera +- Display +- USB-C +- Battery Charging +layout: download +manufacturer: Adafruit +name: MEMENTO - Python Programmable DIY Camera +title: MEMENTO - Python Programmable DIY Camera Download --- Make memories, or just a cool camera-based project, with **Adafruit's MEMENTO Camera Board**. It's a development board with everything you need to create programmable camera and vision projects: with a camera module, TFT preview screen, buttons, SD card slot and driven by a powerful ESP32-S3 with 2 MB of PSRAM for buffering 5 MegaPixel camera images. diff --git a/_board/adafruit_feather_esp32_v2.md b/_board/adafruit_feather_esp32_v2.md index ef412253db..60008a9a11 100644 --- a/_board/adafruit_feather_esp32_v2.md +++ b/_board/adafruit_feather_esp32_v2.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_esp32_v2" -title: "Adafruit Feather ESP32 V2 Download" -name: "Adafruit Feather ESP32 V2" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32_v2 +board_image: adafruit_feather_esp32_v2.jpg board_url: - - "https://www.adafruit.com/product/5400" -board_image: "adafruit_feather_esp32_v2.jpg" -date_added: 2022-8-19 -family: esp32 +- https://www.adafruit.com/product/5400 +date_added: 2022-08-19 12:00:00 downloads_display: true +family: esp32 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi - - USB-C - - Breadboard-Friendly - - STEMMA QT/QWIIC +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +- USB-C +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Adafruit Feather ESP32 V2 +title: Adafruit Feather ESP32 V2 Download --- One of our star Feathers is the [Adafruit HUZZAH32 ESP32 Feather](https://www.adafruit.com/product/3405) - with the fabulous ESP32 WROOM module on there, it makes quick work of WiFi and Bluetooth projects that take advantage of Espressifs most popular chipset. Recently we had to redesign this feather to move from the obsolete CP2104 to the available CH9102F and one thing led to another and before you know it we made a completely refreshed design: the **Adafruit ESP32 Feather V2**. diff --git a/_board/adafruit_feather_esp32c6_4mbflash_nopsram.md b/_board/adafruit_feather_esp32c6_4mbflash_nopsram.md index 11670804d9..8fb951c1b9 100644 --- a/_board/adafruit_feather_esp32c6_4mbflash_nopsram.md +++ b/_board/adafruit_feather_esp32c6_4mbflash_nopsram.md @@ -1,27 +1,26 @@ --- -layout: download -board_id: "adafruit_feather_esp32c6_4mbflash_nopsram" -title: "Feather ESP32-S6 4MB Flash No PSRAM Download" -name: "Feather ESP32-S6 4MB Flash No PSRAM" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32c6_4mbflash_nopsram +board_image: adafruit_feather_esp32c6_4mbflash_nopsram.jpg board_url: - - "https://www.adafruit.com/" -board_image: "adafruit_feather_esp32c6_4mbflash_nopsram.jpg" -date_added: 2024-3-18 -family: esp32c6 +- https://www.adafruit.com/ +date_added: 2024-03-18 12:00:00 downloads_display: true +family: esp32c6 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Breadboard-Friendly - +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S6 4MB Flash No PSRAM +title: Feather ESP32-S6 4MB Flash No PSRAM Download --- Coming soon from Adafruit, check out the weekly "Top Secret" segment on ASK AN ENGINEER or the upcoming new product videos on [YouTube](https://www.youtube.com/adafruit). ## Learn More -* [YouTube](https://youtu.be/FV0-gMT9uBA?si=yZjXHgKLal3B5I9-&t=130) \ No newline at end of file +* [YouTube](https://youtu.be/FV0-gMT9uBA?si=yZjXHgKLal3B5I9-&t=130) diff --git a/_board/adafruit_feather_esp32s2.md b/_board/adafruit_feather_esp32s2.md index 9949e004d3..2edc446f15 100644 --- a/_board/adafruit_feather_esp32s2.md +++ b/_board/adafruit_feather_esp32s2.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_feather_esp32s2" -title: "Feather ESP32-S2 Download" -name: "Feather ESP32-S2" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s2 +board_image: adafruit_feather_esp32s2.jpg board_url: - - "https://www.adafruit.com/product/5000" -board_image: "adafruit_feather_esp32s2.jpg" -date_added: 2021-4-6 -family: esp32s2 +- https://www.adafruit.com/product/5000 bootloader_id: adafruit_feather_esp32s2 +date_added: 2021-04-06 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S2 +title: Feather ESP32-S2 Download --- What's Feather-shaped and has an ESP32-S2 WiFi module? What has a STEMMA QT connector for I2C devices? What has your favorite Espressif WiFi microcontroller and lots of Flash and RAM memory for your next IoT project? What will make your next IoT project flyyyyy? diff --git a/_board/adafruit_feather_esp32s2_bme280.md b/_board/adafruit_feather_esp32s2_bme280.md index eb57f72a38..6328a94fa3 100644 --- a/_board/adafruit_feather_esp32s2_bme280.md +++ b/_board/adafruit_feather_esp32s2_bme280.md @@ -1,26 +1,25 @@ --- -layout: download -board_id: "adafruit_feather_esp32s2_bme280" -board_alias: "adafruit_feather_esp32s2" -title: "Feather ESP32-S2 with BME280 Sensor Download" -name: "Feather ESP32-S2 with BME280 Sensor" -manufacturer: "Adafruit" +board_alias: adafruit_feather_esp32s2 +board_id: adafruit_feather_esp32s2_bme280 +board_image: adafruit_feather_esp32s2_bme280.jpg board_url: - - "https://www.adafruit.com/product/5303" -board_image: "adafruit_feather_esp32s2_bme280.jpg" -date_added: 2021-12-6 -family: esp32s2 +- https://www.adafruit.com/product/5303 bootloader_id: adafruit_feather_esp32s2 +date_added: 2021-12-06 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S2 with BME280 Sensor +title: Feather ESP32-S2 with BME280 Sensor Download --- - What's Feather-shaped and has an ESP32-S2 WiFi module? What has a STEMMA QT connector for I2C devices and a built in ambient sensor? What has your favorite Espressif WiFi microcontroller and lots of Flash and RAM memory for your next IoT project? What will make your next IoT project sensor project flyyyyy? That's right - it's the new **Adafruit ESP32-S2 Feather with BME280** temperature/humidity/pressure sensor built right in! With native USB and 4 MB flash and 2 MB of PSRAM, this board is perfect for use with CircuitPython or Arduino with low-cost WiFi. Native USB means it can act like a keyboard or a disk drive. WiFi means its awesome for IoT projects. And Feather means it works with the large community of Feather Wings for expandability. diff --git a/_board/adafruit_feather_esp32s2_reverse_tft.md b/_board/adafruit_feather_esp32s2_reverse_tft.md index e603455043..d56d44dcc1 100644 --- a/_board/adafruit_feather_esp32s2_reverse_tft.md +++ b/_board/adafruit_feather_esp32s2_reverse_tft.md @@ -1,25 +1,25 @@ --- -layout: download -board_id: "adafruit_feather_esp32s2_reverse_tft" -title: "ESP32-S2 Reverse TFT Feather Download" -name: "ESP32-S2 Reverse TFT Feather" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s2_reverse_tft +board_image: adafruit_feather_esp32s2_reverse_tft.jpg board_url: - - "https://www.adafruit.com/product/5345" -board_image: "adafruit_feather_esp32s2_reverse_tft.jpg" -date_added: 2023-1-31 -family: esp32s2 +- https://www.adafruit.com/product/5345 bootloader_id: adafruit_feather_esp32s2_reverse_tft -tags: - - Feather ESP32-S2 Reverse TFT - - Reverse Feather TFT +date_added: 2023-01-31 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Display +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Display +layout: download +manufacturer: Adafruit +name: ESP32-S2 Reverse TFT Feather +tags: +- Feather ESP32-S2 Reverse TFT +- Reverse Feather TFT +title: ESP32-S2 Reverse TFT Feather Download --- Like Missy Elliot, we like to ["put our [Feather\] down, flip it and reverse it"](https://www.youtube.com/watch?v=cjIvu7e6Wq8) and that's exactly what we've done with this new development board. It's basically our **[ESP32-S2 TFT Feather](https://www.adafruit.com/product/5300)** but with the 240x135 color TFT display on the back-side not the front-side. That makes it great for panel-mounted projects, particularly since we've also got some space for 3 buttons to go along. It's like an all-in-one display interface dev board, powered by the fantastic ESP32-S2 WIFI module. diff --git a/_board/adafruit_feather_esp32s2_tft.md b/_board/adafruit_feather_esp32s2_tft.md index 23a97ecfc5..eaffb36d28 100644 --- a/_board/adafruit_feather_esp32s2_tft.md +++ b/_board/adafruit_feather_esp32s2_tft.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_esp32s2_tft" -title: "Feather ESP32-S2 with TFT Download" -name: "Feather ESP32-S2 with TFT" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s2_tft +board_image: adafruit_feather_esp32s2_tft.jpg board_url: - - "https://www.adafruit.com/product/5300" -board_image: "adafruit_feather_esp32s2_tft.jpg" -date_added: 2021-4-6 -family: esp32s2 +- https://www.adafruit.com/product/5300 bootloader_id: adafruit_feather_esp32s2_tft +date_added: 2021-04-06 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Display - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Display +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S2 with TFT +title: Feather ESP32-S2 with TFT Download --- We've got a new machine here at Adafruit, it can uncover your deepest desires. Don't believe me? I'll turn it on right now to prove it to you! What, you want unlimited mozzarella sticks? OK well, that's not something we can provide. But we can provide your *second*-deepest desire: an **ESP32-S2 Feather board with a built in IPS TFT color display**. It's got all the ~~gooeyness of a mozzarella stick~~ features of a Feather main board, the comforting warmth of an ESP32-S2 WiFi microcontroller, and the crispness of a 240x135 pixel color TFT display. All that and it will even plug in nicely into a breadboard, [terminal block wing](https://www.adafruit.com/product/2926), or [Feather Doubler](https://www.adafruit.com/product/2890) or even just stack on top of another wing. diff --git a/_board/adafruit_feather_esp32s3_4mbflash_2mbpsram.md b/_board/adafruit_feather_esp32s3_4mbflash_2mbpsram.md index e1bc56e4b1..119ec1163b 100644 --- a/_board/adafruit_feather_esp32s3_4mbflash_2mbpsram.md +++ b/_board/adafruit_feather_esp32s3_4mbflash_2mbpsram.md @@ -1,24 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_esp32s3_4mbflash_2mbpsram" -title: "Feather ESP32-S3 4MB Flash 2MB PSRAM Download" -name: "Feather ESP32-S3 4MB Flash 2MB PSRAM" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s3_4mbflash_2mbpsram +board_image: adafruit_feather_esp32s3_4mbflash_2mbpsram.jpg board_url: - - "https://www.adafruit.com/product/5477" -board_image: "adafruit_feather_esp32s3_4mbflash_2mbpsram.jpg" -date_added: 2022-6-9 -family: esp32s3 +- https://www.adafruit.com/product/5477 bootloader_id: adafruit_feather_esp32s3 +date_added: 2022-06-09 12:00:00 downloads_display: true +family: esp32s3 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Breadboard-Friendly - +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S3 4MB Flash 2MB PSRAM +title: Feather ESP32-S3 4MB Flash 2MB PSRAM Download --- The ESP32-S3 has arrived in Feather format - and what a great way to get started with this powerful new chip from Espressif! With dual 240 MHz cores, WiFi and BLE support, and native USB, this Feather is great for powering your IoT projects. diff --git a/_board/adafruit_feather_esp32s3_nopsram.md b/_board/adafruit_feather_esp32s3_nopsram.md index d0158d48b3..7f971606d3 100644 --- a/_board/adafruit_feather_esp32s3_nopsram.md +++ b/_board/adafruit_feather_esp32s3_nopsram.md @@ -1,24 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_esp32s3_nopsram" -title: "Feather ESP32-S3 No PSRAM Download" -name: "Feather ESP32-S3 No PSRAM" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s3_nopsram +board_image: adafruit_feather_esp32s3_nopsram.jpg board_url: - - "https://www.adafruit.com/product/5323" -board_image: "adafruit_feather_esp32s3_nopsram.jpg" -date_added: 2022-4-1 -family: esp32s3 +- https://www.adafruit.com/product/5323 bootloader_id: adafruit_feather_esp32s3_nopsram +date_added: 2022-04-01 12:00:00 downloads_display: true +family: esp32s3 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Breadboard-Friendly - +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S3 No PSRAM +title: Feather ESP32-S3 No PSRAM Download --- The ESP32-S3 has arrived in Feather format - and what a great way to get started with this powerful new chip from Espressif! With dual 240 MHz cores, WiFi and BLE support, and native USB, this Feather is great for powering your IoT projects. diff --git a/_board/adafruit_feather_esp32s3_reverse_tft.md b/_board/adafruit_feather_esp32s3_reverse_tft.md index 07f6853980..caa6981d81 100644 --- a/_board/adafruit_feather_esp32s3_reverse_tft.md +++ b/_board/adafruit_feather_esp32s3_reverse_tft.md @@ -1,25 +1,25 @@ --- -layout: download -board_id: "adafruit_feather_esp32s3_reverse_tft" -title: "ESP32-S3 Reverse TFT Feather Download" -name: "ESP32-S3 Reverse TFT Feather" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s3_reverse_tft +board_image: adafruit_feather_esp32s3_reverse_tft.jpg board_url: - - "https://www.adafruit.com/product/5691" -board_image: "adafruit_feather_esp32s3_reverse_tft.jpg" -date_added: 2023-1-31 -family: esp32s3 +- https://www.adafruit.com/product/5691 bootloader_id: adafruit_feather_esp32s3_reverse_tft -tags: - - Feather ESP32-S3 Reverse TFT - - Reverse Feather TFT +date_added: 2023-01-31 12:00:00 +family: esp32s3 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Display +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Display +layout: download +manufacturer: Adafruit +name: ESP32-S3 Reverse TFT Feather +tags: +- Feather ESP32-S3 Reverse TFT +- Reverse Feather TFT +title: ESP32-S3 Reverse TFT Feather Download --- Like Missy Elliot, we like to ["put our [Feather\] down, flip it and reverse it"](https://www.youtube.com/watch?v=cjIvu7e6Wq8) and that's exactly what we've done with this new development board. It's basically our **[ESP32-S3 TFT Feather](https://www.adafruit.com/product/5483)** but with the 240x135 color TFT display on the back-side not the front-side. That makes it great for panel-mounted projects, particularly since we've also got some space for 3 buttons to go along. It's like an all-in-one display interface dev board, powered by the fantastic ESP32-S3 WIFI module. @@ -52,4 +52,4 @@ For low power usages, the Feather has a *second* low-dropout 3.3V regulator. The ## Purchase -* [Adafruit](https://www.adafruit.com/product/5691) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5691) diff --git a/_board/adafruit_feather_esp32s3_tft.md b/_board/adafruit_feather_esp32s3_tft.md index 88b1093484..b9c3323b65 100644 --- a/_board/adafruit_feather_esp32s3_tft.md +++ b/_board/adafruit_feather_esp32s3_tft.md @@ -1,24 +1,24 @@ --- -layout: download -board_id: "adafruit_feather_esp32s3_tft" -title: "Feather ESP32-S3 TFT Download" -name: "Feather ESP32-S3 TFT PSRAM" -manufacturer: "Adafruit" +board_id: adafruit_feather_esp32s3_tft +board_image: adafruit_feather_esp32s3_tft.jpg board_url: - - "https://www.adafruit.com/product/5483" -board_image: "adafruit_feather_esp32s3_tft.jpg" -date_added: 2022-6-9 -family: esp32s3 +- https://www.adafruit.com/product/5483 bootloader_id: adafruit_feather_esp32s3_tft +date_added: 2022-06-09 12:00:00 downloads_display: true +family: esp32s3 features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C - - Display - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +- Display +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather ESP32-S3 TFT PSRAM +title: Feather ESP32-S3 TFT Download --- We've got a new machine here at Adafruit, it can uncover your deepest desires. Don't believe me? I'll turn it on right now to prove it to you! What, you want your very own soft serve ice cream machine? OK well, that's not something we can provide. But we can provide your *second*-deepest desire: an **ESP32-S*3* Feather board with a built in IPS TFT color display**. It's got all the delicious creamy goodness features of a Feather main board, the comforting warmth of an ESP32-S3 WiFi+BLE microcontroller, and the crispness of a 240x135 pixel color TFT display. All that and it will even plug in nicely into a breadboard, [terminal block wing](https://www.adafruit.com/product/2926), or [Feather Doubler](https://www.adafruit.com/product/2890) or even just stack on top of another wing. diff --git a/_board/adafruit_feather_huzzah32.md b/_board/adafruit_feather_huzzah32.md index ab6d6a7466..9a30d1708d 100644 --- a/_board/adafruit_feather_huzzah32.md +++ b/_board/adafruit_feather_huzzah32.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_feather_huzzah32" -title: "Adafruit Feather HUZZAH32 Download" -name: "Adafruit Feather HUZZAH32" -manufacturer: "Adafruit" +board_id: adafruit_feather_huzzah32 +board_image: adafruit_feather_huzzah32.jpg board_url: - - "https://www.adafruit.com/product/3707" -board_image: "adafruit_feather_huzzah32.jpg" -date_added: 2022-8-19 -family: esp32 +- https://www.adafruit.com/product/3707 +date_added: 2022-08-19 12:00:00 downloads_display: true +family: esp32 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Adafruit Feather HUZZAH32 +title: Adafruit Feather HUZZAH32 Download --- Aww yeah, it's the Feather you have been waiting for! The **HUZZAH32** is our ESP32-based Feather, made with the official WROOM32 module. We packed everything you love about Feathers: built in USB-to-Serial converter, automatic bootloader reset, Lithium Ion/Polymer charger, and just about all of the GPIOs brought out so you can use it with any of our Feather Wings. [We have other boards in the Feather family, check'em out here.](https://www.adafruit.com/feather) diff --git a/_board/adafruit_feather_rp2040.md b/_board/adafruit_feather_rp2040.md index 792b9b29e3..158a74a34c 100644 --- a/_board/adafruit_feather_rp2040.md +++ b/_board/adafruit_feather_rp2040.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "adafruit_feather_rp2040" -title: "Feather RP2040 Download" -name: "Feather RP2040" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040 +board_image: adafruit_feather_rp2040.jpg board_url: - - "https://www.adafruit.com/product/4884" -board_image: "adafruit_feather_rp2040.jpg" -date_added: 2021-1-21 +- https://www.adafruit.com/product/4884 +date_added: 2021-01-21 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather RP2040 +title: Feather RP2040 Download --- A new chip means a new Feather, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the Feather Treatment" and so we did! This Feather features the **RP2040**, and all niceties you know and love about Feather. diff --git a/_board/adafruit_feather_rp2040_can.md b/_board/adafruit_feather_rp2040_can.md index 94881b4a09..1916c6ad56 100644 --- a/_board/adafruit_feather_rp2040_can.md +++ b/_board/adafruit_feather_rp2040_can.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_can" -title: "Feather RP2040 CAN Bus Download" -name: "Feather RP2040 CAN Bus" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_can +board_image: adafruit_feather_rp2040_can.jpg board_url: - - "https://www.adafruit.com/product/5724" -board_image: "adafruit_feather_rp2040_can.jpg" -date_added: 2023-5-2 +- https://www.adafruit.com/product/5724 +date_added: 2023-05-02 12:00:00 family: raspberrypi -tags: - - CAN Bus Feather - - Feather CAN Bus features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather RP2040 CAN Bus +tags: +- CAN Bus Feather +- Feather CAN Bus +title: Feather RP2040 CAN Bus Download --- If you'd like quickly get started with CAN bus interfacing, with no soldering required, our **Adafruit RP2040 CAN Bus Feather** comes ready-to-rock with a microcontroller, CAN chipset and terminal blocks for instant gratification. [The controller used is the MCP26525 (aka a MCP2515 with built-in transciever), an extremely popular and well-supported chipset](https://www.microchip.com/en-us/product/MCP2515) that has drivers in Arduino and [CircuitPython](https://github.com/adafruit/Adafruit_CircuitPython_MCP2515) and only requires an SPI port and two pins for chip-select and IRQ. Use it to send and receive messages in either standard or extended format at up to 1 Mbps. diff --git a/_board/adafruit_feather_rp2040_dvi.md b/_board/adafruit_feather_rp2040_dvi.md index 916fe99a2a..f1e5794b14 100644 --- a/_board/adafruit_feather_rp2040_dvi.md +++ b/_board/adafruit_feather_rp2040_dvi.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_dvi" -title: "Feather RP2040 with DVI Output Port Download" -name: "Feather RP2040 with DVI Output Port" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_dvi +board_image: adafruit_feather_rp2040_dvi.jpg board_url: - - "https://www.adafruit.com/product/5710" -board_image: "adafruit_feather_rp2040_dvi.jpg" -date_added: 2023-3-27 +- https://www.adafruit.com/product/5710 +date_added: 2023-03-27 12:00:00 family: raspberrypi -tags: - - DVI Feather - - Feather DVI features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather RP2040 with DVI Output Port +tags: +- DVI Feather +- Feather DVI +title: Feather RP2040 with DVI Output Port Download --- Wouldn't it be cool if you could display images and graphics from a microcontroller directly to an HDMI monitor or television? We think so! So we designed this RP2040 Feather that has a digital video output (a.k.a DVI) that will work with any HDMI monitor or display. Note it doesn't do audio, just graphics! diff --git a/_board/adafruit_feather_rp2040_prop_maker.md b/_board/adafruit_feather_rp2040_prop_maker.md index 43ef8f028f..205d0e4823 100644 --- a/_board/adafruit_feather_rp2040_prop_maker.md +++ b/_board/adafruit_feather_rp2040_prop_maker.md @@ -1,26 +1,26 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_prop_maker" -title: "Feather RP2040 Prop-Maker Download" -name: "Feather RP2040 Prop-Maker" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_prop_maker +board_image: adafruit_feather_rp2040_prop_maker.jpg board_url: - - "https://www.adafruit.com/product/5768" -board_image: "adafruit_feather_rp2040_prop_maker.jpg" -date_added: 2023-5-4 +- https://www.adafruit.com/product/5768 +date_added: 2023-05-04 12:00:00 family: raspberrypi -tags: - - Propmaker Feather - - Prop-Maker Feather - - Prop Maker - - Feather Propmaker - - Feather Prop-Maker features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather RP2040 Prop-Maker +tags: +- Propmaker Feather +- Prop-Maker Feather +- Prop Maker +- Feather Propmaker +- Feather Prop-Maker +title: Feather RP2040 Prop-Maker Download --- The Adafruit Feather series gives you lots of options for a small, portable, rechargeable microcontroller board. By picking a feather and stacking on a FeatherWing you can create advanced projects quickly. One popular combo is our [Feather M4](https://www.adafruit.com/product/3857) or [Feather RP2040](https://www.adafruit.com/product/4884) with a [Prop-Maker FeatherWing](https://www.adafruit.com/product/3988) on top to create animatronics or props that boot up instantly and can drive LEDs, and small speakers. @@ -66,4 +66,4 @@ To make it easy to use for portable projects, we added a connector for any of ou ## Purchase -* [Adafruit](https://www.adafruit.com/product/5768) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5768) diff --git a/_board/adafruit_feather_rp2040_rfm69.md b/_board/adafruit_feather_rp2040_rfm69.md index 38a03f3e52..82863397ca 100644 --- a/_board/adafruit_feather_rp2040_rfm69.md +++ b/_board/adafruit_feather_rp2040_rfm69.md @@ -1,22 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_rfm" -title: "Feather RP2040 RFM69 Board Download" -name: "Feather RP2040 RFM69" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_rfm +board_image: adafruit_feather_rp2040_rfm69.jpg board_url: - - "https://www.adafruit.com/product/5712" -board_image: "adafruit_feather_rp2040_rfm69.jpg" -date_added: 2023-4-4 +- https://www.adafruit.com/product/5712 +date_added: 2023-04-04 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Battery Charging - - LoRa/Radio - - USB-C - - Breadboard-Friendly - - STEMMA QT/QWIIC +- Feather-Compatible +- Battery Charging +- LoRa/Radio +- USB-C +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 RFM69 +title: Feather RP2040 RFM69 Board Download --- + This is the Adafruit Feather RP2040 RFM69. We call these RadioFruits, our take on a microcontroller with packet radio transceiver with built-in USB and battery charging. It's an Adafruit Feather RP2040 with a radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi. Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here. @@ -63,4 +64,4 @@ To make it easy to use for portable projects, we added a connector for any of ou ## Purchase -* [Adafruit](https://www.adafruit.com/product/5712) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5712) diff --git a/_board/adafruit_feather_rp2040_rfm9x.md b/_board/adafruit_feather_rp2040_rfm9x.md index 7c63ab6ad4..251588d7a7 100644 --- a/_board/adafruit_feather_rp2040_rfm9x.md +++ b/_board/adafruit_feather_rp2040_rfm9x.md @@ -1,23 +1,24 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_rfm9x" -board_alias: "adafruit_feather_rp2040_rfm" -title: "Feather RP2040 RFM9x Board Download" -name: "Feather RP2040 RFM9x" -manufacturer: "Adafruit" +board_alias: adafruit_feather_rp2040_rfm +board_id: adafruit_feather_rp2040_rfm9x +board_image: adafruit_feather_rp2040_rfm9x.jpg board_url: - - "https://www.adafruit.com/product/5714" -board_image: "adafruit_feather_rp2040_rfm9x.jpg" -date_added: 2023-4-4 +- https://www.adafruit.com/product/5714 +date_added: 2023-04-04 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Battery Charging - - LoRa/Radio - - USB-C - - Breadboard-Friendly - - STEMMA QT/QWIIC +- Feather-Compatible +- Battery Charging +- LoRa/Radio +- USB-C +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Feather RP2040 RFM9x +title: Feather RP2040 RFM9x Board Download --- + This is the Adafruit Feather RP2040 RFM9x. We call these RadioFruits, our take on a microcontroller with packet radio transceiver with built-in USB and battery charging. It's an Adafruit Feather RP2040 with a radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi. Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here. @@ -62,4 +63,4 @@ To make it easy to use for portable projects, we added a connector for any of ou ## Purchase -* [Adafruit](https://www.adafruit.com/product/5714) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5714) diff --git a/_board/adafruit_feather_rp2040_scorpio.md b/_board/adafruit_feather_rp2040_scorpio.md index 0eda80853f..64282a5e21 100644 --- a/_board/adafruit_feather_rp2040_scorpio.md +++ b/_board/adafruit_feather_rp2040_scorpio.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_scorpio" -title: "Feather RP2040 SCORPIO Download" -name: "Feather RP2040 SCORPIO" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_scorpio +board_image: adafruit_feather_rp2040_scorpio.jpg board_url: - - "https://www.adafruit.com/product/5650" -board_image: "adafruit_feather_rp2040_scorpio.jpg" -date_added: 2022-12-23 +- https://www.adafruit.com/product/5650 +date_added: 2022-12-23 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather RP2040 SCORPIO +title: Feather RP2040 SCORPIO Download --- If there is one thing Adafruit is known for, its mega-blinky-fun-rainbow-LEDs. [We just love sticking NeoPixels anywhere and everywhere](https://www.adafruit.com/category/168). When we saw the new 'PIO' peripheral on[ the RP2040 from Raspberry Pi](https://www.adafruit.com/category/875), we just knew it would be perfect for driving large quantities of NeoPixels. So we created this board, the **Adafruit Feather RP2040 SCORPIO**, designed specifically for NeoPixel (WS2812) driving but also good for various other PIO-based projects that want to take advantage of the Feather pinout with 8 separate consecutive outputs (or inputs). diff --git a/_board/adafruit_feather_rp2040_thinkink.md b/_board/adafruit_feather_rp2040_thinkink.md index 0c60a88f95..3ab9767492 100644 --- a/_board/adafruit_feather_rp2040_thinkink.md +++ b/_board/adafruit_feather_rp2040_thinkink.md @@ -1,26 +1,26 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_thinkink" -title: "Feather RP2040 ThinkInk Download" -name: "Feather RP2040 ThinkInk" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_thinkink +board_image: adafruit_feather_rp2040_thinkink.jpg board_url: - - "https://www.adafruit.com/product/5727" -board_image: "adafruit_feather_rp2040_thinkink.jpg" -date_added: 2023-5-2 +- https://www.adafruit.com/product/5727 +date_added: 2023-05-02 12:00:00 family: raspberrypi -tags: - - ThinkInk Feather - - Feather ThinkInk - - epd - - epaper features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - External Display +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- External Display +layout: download +manufacturer: Adafruit +name: Feather RP2040 ThinkInk +tags: +- ThinkInk Feather +- Feather ThinkInk +- epd +- epaper +title: Feather RP2040 ThinkInk Download --- Easy e-paper and RP2040 finally come to your Feather with this Adafruit RP2040 Feather Think Ink that's designed to make it a breeze to add almost any common e-Ink/e-Paper display. Chances are you've seen one of those new-fangled 'e-readers' like the Kindle or Nook. They have gigantic electronic paper 'static' displays - that means the image stays on the display even when power is completely disconnected. The image is also high contrast and very daylight readable. It really does look just like printed paper! diff --git a/_board/adafruit_feather_rp2040_usb_host.md b/_board/adafruit_feather_rp2040_usb_host.md index 3d72010ebc..37ff4eab48 100644 --- a/_board/adafruit_feather_rp2040_usb_host.md +++ b/_board/adafruit_feather_rp2040_usb_host.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_feather_rp2040_usb_host" -title: "Feather RP2040 with USB Type A Host Download" -name: "Feather RP2040 with USB Type A Host" -manufacturer: "Adafruit" +board_id: adafruit_feather_rp2040_usb_host +board_image: adafruit_feather_rp2040_usb_host.jpg board_url: - - "https://www.adafruit.com/product/5723" -board_image: "adafruit_feather_rp2040_usb_host.jpg" -date_added: 2023-5-2 +- https://www.adafruit.com/product/5723 +date_added: 2023-05-02 12:00:00 family: raspberrypi -tags: - - USB Host Feather - - Feather USB Host features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather RP2040 with USB Type A Host +tags: +- USB Host Feather +- Feather USB Host +title: Feather RP2040 with USB Type A Host Download --- You're probably really used to microcontroller boards with USB, but what about a dev board with two? Two is more than one, so that makes it twice as good! And the Adafruit Feather RP2040 with USB Host is definitely double-the-fun of our other Feather RP2040 boards, with a USB Type A port on the end for connecting USB devices to. diff --git a/_board/adafruit_floppsy_rp2040.md b/_board/adafruit_floppsy_rp2040.md index adf47bfa3d..b72d7e65f7 100644 --- a/_board/adafruit_floppsy_rp2040.md +++ b/_board/adafruit_floppsy_rp2040.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "adafruit_floppsy_rp2040" -title: "Adafruit Floppsy RP2040 Download" -name: "Adafruit Floppsy RP2040" -manufacturer: "Adafruit" +board_id: adafruit_floppsy_rp2040 +board_image: adafruit_floppsy_rp2040.jpg board_url: - - "https://www.adafruit.com/" -board_image: "adafruit_floppsy_rp2040.jpg" -date_added: 2024-3-13 +- https://www.adafruit.com/ +date_added: 2024-03-13 12:00:00 family: raspberrypi features: - - Display - - USB-C +- Display +- USB-C +layout: download +manufacturer: Adafruit +name: Adafruit Floppsy RP2040 +title: Adafruit Floppsy RP2040 Download --- Coming soon from Adafruit, check out the weekly "Top Secret" segment on ASK AN ENGINEER or the upcoming new product videos on [YouTube](https://www.youtube.com/adafruit). ## Learn More -* [YouTube](https://youtu.be/qldx4CtDDGs?si=ceHoqA7LALtyojni) \ No newline at end of file +* [YouTube](https://youtu.be/qldx4CtDDGs?si=ceHoqA7LALtyojni) diff --git a/_board/adafruit_funhouse.md b/_board/adafruit_funhouse.md index fc494de700..e5267a65db 100644 --- a/_board/adafruit_funhouse.md +++ b/_board/adafruit_funhouse.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_funhouse" -title: "FunHouse - WiFi Home Automation Development Board Download" -name: "FunHouse - WiFi Home Automation Development Board" -manufacturer: "Adafruit" +board_id: adafruit_funhouse +board_image: adafruit_funhouse.jpg board_url: - - "https://www.adafruit.com/product/4985" - - "https://www.adafruit.com/product/5069" -board_image: "adafruit_funhouse.jpg" -date_added: 2021-4-6 -family: esp32s2 +- https://www.adafruit.com/product/4985 +- https://www.adafruit.com/product/5069 bootloader_id: adafruit_funhouse_esp32s2 +date_added: 2021-04-06 12:00:00 +family: esp32s2 features: - - Wi-Fi - - STEMMA QT/QWIIC - - Speaker - - Display - - USB-C +- Wi-Fi +- STEMMA QT/QWIIC +- Speaker +- Display +- USB-C +layout: download +manufacturer: Adafruit +name: FunHouse - WiFi Home Automation Development Board +title: FunHouse - WiFi Home Automation Development Board Download --- Home is where the heart is...it's also where all we keep all our electronic bits. So why not wire it up with sensors and actuators to turn our house into an electronic wonderland. Whether it's tracking the environmental temperature and humidity in your laundry room, or notifying you when someone is detected in the kitchen, to sensing when a window was left open, or logging when your cat leaves through the pet door, this board is designed to make it way easy to make WiFi-connected home automation projects. diff --git a/_board/adafruit_huzzah32_breakout.md b/_board/adafruit_huzzah32_breakout.md index 0ae09c9af8..1ae77ebcf0 100644 --- a/_board/adafruit_huzzah32_breakout.md +++ b/_board/adafruit_huzzah32_breakout.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_huzzah32_breakout" -title: "Adafruit HUZZAH32 Breakout Download" -name: "Adafruit HUZZAH32 Breakout" -manufacturer: "Adafruit" +board_id: adafruit_huzzah32_breakout +board_image: adafruit_huzzah32_breakout.jpg board_url: - - "https://www.adafruit.com/product/4172" -board_image: "adafruit_huzzah32_breakout.jpg" -date_added: 2023-3-1 -family: esp32 +- https://www.adafruit.com/product/4172 +date_added: 2023-03-01 12:00:00 downloads_display: true +family: esp32 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Adafruit HUZZAH32 Breakout +title: Adafruit HUZZAH32 Breakout Download --- Squeeeeze down your next ESP32 project to its bare-bones essential with the **Adafruit HUZZAH32 Breakout**. This breakout is basically the 'big sister' of our HUZZAH 8266, but instead of an ESP8266 it has the '32! We've pared down our popular [Feather ESP32](https://www.adafruit.com/product/3405), removing the battery charger and USB-serial converter. You just get a regulator, some protection diodes, two buttons and an LED. For some projects, where price and size are at a premium, you can program this board over the 'FTDI cable' breakout when needed, and leave it alone otherwise. diff --git a/_board/adafruit_itsybitsy_esp32.md b/_board/adafruit_itsybitsy_esp32.md index 92842aa378..9d09e0ab83 100644 --- a/_board/adafruit_itsybitsy_esp32.md +++ b/_board/adafruit_itsybitsy_esp32.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "adafruit_itsybitsy_esp32" -title: "Adafruit ItsyBitsy ESP32 Download" -name: "Adafruit ItsyBitsy ESP32" -manufacturer: "Adafruit" +board_id: adafruit_itsybitsy_esp32 +board_image: adafruit_itsybitsy_esp32.jpg board_url: - - "https://www.adafruit.com/product/5889" -board_image: "adafruit_itsybitsy_esp32.jpg" -date_added: 2024-2-20 -family: esp32 +- https://www.adafruit.com/product/5889 +date_added: 2024-02-20 12:00:00 downloads_display: true +family: esp32 features: - - Bluetooth/BTLE - - Wi-Fi - - Breadboard-Friendly - - STEMMA QT/QWIIC +- Bluetooth/BTLE +- Wi-Fi +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Adafruit ItsyBitsy ESP32 +title: Adafruit ItsyBitsy ESP32 Download --- What's smaller than a Feather but larger than a Trinket? It's an Adafruit ItsyBitsy ESP32, a powerful processor PCB with a plethora of pins! It features the ESP32 Pico module, an FCC-certified module that contains an ESP32 chip with dual-core 240MHz Tensilica processor, WiFi, and Bluetooth classic + BLE, configured with 8 MB of Flash memory, and 2 MB of PSRAM. diff --git a/_board/adafruit_itsybitsy_rp2040.md b/_board/adafruit_itsybitsy_rp2040.md index fbcf9d4a2e..fed81a74b1 100644 --- a/_board/adafruit_itsybitsy_rp2040.md +++ b/_board/adafruit_itsybitsy_rp2040.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "adafruit_itsybitsy_rp2040" -title: "ItsyBitsy RP2040 Download" -name: "ItsyBitsy RP2040" -manufacturer: "Adafruit" +board_id: adafruit_itsybitsy_rp2040 +board_image: adafruit_itsybitsy_rp2040.jpg board_url: - - "https://www.adafruit.com/product/4888" -board_image: "adafruit_itsybitsy_rp2040.jpg" -date_added: 2021-4-6 +- https://www.adafruit.com/product/4888 +date_added: 2021-04-06 12:00:00 family: raspberrypi features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: ItsyBitsy RP2040 +title: ItsyBitsy RP2040 Download --- A new chip means a new ItsyBitsy, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the ItsyBitsy teensy-weensy Treatment" and so we did! This Itsy' features the RP2040, and all niceties you know and love about the [ItsyBitsy family](https://www.adafruit.com/category/1008). diff --git a/_board/adafruit_kb2040.md b/_board/adafruit_kb2040.md index fa885737d7..3a1944f72e 100644 --- a/_board/adafruit_kb2040.md +++ b/_board/adafruit_kb2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "adafruit_kb2040" -title: "Adafruit KB2040 Download" -name: "Adafruit KB2040" -manufacturer: "Adafruit" +board_id: adafruit_kb2040 +board_image: adafruit_kb2040.jpg board_url: - - "https://www.adafruit.com/product/5302" -board_image: "adafruit_kb2040.jpg" -date_added: 2021-11-15 +- https://www.adafruit.com/product/5302 +date_added: 2021-11-15 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Adafruit KB2040 +title: Adafruit KB2040 Download --- A wild Kee Boar appears! It’s a shiny **KB2040**! An Arduino Pro Micro-shaped board for Keebs with RP2040. (#keeblife 4 evah) A lot of folks like using Adafruit parts for their Keeb builds – but with the ItsyBitsy not being pin-compatible with the Pro Micro pinout, it really wasn't very easy without some sort of adapter plate. diff --git a/_board/adafruit_led_glasses_nrf52840.md b/_board/adafruit_led_glasses_nrf52840.md index a2da2d7a01..5fca5eeb96 100644 --- a/_board/adafruit_led_glasses_nrf52840.md +++ b/_board/adafruit_led_glasses_nrf52840.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_led_glasses_nrf52840" -title: "LED Glasses Download" -name: "LED Glasses " -manufacturer: "Adafruit" +board_id: adafruit_led_glasses_nrf52840 +board_image: adafruit_led_glasses_nrf52840.jpg board_url: - - "https://www.adafruit.com/product/5217" - - "https://www.adafruit.com/product/5255" -board_image: "adafruit_led_glasses_nrf52840.jpg" -date_added: 2021-9-3 -family: nrf52840 +- https://www.adafruit.com/product/5217 +- https://www.adafruit.com/product/5255 bootloader_id: ledglasses_nrf52840 +date_added: 2021-09-03 12:00:00 +family: nrf52840 features: - - USB-C - - Bluetooth/BTLE - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly +- USB-C +- Bluetooth/BTLE +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: 'LED Glasses ' +title: LED Glasses Download --- This board is designed to be a thin, bluetooth-enabled driver board for our [Adafruit LED Glasses](https://www.adafruit.com/product/5210) RGB LED matrix. That said, it's a perfectly good stand-alone development board for the Nordic nRF52840 chipset, with a very slim design, optional LiPo battery support, a few sensors, and a Stemma QT port for adding other devices or sensors with I2C plug-and-play. diff --git a/_board/adafruit_macropad_rp2040.md b/_board/adafruit_macropad_rp2040.md index 0e19909942..f34201a0a3 100644 --- a/_board/adafruit_macropad_rp2040.md +++ b/_board/adafruit_macropad_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "adafruit_macropad_rp2040" -title: "MacroPad RP2040 Download" -name: "MacroPad RP2040" -manufacturer: "Adafruit" +board_id: adafruit_macropad_rp2040 +board_image: adafruit_macropad_rp2040.jpg board_url: - - "https://www.adafruit.com/product/5128" - - "https://www.adafruit.com/product/5100" -board_image: "adafruit_macropad_rp2040.jpg" -date_added: 2021-6-4 +- https://www.adafruit.com/product/5128 +- https://www.adafruit.com/product/5100 +date_added: 2021-06-04 12:00:00 family: raspberrypi features: - - USB-C - - STEMMA QT/QWIIC +- USB-C +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: MacroPad RP2040 +title: MacroPad RP2040 Download --- Strap yourself in, we're launching in T-minus 10 seconds...Destination? A new Class M planet called MACROPAD! M here, stands for Microcontroller because this 3x4 keyboard controller features the newest technology from the Raspberry Pi sector: say hello to the RP2040. It's speedy little microcontroller with lots of GPIO pins and a 64 times more RAM than the Apollo Guidance Computer. We added 8 MB of flash memory for plenty of storage. diff --git a/_board/adafruit_magtag_2.9_grayscale.md b/_board/adafruit_magtag_2.9_grayscale.md index 6d797e3242..bd42a7a50b 100644 --- a/_board/adafruit_magtag_2.9_grayscale.md +++ b/_board/adafruit_magtag_2.9_grayscale.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_magtag_2.9_grayscale" -title: "MagTag - 2.9\" Grayscale E-Ink WiFi Display Download" -name: "MagTag - 2.9\" Grayscale E-Ink WiFi Display" -manufacturer: "Adafruit" +board_id: adafruit_magtag_2.9_grayscale +board_image: adafruit_magtag_2.9_grayscale.jpg board_url: - - "https://www.adafruit.com/product/4800" - - "https://www.adafruit.com/product/4819" -board_image: "adafruit_magtag_2.9_grayscale.jpg" -date_added: 2020-11-10 -family: esp32s2 +- https://www.adafruit.com/product/4800 +- https://www.adafruit.com/product/4819 bootloader_id: adafruit_magtag_29gray +date_added: 2020-11-10 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - Speaker - - Display - - USB-C +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- Speaker +- Display +- USB-C +layout: download +manufacturer: Adafruit +name: MagTag - 2.9" Grayscale E-Ink WiFi Display +title: MagTag - 2.9" Grayscale E-Ink WiFi Display Download --- The Adafruit MagTag combines the new ESP32-S2 wireless module and a 2.9" grayscale E-Ink display to make a low-power IoT display that can show data on its screen even when power is removed! The ESP32-S2 is great because it builds on the years of code and support for the ESP32 and also adds native USB support so you can use this board with Arduino _or_ CircuitPython! diff --git a/_board/adafruit_matrixportal_s3.md b/_board/adafruit_matrixportal_s3.md index ceb7ec87b8..61ad295d56 100644 --- a/_board/adafruit_matrixportal_s3.md +++ b/_board/adafruit_matrixportal_s3.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_matrixportal_s3" -title: " MatrixPortal S3 Download" -name: "MatrixPortal S3" -manufacturer: "Adafruit" +board_id: adafruit_matrixportal_s3 +board_image: adafruit_matrixportal_s3.jpg board_url: - - "https://www.adafruit.com/product/5778" -board_image: "adafruit_matrixportal_s3.jpg" -date_added: 2023-6-26 -family: esp32s3 +- https://www.adafruit.com/product/5778 bootloader_id: adafruit_matrixportal_s3 -tags: - - Matrix Portal +date_added: 2023-06-26 12:00:00 +family: esp32s3 features: - - External Display - - Wi-Fi - - Bluetooth/BTLE - - STEMMA QT/QWIIC - - USB-C +- External Display +- Wi-Fi +- Bluetooth/BTLE +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: Adafruit +name: MatrixPortal S3 +tags: +- Matrix Portal +title: ' MatrixPortal S3 Download' --- Folks love our [wide selection of RGB matrices](https://www.adafruit.com/category/327) and accessories for making custom colorful LED displays... and our RGB Matrix Shields and FeatherWings can be quickly soldered together to make the wiring much easier. But what if we made it *even easier* than that? **Like, no solder, no wiring, just instant plug-and-play?** Dream no more - with the **Adafruit Matrix Portal S3 add-on for RGB Matrices**, there's never been an easier way to create powerful Internet-connected LED displays. @@ -52,4 +52,4 @@ Comes with one fully programmed and assembled MatrixPortal, preprogrammed with a ## Purchase: -* [Adafruit](https://www.adafruit.com/product/5778) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5778) diff --git a/_board/adafruit_metro_esp32s2.md b/_board/adafruit_metro_esp32s2.md index 97a1bc3d19..98c9027f4a 100644 --- a/_board/adafruit_metro_esp32s2.md +++ b/_board/adafruit_metro_esp32s2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "adafruit_metro_esp32s2" -title: " Metro ESP32-S2 Download" -name: "Metro ESP32-S2" -manufacturer: "Adafruit" +board_id: adafruit_metro_esp32s2 +board_image: adafruit_metro_esp32s2.jpg board_url: - - "https://www.adafruit.com/product/4775" -board_image: "adafruit_metro_esp32s2.jpg" -date_added: 2020-10-2 -family: esp32s2 +- https://www.adafruit.com/product/4775 bootloader_id: adafruit_metro_esp32s2 +date_added: 2020-10-02 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Arduino Shield Compatible +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro ESP32-S2 +title: ' Metro ESP32-S2 Download' --- What's Metro shaped and has an ESP32-S2 WiFi module? What has a STEMMA QT connector for I2C devices, and a Lipoly charger circuit? What's finishing up testing and nearly ready for fabrication? That's right - its the new Adafruit Metro ESP32-S2! With native USB and a load of PSRAM this board is perfect for use with CircuitPython or Arduino, to add low-cost WiFi while keeping shield-compatibility. diff --git a/_board/adafruit_metro_esp32s3.md b/_board/adafruit_metro_esp32s3.md index 5f16427748..5dab36f8af 100644 --- a/_board/adafruit_metro_esp32s3.md +++ b/_board/adafruit_metro_esp32s3.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "adafruit_metro_esp32s3" -title: " Metro ESP32-S3 Download" -name: "Metro ESP32-S3" -manufacturer: "Adafruit" +board_id: adafruit_metro_esp32s3 +board_image: adafruit_metro_esp32s3.jpg board_url: - - "https://www.adafruit.com/product/5500" -board_image: "adafruit_metro_esp32s3.jpg" -date_added: 2023-7-28 -family: esp32s3 +- https://www.adafruit.com/product/5500 bootloader_id: adafruit_metro_esp32s3 +date_added: 2023-07-28 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Arduino Shield Compatible +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro ESP32-S3 +title: ' Metro ESP32-S3 Download' --- What's Metro-shaped and has an ESP32-S3 WiFi module? What has a STEMMA QT connector for I2C devices and a Lipoly charger circuit? What has your favorite Espressif WiFi microcontroller and lots of memory for your next IoT project? diff --git a/_board/adafruit_metro_m7_1011_sd.md b/_board/adafruit_metro_m7_1011_sd.md index 7a45d35fc1..44b2143635 100644 --- a/_board/adafruit_metro_m7_1011_sd.md +++ b/_board/adafruit_metro_m7_1011_sd.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "adafruit_metro_m7_1011_sd" -title: "Metro M7 with microSD Download" -name: "Metro M7 with microSD" -manufacturer: "Adafruit" +board_id: adafruit_metro_m7_1011_sd +board_image: adafruit_metro_m7_1011_sd.jpg board_url: - - "https://www.adafruit.com/product/5600" -board_image: "adafruit_metro_m7_1011_sd.jpg" -date_added: 2023-9-6 +- https://www.adafruit.com/product/5600 +date_added: 2023-09-06 12:00:00 family: mimxrt10xx features: - - STEMMA QT/QWIIC - - USB-C - - Arduino Shield Compatible +- STEMMA QT/QWIIC +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro M7 with microSD +title: Metro M7 with microSD Download --- Your favorite electronics companies have collaborated to make the fastest Metro ever! For this new product, DigiKey, NXP and Adafruit all contributed the stuff they know best: shipping parts fast (DigiKey), designing microcontrollers (NXP) and crafting great products with tutorials (that's us, Adafruit!) diff --git a/_board/adafruit_metro_rp2040.md b/_board/adafruit_metro_rp2040.md index 6ce38901a0..4dac98f596 100644 --- a/_board/adafruit_metro_rp2040.md +++ b/_board/adafruit_metro_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "adafruit_metro_rp2040" -title: "Metro RP2040 Download" -name: "Metro RP2040" -manufacturer: "Adafruit" +board_id: adafruit_metro_rp2040 +board_image: adafruit_metro_rp2040.jpg board_url: - - "https://www.adafruit.com/product/5786" -board_image: "adafruit_metro_rp2040.jpg" -date_added: 2023-7-28 +- https://www.adafruit.com/product/5786 +date_added: 2023-07-28 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Arduino Shield Compatible +- STEMMA QT/QWIIC +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro RP2040 +title: Metro RP2040 Download --- Choo! Choo! This is the RP2040 Metro Line, making all station stops at "Dual Cortex M0+ mountain", "264K RAM round-about" and "16 Megabytes of Flash town". This train is piled high with hardware that complements the Raspberry Pi RP2040 chip to make it an excellent development board for projects that want Arduino-shape-compatibility or just need the extra space and debugging ports. diff --git a/_board/adafruit_neokey_trinkey_m0.md b/_board/adafruit_neokey_trinkey_m0.md index 3d3c2f2747..9326376083 100644 --- a/_board/adafruit_neokey_trinkey_m0.md +++ b/_board/adafruit_neokey_trinkey_m0.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "adafruit_neokey_trinkey_m0" -title: "NeoKey Trinkey - SAMD21 Download" -name: "NeoKey Trinkey - SAMD21" -manufacturer: "Adafruit" +board_id: adafruit_neokey_trinkey_m0 +board_image: adafruit_neokey_trinkey_m0.jpg board_url: - - "https://www.adafruit.com/product/5020" -board_image: "adafruit_neokey_trinkey_m0.jpg" -date_added: 2021-4-14 -family: atmel-samd +- https://www.adafruit.com/product/5020 bootloader_id: neokey_trinkey_m0 -features: - +date_added: 2021-04-14 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: NeoKey Trinkey - SAMD21 +title: NeoKey Trinkey - SAMD21 Download --- It's half USB Key, half Adafruit Trinket, half mechanical keeb*...*it's **NeoKey Trinkey**, the circuit board with a Trinket M0 heart, a NeoPixel glow, and a Cherry MX-compatible. We were inspired by single-key macro pads we've seen. So we thought, hey what if we made something like that that plugs right into your computer's USB port, with a fully programmable color NeoPixel? And this is what we came up with! diff --git a/_board/adafruit_proxlight_trinkey_m0.md b/_board/adafruit_proxlight_trinkey_m0.md index a5d2600347..32766f0007 100644 --- a/_board/adafruit_proxlight_trinkey_m0.md +++ b/_board/adafruit_proxlight_trinkey_m0.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "adafruit_proxlight_trinkey_m0" -title: "Proximity Trinkey - SAMD21 Download" -name: "Proximity Trinkey - SAMD21" -manufacturer: "Adafruit" +board_id: adafruit_proxlight_trinkey_m0 +board_image: adafruit_proxlight_trinkey_m0.jpg board_url: - - "https://www.adafruit.com/product/5022" -board_image: "adafruit_proxlight_trinkey_m0.jpg" -date_added: 2021-4-14 -family: atmel-samd +- https://www.adafruit.com/product/5022 bootloader_id: proxsense_trinkey_m0 -features: - +date_added: 2021-04-14 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: Proximity Trinkey - SAMD21 +title: Proximity Trinkey - SAMD21 Download --- It's half USB Key, half [Adafruit Trinket M0](https://www.adafruit.com/product/3500), half [APDS9960 breakout](https://www.adafruit.com/product/3595)*...*it's **Proximity Trinkey**, the circuit board with a Trinket M0 heart, APDS9960 Proximity, Light, RGB, and Gesture Sensor, and two RGB NeoPixels for a customizable glow. We wanted to make it super-easy to add one of our most popular combination-sensors to any computer with a USB port and this one is ready to go in an instant. diff --git a/_board/adafruit_qt2040_trinkey.md b/_board/adafruit_qt2040_trinkey.md index b67a889a8b..a7657dbf10 100644 --- a/_board/adafruit_qt2040_trinkey.md +++ b/_board/adafruit_qt2040_trinkey.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "adafruit_qt2040_trinkey" -title: "Trinkey QT2040 Download" -name: "Trinkey QT2040" -manufacturer: "Adafruit" +board_id: adafruit_qt2040_trinkey +board_image: adafruit_qt2040_trinkey.jpg board_url: - - "https://www.adafruit.com/product/5056" -board_image: "adafruit_qt2040_trinkey.jpg" -date_added: 2021-5-26 +- https://www.adafruit.com/product/5056 +date_added: 2021-05-26 12:00:00 family: raspberrypi -features: - +features: null +layout: download +manufacturer: Adafruit +name: Trinkey QT2040 +title: Trinkey QT2040 Download --- It's half USB Key, half Adafruit QT Py, and a lotta RP2040*...*it's **Trinkey QT2040**, the circuit board with an RP2040 heart and Stemma QT legs. Folks are loving the [QT Py 2040](https://www.adafruit.com/product/4900) we made, but maybe you want something plug-and-play. So we thought, hey what if we made something like that plugs right into your computer's USB port? And this is what we came up with! diff --git a/_board/adafruit_qtpy_esp32_pico.md b/_board/adafruit_qtpy_esp32_pico.md index 1ad8a81ce3..ce1ae6077d 100644 --- a/_board/adafruit_qtpy_esp32_pico.md +++ b/_board/adafruit_qtpy_esp32_pico.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_qtpy_esp32_pico" -title: "Adafruit QT Py ESP32 Pico Download" -name: "Adafruit QT Py ESP32 Pico" -manufacturer: "Adafruit" +board_id: adafruit_qtpy_esp32_pico +board_image: adafruit_qtpy_esp32_pico.jpg board_url: - - "https://www.adafruit.com/product/5395" -board_image: "adafruit_qtpy_esp32_pico.jpg" -date_added: 2022-8-19 -family: esp32 +- https://www.adafruit.com/product/5395 +date_added: 2022-08-19 12:00:00 downloads_display: true +family: esp32 features: - - Xiao / QTPy Form Factor - - Bluetooth/BTLE - - Wi-Fi - - USB-C - - Breadboard-Friendly - - STEMMA QT/QWIIC +- Xiao / QTPy Form Factor +- Bluetooth/BTLE +- Wi-Fi +- USB-C +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: Adafruit QT Py ESP32 Pico +title: Adafruit QT Py ESP32 Pico Download --- This dev board is like when you're watching a super-hero movie and the protagonist shows up in a totally amazing costume in the third act and you're like 'OMG! That's the hero and they're here to kick some serious butt!" but in this case its a microcontroller. diff --git a/_board/adafruit_qtpy_esp32c3.md b/_board/adafruit_qtpy_esp32c3.md index 08c7eb0e3e..a416841a57 100644 --- a/_board/adafruit_qtpy_esp32c3.md +++ b/_board/adafruit_qtpy_esp32c3.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "adafruit_qtpy_esp32c3" -title: "Adafruit QT Py ESP32-C3 Download" -name: "Adafruit QT Py ESP32-C3" -manufacturer: "Adafruit" +board_id: adafruit_qtpy_esp32c3 +board_image: adafruit_qtpy_esp32c3.jpg board_url: - - "https://www.adafruit.com/product/5405" -board_image: "adafruit_qtpy_esp32c3.jpg" -date_added: 2022-4-1 -family: esp32c3 +- https://www.adafruit.com/product/5405 +date_added: 2022-04-01 12:00:00 downloads_display: true +family: esp32c3 features: - - STEMMA QT/QWIIC - - Xiao / QTPy Form Factor - - USB-C - - Breadboard-Friendly - - Wi-Fi +- STEMMA QT/QWIIC +- Xiao / QTPy Form Factor +- USB-C +- Breadboard-Friendly +- Wi-Fi +layout: download +manufacturer: Adafruit +name: Adafruit QT Py ESP32-C3 +title: Adafruit QT Py ESP32-C3 Download --- What's life without a little RISC? This miniature dev board is perfect for small projects: it comes with [our favorite connector - the STEMMA QT](http://adafruit.com/stemma), a chainable I2C port, WiFi, Bluetooth LE, and plenty of FLASH and RAM memory for many IoT projects. What a cutie pie! Or is it... a **QT Py**? This diminutive dev board comes with a RISC-V IoT microcontroller, the **ESP32-C3**! @@ -62,7 +62,3 @@ Runs [Arduino with Espressif's ESP32 core](https://github.com/espressif/arduino- ## Getting Started Since the ESP32C3 chip does not have support for native USB, you won't see a CIRCUITPY drive appear when you plug it into your computer. [Here is a complete guide](https://learn.adafruit.com/circuitpython-with-esp32-quick-start/overview) for getting Circuitpython installed onto an ESP32C3 device, and for enabling [Web Workflow](https://docs.circuitpython.org/en/latest/docs/workflows.html#web) so you can load your Python code onto it. - - - - diff --git a/_board/adafruit_qtpy_esp32s2.md b/_board/adafruit_qtpy_esp32s2.md index c53bbaca96..22e911e51a 100644 --- a/_board/adafruit_qtpy_esp32s2.md +++ b/_board/adafruit_qtpy_esp32s2.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_qtpy_esp32s2" -title: "Adafruit QT Py ESP32-S2 (including uFL version) Download" -name: "Adafruit QT Py ESP32-S2 (including uFL version)" -manufacturer: "Adafruit" +board_id: adafruit_qtpy_esp32s2 +board_image: adafruit_qtpy_esp32s2.jpg board_url: - - "https://www.adafruit.com/product/5325" - - "https://www.adafruit.com/product/5348" -board_image: "adafruit_qtpy_esp32s2.jpg" -date_added: 2021-11-30 -family: esp32s2 +- https://www.adafruit.com/product/5325 +- https://www.adafruit.com/product/5348 bootloader_id: adafruit_qtpy_esp32s2 +date_added: 2021-11-30 12:00:00 +family: esp32s2 features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Wi-Fi - - Xiao / QTPy Form Factor +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Wi-Fi +- Xiao / QTPy Form Factor +layout: download +manufacturer: Adafruit +name: Adafruit QT Py ESP32-S2 (including uFL version) +title: Adafruit QT Py ESP32-S2 (including uFL version) Download --- What has your favorite Espressif WiFi microcontroller, comes with [our favorite connector - the STEMMA QT](http://adafruit.com/stemma), a chainable I2C port, and has lots of Flash and RAM memory for your next IoT project? What will make your next IoT project flyyyyy? What a cutie pie! Or is it... a **QT Py**? This diminutive dev board comes with one of our new favorite lil chips, the **ESP32-S2**! diff --git a/_board/adafruit_qtpy_esp32s3_4mbflash_2mbpsram.md b/_board/adafruit_qtpy_esp32s3_4mbflash_2mbpsram.md index a3516494c4..044d842168 100644 --- a/_board/adafruit_qtpy_esp32s3_4mbflash_2mbpsram.md +++ b/_board/adafruit_qtpy_esp32s3_4mbflash_2mbpsram.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "adafruit_qtpy_esp32s3_4mbflash_2mbpsram" -title: "Adafruit QT Py ESP32-S3 4MB Flash/2MB PSRAM Download" -name: "Adafruit QT Py ESP32-S3 4MB Flash/2MB PSRAM" -manufacturer: "Adafruit" +board_id: adafruit_qtpy_esp32s3_4mbflash_2mbpsram +board_image: adafruit_qtpy_esp32s3_4mbflash_2mbpsram.jpg board_url: - - "https://www.adafruit.com/product/5700" -board_image: "adafruit_qtpy_esp32s3_4mbflash_2mbpsram.jpg" -date_added: 2023-07-11 -family: esp32s3 +- https://www.adafruit.com/product/5700 bootloader_id: adafruit_qtpy_esp32s3_n4r2 +date_added: 2023-07-11 12:00:00 +family: esp32s3 features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Wi-Fi - - Xiao / QTPy Form Factor +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Wi-Fi +- Xiao / QTPy Form Factor +layout: download +manufacturer: Adafruit +name: Adafruit QT Py ESP32-S3 4MB Flash/2MB PSRAM +title: Adafruit QT Py ESP32-S3 4MB Flash/2MB PSRAM Download --- The ESP32-S3 has arrived in QT Py format - and what a great way to get started with this powerful new chip from Espressif! With dual 240 MHz cores, WiFi and BLE support, and native USB, this QT Py is great for powering your IoT projects. Now we even have this powerhouse of a board with built in 2 Megabytes of PSRAM for when you need to buffer large datasets in memory. diff --git a/_board/adafruit_qtpy_esp32s3_nopsram.md b/_board/adafruit_qtpy_esp32s3_nopsram.md index 799557bab2..ee40b84203 100644 --- a/_board/adafruit_qtpy_esp32s3_nopsram.md +++ b/_board/adafruit_qtpy_esp32s3_nopsram.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "adafruit_qtpy_esp32s3_nopsram" -title: "Adafruit QT Py ESP32-S3 No PSRAM Download" -name: "Adafruit QT Py ESP32-S3 No PSRAM" -manufacturer: "Adafruit" +board_id: adafruit_qtpy_esp32s3_nopsram +board_image: adafruit_qtpy_esp32s3_nopsram.jpg board_url: - - "https://www.adafruit.com/product/5426" -board_image: "adafruit_qtpy_esp32s3_nopsram.jpg" -date_added: 2022-2-14 -family: esp32s3 +- https://www.adafruit.com/product/5426 bootloader_id: adafruit_qtpy_esp32s3 +date_added: 2022-02-14 12:00:00 downloads_display: true +family: esp32s3 features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Wi-Fi - - Xiao / QTPy Form Factor +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Wi-Fi +- Xiao / QTPy Form Factor +layout: download +manufacturer: Adafruit +name: Adafruit QT Py ESP32-S3 No PSRAM +title: Adafruit QT Py ESP32-S3 No PSRAM Download --- The ESP32-S3 has arrived in QT Py format - and what a great way to get started with this powerful new chip from Espressif! With dual 240 MHz cores, WiFi and BLE support, and native USB, this QT Py is great for powering your IoT projects. diff --git a/_board/adafruit_qtpy_rp2040.md b/_board/adafruit_qtpy_rp2040.md index 92fc103fa5..3ae5739a8c 100644 --- a/_board/adafruit_qtpy_rp2040.md +++ b/_board/adafruit_qtpy_rp2040.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "adafruit_qtpy_rp2040" -title: "QT Py RP2040 Download" -name: "QT Py RP2040" -manufacturer: "Adafruit" +board_id: adafruit_qtpy_rp2040 +board_image: adafruit_qtpy_rp2040.jpg board_url: - - "https://www.adafruit.com/product/4900" -board_image: "adafruit_qtpy_rp2040.jpg" -date_added: 2021-4-6 +- https://www.adafruit.com/product/4900 +date_added: 2021-04-06 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Xiao / QTPy Form Factor +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Xiao / QTPy Form Factor +layout: download +manufacturer: Adafruit +name: QT Py RP2040 +title: QT Py RP2040 Download --- What a cutie pie! Or is it... a QT Py? This diminutive dev board comes with one of our new favorite chip, the RP2040. It's been made famous in the new [Raspberry Pi Pico](https://www.adafruit.com/pico) *and* our [Feather RP2040](http://www.adafruit.com/product/4884) and [ItsyBitsy RP2040](http://www.adafruit.com/product/4888), but what if we wanted something really *smol?* diff --git a/_board/adafruit_qualia_s3_rgb666.md b/_board/adafruit_qualia_s3_rgb666.md index 9c1bb1a165..40028942d2 100644 --- a/_board/adafruit_qualia_s3_rgb666.md +++ b/_board/adafruit_qualia_s3_rgb666.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "adafruit_qualia_s3_rgb666" -title: "Qualia ESP32-S3 for TTL RGB-666 Displays Download" -name: "Qualia ESP32-S3 for TTL RGB-666 Displays" -manufacturer: "Adafruit" +board_id: adafruit_qualia_s3_rgb666 +board_image: adafruit_qualia_s3_rgb666.jpg board_url: - - "https://www.adafruit.com/product/5800" -board_image: "adafruit_qualia_s3_rgb666.jpg" -date_added: 2023-10-3 -family: esp32s3 +- https://www.adafruit.com/product/5800 bootloader_id: adafruit_qualia_s3_rgb666 -tags: - - Qualia S3 +date_added: 2023-10-03 12:00:00 +family: esp32s3 features: - - External Display - - Wi-Fi - - Bluetooth/BTLE - - STEMMA QT/QWIIC - - USB-C +- External Display +- Wi-Fi +- Bluetooth/BTLE +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: Adafruit +name: Qualia ESP32-S3 for TTL RGB-666 Displays +tags: +- Qualia S3 +title: Qualia ESP32-S3 for TTL RGB-666 Displays Download --- There's a few things everyone loves: ice cream, kittens, and honkin' large TFT screens. We're no strangers to small TFT's - [from our itsy 1.14" color display](https://www.adafruit.com/search?q=1.14+tft) that graces many-a-TFT-Feather to [our fancy 3.5" 320x480](https://www.adafruit.com/product/2050) breakout screen. But most people who dabble or engineer with microcontrollers know that you sort of 'top out' at 320x480 - that's the largest resolution you can use with every day SPI or 8-bit 8080 interfaces. After that, you're in TTL-interface TFT land, where displays no longer have an internal memory buffer and instead the controller has to continuously write scanline data over a 16 or 18 or 24 pin interface. @@ -44,4 +44,4 @@ The expander is what lets us have a full 4-pin SPI port and two more analog GPIO ## Purchase: -* [Adafruit](https://www.adafruit.com/product/5800) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/5800) diff --git a/_board/adafruit_rotary_trinkey_m0.md b/_board/adafruit_rotary_trinkey_m0.md index 54dcc33216..cd082c4f21 100644 --- a/_board/adafruit_rotary_trinkey_m0.md +++ b/_board/adafruit_rotary_trinkey_m0.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "adafruit_rotary_trinkey_m0" -title: "Rotary Trinkey - SAMD21 Download" -name: "Rotary Trinkey - SAMD21" -manufacturer: "Adafruit" +board_id: adafruit_rotary_trinkey_m0 +board_image: adafruit_rotary_trinkey_m0.jpg board_url: - - "https://www.adafruit.com/product/4964" -board_image: "adafruit_rotary_trinkey_m0.jpg" -date_added: 2021-4-6 -family: atmel-samd +- https://www.adafruit.com/product/4964 bootloader_id: rotary_trinkey_m0 -features: - +date_added: 2021-04-06 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: Rotary Trinkey - SAMD21 +title: Rotary Trinkey - SAMD21 Download --- It's half USB Key, half Adafruit Trinket, half rotary encoder*...*it's **Rotary Trinkey**, the circuit board with a Trinket M0 heart, a NeoPixel glow, and a rotary encoder body. [We were inspired by this project from TodBot where a rotary encoder was soldered onto a QT Py](https://twitter.com/todbot/status/1365107469345648643). So we thought, hey what if we made something like that that plugs right into your computer's USB port, with a fully programmable color NeoPixel? And this is what we came up with! diff --git a/_board/adafruit_sht4x_trinkey_m0.md b/_board/adafruit_sht4x_trinkey_m0.md index 4f209f2710..4104aea0a5 100644 --- a/_board/adafruit_sht4x_trinkey_m0.md +++ b/_board/adafruit_sht4x_trinkey_m0.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "adafruit_sht4x_trinkey_m0" -title: "Temp and Humidity Trinkey Download" -name: "Temp and Humidity Trinkey" -manufacturer: "Adafruit" +board_id: adafruit_sht4x_trinkey_m0 +board_image: adafruit_sht4x_trinkey_m0.jpg board_url: - - "https://www.adafruit.com/" -board_image: "adafruit_sht4x_trinkey_m0.jpg" -date_added: 2024-3-13 +- https://www.adafruit.com/ +date_added: 2024-03-13 12:00:00 family: atmel-samd -features: - +features: null +layout: download +manufacturer: Adafruit +name: Temp and Humidity Trinkey +title: Temp and Humidity Trinkey Download --- Coming soon from Adafruit, check out the weekly "Top Secret" segment on ASK AN ENGINEER or the upcoming new product videos on [YouTube](https://www.youtube.com/adafruit). ## Learn More -* [YouTube](https://youtu.be/F55C2RzlXJk?si=wjKQhMp73NXmFBD8&t=158) \ No newline at end of file +* [YouTube](https://youtu.be/F55C2RzlXJk?si=wjKQhMp73NXmFBD8&t=158) diff --git a/_board/adafruit_slide_trinkey_m0.md b/_board/adafruit_slide_trinkey_m0.md index e5ff395303..fa4c068258 100644 --- a/_board/adafruit_slide_trinkey_m0.md +++ b/_board/adafruit_slide_trinkey_m0.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "adafruit_slide_trinkey_m0" -title: "Slide Trinkey - SAMD21 Download" -name: "Slide Trinkey - SAMD21" -manufacturer: "Adafruit" +board_id: adafruit_slide_trinkey_m0 +board_image: adafruit_slide_trinkey_m0.jpg board_url: - - "https://www.adafruit.com/product/5021" -board_image: "adafruit_slide_trinkey_m0.jpg" -date_added: 2021-4-14 -family: atmel-samd +- https://www.adafruit.com/product/5021 bootloader_id: slide_trinkey_m0 -features: - +date_added: 2021-04-14 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: Slide Trinkey - SAMD21 +title: Slide Trinkey - SAMD21 Download --- It's half USB Key, half Adafruit Trinket, half mini slide pot*...* it's **Slider Trinkey**, the circuit board with a Trinket M0 heart, NeoPixel glow, and a 35mm long 10KΩ slide potentiometer. diff --git a/_board/ai_thinker_esp32-c3s-2m.md b/_board/ai_thinker_esp32-c3s-2m.md index 32d30476a5..28c7ba8fef 100644 --- a/_board/ai_thinker_esp32-c3s-2m.md +++ b/_board/ai_thinker_esp32-c3s-2m.md @@ -1,19 +1,20 @@ --- -layout: download -board_id: "ai_thinker_esp32-c3s-2m" -title: "ESP-C3-32S (2M) Download" -name: "ESP-C3-32S (2M)" -manufacturer: "Ai-Thinker" +board_id: ai_thinker_esp32-c3s-2m +board_image: ai_thinker_esp32-c3s.jpg board_url: - - "https://docs.ai-thinker.com/en/esp32c3" -board_image: "ai_thinker_esp32-c3s.jpg" -date_added: 2022-02-22 +- https://docs.ai-thinker.com/en/esp32c3 +date_added: 2022-02-22 12:00:00 family: esp32c3 features: - - Breadboard-Friendly - - Wi-Fi - - Bluetooth/BTLE +- Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +layout: download +manufacturer: Ai-Thinker +name: ESP-C3-32S (2M) +title: ESP-C3-32S (2M) Download --- + This is an entry-level development board based on Espressif ESP32-C3 SoC, which is equipped with a RISC-V 32-bit single-core processor, operating frequency up to 160 MHz, supports secondary development without using other microcontrollers or processors. The ESP32-C3 is an highly integrated low power Wi-Fi and Bluetooth system-level chip (SoC), designed for various applications such as internet of things (IoT), mobile devices, wearable electronics, smart home, etc. ### Features diff --git a/_board/ai_thinker_esp32-c3s.md b/_board/ai_thinker_esp32-c3s.md index 81be6531bf..e6128418a0 100644 --- a/_board/ai_thinker_esp32-c3s.md +++ b/_board/ai_thinker_esp32-c3s.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "ai_thinker_esp32-c3s" -title: "ESP-C3-32S Download" -name: "ESP-C3-32S" -manufacturer: "Ai-Thinker" +board_id: ai_thinker_esp32-c3s +board_image: ai_thinker_esp32-c3s.jpg board_url: - - "https://docs.ai-thinker.com/en/esp32c3" -board_image: "ai_thinker_esp32-c3s.jpg" -date_added: 2021-11-15 +- https://docs.ai-thinker.com/en/esp32c3 +date_added: 2021-11-15 12:00:00 family: esp32c3 features: - - Breadboard-Friendly - - Wi-Fi - - Bluetooth/BTLE +- Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +layout: download +manufacturer: Ai-Thinker +name: ESP-C3-32S +title: ESP-C3-32S Download --- This is an entry-level development board based on Espressif ESP32-C3 SoC, which is equipped with a RISC-V 32-bit single-core processor, operating frequency up to 160 MHz, supports secondary development without using other microcontrollers or processors. The ESP32-C3 is an highly integrated low power Wi-Fi and Bluetooth system-level chip (SoC), designed for various applications such as internet of things (IoT), mobile devices, wearable electronics, smart home, etc. diff --git a/_board/ai_thinker_esp_12k_nodemcu.md b/_board/ai_thinker_esp_12k_nodemcu.md index 9032df99a1..9d7ba6f1dd 100644 --- a/_board/ai_thinker_esp_12k_nodemcu.md +++ b/_board/ai_thinker_esp_12k_nodemcu.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "ai_thinker_esp_12k_nodemcu" -title: "NodeMCU ESP-12K Download" -name: "NodeMCU ESP-12K" -manufacturer: "Ai-Thinker" +board_id: ai_thinker_esp_12k_nodemcu +board_image: ai_thinker_esp_12k_nodemcu.jpg board_url: - - "https://docs.ai-thinker.com/en/12k_development_board_esp32-s2" -board_image: "ai_thinker_esp_12k_nodemcu.jpg" -date_added: 2021-8-24 -family: esp32s2 +- https://docs.ai-thinker.com/en/12k_development_board_esp32-s2 bootloader_id: adafruit_qtpy_esp32s2 +date_added: 2021-08-24 12:00:00 +family: esp32s2 features: - - Breadboard-Friendly - - Wi-Fi +- Breadboard-Friendly +- Wi-Fi +layout: download +manufacturer: Ai-Thinker +name: NodeMCU ESP-12K +title: NodeMCU ESP-12K Download --- This board is a version of the NodeMCU board with an ESP-12K (ESP32-S2) module on it. The board has a micro USB connection with which it can be programmed and/or powered. diff --git a/_board/aloriumtech_evo_m51.md b/_board/aloriumtech_evo_m51.md index f35e0522ee..a1e9d75793 100644 --- a/_board/aloriumtech_evo_m51.md +++ b/_board/aloriumtech_evo_m51.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "aloriumtech_evo_m51" -title: "AloriumTech Evo M51 Download" -name: "AloriumTech Evo M51" -manufacturer: "Alorium Technology, LLC" +blinka: false +board_id: aloriumtech_evo_m51 +board_image: aloriumtech_evo_m51.jpg board_url: - - "https://www.aloriumtech.com/evom51" -board_image: "aloriumtech_evo_m51.jpg" -date_added: 2020-5-21 -family: atmel-samd +- https://www.aloriumtech.com/evom51 +date_added: 2020-05-21 12:00:00 downloads_display: true -blinka: false +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Alorium Technology, LLC +name: AloriumTech Evo M51 +title: AloriumTech Evo M51 Download --- The Evo M51 is an FPGA-enhanced Feather compatible compute module from Alorium Technology that features a 32-bit SAMD51 microcontroller along with an Intel MAX 10 FPGA. diff --git a/_board/aramcon2_badge.md b/_board/aramcon2_badge.md index 62e2887f7c..bfc8e081af 100644 --- a/_board/aramcon2_badge.md +++ b/_board/aramcon2_badge.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "aramcon2_badge" -title: "ARAMCON2 Badge Download" -name: "ARAMCON2 Badge" -manufacturer: "ARAMCON Badge Team" +blinka: false +board_id: aramcon2_badge +board_image: aramcon2_badge.jpg board_url: - - "https://github.com/aramcon-badge/" -board_image: "aramcon2_badge.jpg" -date_added: 2021-4-14 -family: nrf52840 +- https://github.com/aramcon-badge/ bootloader_id: aramcon2_badge +date_added: 2021-04-14 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" +family: nrf52840 features: - - Display - - Bluetooth/BTLE +- Display +- Bluetooth/BTLE +layout: download +manufacturer: ARAMCON Badge Team +name: ARAMCON2 Badge +title: ARAMCON2 Badge Download --- nRF52840-Based Smart Badge with Bluetooth, 2.9" ePaper Display, Neopixels, SAO support, and more! diff --git a/_board/aramcon_badge_2019.md b/_board/aramcon_badge_2019.md index fd0e5f271b..255897fcab 100644 --- a/_board/aramcon_badge_2019.md +++ b/_board/aramcon_badge_2019.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "aramcon_badge_2019" -title: "ARAMCON Badge 2019 Download" -name: "ARAMCON Badge 2019" -manufacturer: "ARAMCON Badge Team" +board_id: aramcon_badge_2019 +board_image: aramcon_badge_2019.jpg board_url: - - "https://github.com/aramcon-badge/" -board_image: "aramcon_badge_2019.jpg" -date_added: 2020-1-25 -family: nrf52840 +- https://github.com/aramcon-badge/ bootloader_id: aramcon_badge_2019 +date_added: 2020-01-25 12:00:00 +family: nrf52840 features: - - Display - - Bluetooth/BTLE - - Wi-Fi +- Display +- Bluetooth/BTLE +- Wi-Fi +layout: download +manufacturer: ARAMCON Badge Team +name: ARAMCON Badge 2019 +title: ARAMCON Badge 2019 Download --- nRF52840-Based Smart Badge with Bluetooth, Thread Mesh Network, 2.9" ePaper Display, Neopixels, built-in MP3 Sound decoder and more! diff --git a/_board/arduino_mkr1300.md b/_board/arduino_mkr1300.md index 5db02772f9..37e4c1c812 100644 --- a/_board/arduino_mkr1300.md +++ b/_board/arduino_mkr1300.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "arduino_mkr1300" -title: "MKR WAN 1300 Download" -name: "MKR WAN 1300" -manufacturer: "Arduino" +board_id: arduino_mkr1300 +board_image: arduino_mkr1300_01.jpg board_url: - - "https://www.arduino.cc/en/Guide/MKRWAN1300" -board_image: "arduino_mkr1300_01.jpg" -date_added: 2018-12-13 -family: atmel-samd +- https://www.arduino.cc/en/Guide/MKRWAN1300 bootloader_id: mkr1300 +date_added: 2018-12-13 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: MKR WAN 1300 +title: MKR WAN 1300 Download --- Arduino MKR WAN 1300 has been designed to offer a practical and cost effective solution for makers seeking to add Lo-Ra connectivity to their projects with minimal previous experience in networking. It is based on the Microchip SAMD21 and a Murata CMWX1ZZABZ Lo-Ra module. diff --git a/_board/arduino_mkrzero.md b/_board/arduino_mkrzero.md index a3e2f352dd..855c3f10e8 100644 --- a/_board/arduino_mkrzero.md +++ b/_board/arduino_mkrzero.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_mkrzero" -title: "MKR Zero Download" -name: "MKR Zero" -manufacturer: "Arduino" +board_id: arduino_mkrzero +board_image: arduino_mkr_zero.jpg board_url: - - "https://www.arduino.cc/en/Guide/ArduinoMKRZero" -board_image: "arduino_mkr_zero.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.arduino.cc/en/Guide/ArduinoMKRZero bootloader_id: mkrzero +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Battery Charging - - Breadboard-Friendly +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: MKR Zero +title: MKR Zero Download --- The Arduino MKR ZERO brings you the power of a Zero in the smaller format established by the MKR form factor. The MKR ZERO board acts as a great educational tool for learning about 32-bit application development. The board is powered by Microchip’s SAMD21 MCU, which features a 32-bit ARM Cortex® M0+ core. diff --git a/_board/arduino_nano_33_ble.md b/_board/arduino_nano_33_ble.md index ba554b396b..19eb4c1601 100644 --- a/_board/arduino_nano_33_ble.md +++ b/_board/arduino_nano_33_ble.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_nano_33_ble" -title: "NANO 33 BLE Download" -name: "NANO 33 BLE" -manufacturer: "Arduino" +board_id: arduino_nano_33_ble +board_image: arduino_nano_33_ble.jpg board_url: - - "https://www.arduino.cc/en/Guide/NANO33BLE" -board_image: "arduino_nano_33_ble.jpg" -date_added: 2019-10-26 -family: nrf52840 +- https://www.arduino.cc/en/Guide/NANO33BLE bootloader_id: arduino_nano_33_ble +date_added: 2019-10-26 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Breadboard-Friendly +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: NANO 33 BLE +title: NANO 33 BLE Download --- Please note that the pictured board is a Nano 33 BLE Sense. This build works with both the Nano 33 BLE and the Sense. diff --git a/_board/arduino_nano_33_iot.md b/_board/arduino_nano_33_iot.md index bbd3aa6cce..300ab3a347 100644 --- a/_board/arduino_nano_33_iot.md +++ b/_board/arduino_nano_33_iot.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_nano_33_iot" -title: "NANO 33 IoT Download" -name: "NANO 33 IoT" -manufacturer: "Arduino" +board_id: arduino_nano_33_iot +board_image: arduino_nano_33_iot.jpg board_url: - - "https://www.arduino.cc/en/Guide/NANO33IoT" -board_image: "arduino_nano_33_iot.jpg" -date_added: 2020-2-27 -family: atmel-samd +- https://www.arduino.cc/en/Guide/NANO33IoT bootloader_id: nano33iot +date_added: 2020-02-27 12:00:00 +family: atmel-samd features: - - Wi-Fi - - Breadboard-Friendly +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: NANO 33 IoT +title: NANO 33 IoT Download --- Arduino NANO 33 IoT board has been designed to offer a practical and cost effective solution for makers seeking to add Wi-Fi connectivity to their projects (using Arduino) with minimal previous experience in networking. Learn how to set up the programming environment and get the hardware up and running, ready for your projects, in minutes. diff --git a/_board/arduino_nano_esp32s3.md b/_board/arduino_nano_esp32s3.md index 3884d2c81e..47a9776482 100644 --- a/_board/arduino_nano_esp32s3.md +++ b/_board/arduino_nano_esp32s3.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_nano_esp32s3" -title: "Nano ESP32 Download" -name: "Nano ESP32" -manufacturer: "Arduino" +board_id: arduino_nano_esp32s3 +board_image: arduino_nano_esp32s3.jpg board_url: - - "https://store.arduino.cc/pages/nano-esp32" -board_image: "arduino_nano_esp32s3.jpg" -date_added: 2023-9-6 +- https://store.arduino.cc/pages/nano-esp32 +date_added: 2023-09-06 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: Nano ESP32 +title: Nano ESP32 Download --- **A limited number of boards have [inverted green/blue on the internal status RGB LEDs](https://support.arduino.cc/hc/en-us/articles/9589073738012-About-Nano-ESP32-boards-with-inverted-green-and-blue-pins).** Try this board first. If the colors on your board appear inverted, use the [inverted Arduino Nano ESP32](arduino_nano_esp32s3_inverted_statusled) board definition instead. diff --git a/_board/arduino_nano_esp32s3_inverted_statusled.md b/_board/arduino_nano_esp32s3_inverted_statusled.md index 8a000e725e..14c9c05d01 100644 --- a/_board/arduino_nano_esp32s3_inverted_statusled.md +++ b/_board/arduino_nano_esp32s3_inverted_statusled.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_nano_esp32s3_inverted_statusled" -title: "Nano ESP32 with inverted Status LED Download" -name: "Nano ESP32 with inverted Status LED" -manufacturer: "Arduino" +board_id: arduino_nano_esp32s3_inverted_statusled +board_image: arduino_nano_esp32s3.jpg board_url: - - "https://store.arduino.cc/pages/nano-esp32" -board_image: "arduino_nano_esp32s3.jpg" -date_added: 2023-9-6 +- https://store.arduino.cc/pages/nano-esp32 +date_added: 2023-09-06 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: Nano ESP32 with inverted Status LED +title: Nano ESP32 with inverted Status LED Download --- **A limited number of boards have [inverted green/blue on the internal status RGB LEDs](https://support.arduino.cc/hc/en-us/articles/9589073738012-About-Nano-ESP32-boards-with-inverted-green-and-blue-pins).** Try the [non-inverted Arduino Nano ESP32](arduino_nano_esp32s3) board first. If the colors on your board appear inverted, use this board definition. diff --git a/_board/arduino_nano_rp2040_connect.md b/_board/arduino_nano_rp2040_connect.md index c5e5cb2559..c039098c03 100644 --- a/_board/arduino_nano_rp2040_connect.md +++ b/_board/arduino_nano_rp2040_connect.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_nano_rp2040_connect" -title: "Nano RP2040 Connect Download" -name: "Nano RP2040 Connect" -manufacturer: "Arduino" +board_id: arduino_nano_rp2040_connect +board_image: arduino_nano_rp2040_connect.jpg board_url: - - "https://store.arduino.cc/usa/nano-rp2040-connect-with-headers" -board_image: "arduino_nano_rp2040_connect.jpg" -date_added: 2021-5-24 +- https://store.arduino.cc/usa/nano-rp2040-connect-with-headers +date_added: 2021-05-24 12:00:00 family: raspberrypi features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Arduino +name: Nano RP2040 Connect +title: Nano RP2040 Connect Download --- Meet the first connected RP2040 board. It fits the Arduino Nano form factor, making it a small board with BIG features. diff --git a/_board/arduino_zero.md b/_board/arduino_zero.md index 0544d067ff..c5c72195e4 100644 --- a/_board/arduino_zero.md +++ b/_board/arduino_zero.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "arduino_zero" -title: "Zero Download" -name: "Zero" -manufacturer: "Arduino" +board_id: arduino_zero +board_image: arduino_zero.jpg board_url: - - "https://www.arduino.cc/en/Guide/ArduinoZero" - - "https://www.adafruit.com/product/2843" -board_image: "arduino_zero.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.arduino.cc/en/Guide/ArduinoZero +- https://www.adafruit.com/product/2843 bootloader_id: zero +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: Arduino +name: Zero +title: Zero Download --- The Arduino Zero is a simple and powerful 32-bit extension of the platform established by the UNO. The Zero board expands the family by providing increased performance, enabling a variety of project opportunities for devices, and acts as a great educational tool for learning about 32-bit application development. diff --git a/_board/artisense_rd00.md b/_board/artisense_rd00.md index e83f3deab6..3c23019ced 100644 --- a/_board/artisense_rd00.md +++ b/_board/artisense_rd00.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "artisense_rd00" -title: "Artisense Reference Design RD00 Download" -name: "Artisense Reference Design RD00" -manufacturer: "Unknown" -board_url: -board_image: "unknown.jpg" +board_id: artisense_rd00 +board_image: unknown.jpg +board_url: null +bootloader_id: artisense_rd00 +date_added: 2021-05-26 12:00:00 downloads_display: false -date_added: 2021-05-26 family: esp32s2 -bootloader_id: artisense_rd00 +layout: download +manufacturer: Unknown +name: Artisense Reference Design RD00 +title: Artisense Reference Design RD00 Download --- Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/atmegazero_esp32s2.md b/_board/atmegazero_esp32s2.md index aabe66c4a7..135253b3f8 100644 --- a/_board/atmegazero_esp32s2.md +++ b/_board/atmegazero_esp32s2.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "atmegazero_esp32s2" -title: "ATMegaZero ESP32-S2 Download" -name: "ATMegaZero ESP32-S2" -manufacturer: "ATMegaZero" +board_id: atmegazero_esp32s2 +board_image: atmegazero_esp32s2.jpg board_url: - - "https://www.atmegazero.com" -board_image: "atmegazero_esp32s2.jpg" -date_added: 2021-4-19 -family: esp32s2 +- https://www.atmegazero.com bootloader_id: atmegazero_esp32s2 +date_added: 2021-04-19 12:00:00 +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: ATMegaZero +name: ATMegaZero ESP32-S2 +title: ATMegaZero ESP32-S2 Download --- ** COMING SOON! ** diff --git a/_board/bast_pro_mini_m0.md b/_board/bast_pro_mini_m0.md index d16e8d55ba..1f78385734 100644 --- a/_board/bast_pro_mini_m0.md +++ b/_board/bast_pro_mini_m0.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "bast_pro_mini_m0" -title: "Bast Pro Mini M0 Download" -name: "Bast Pro Mini M0" -manufacturer: "Electronic Cats" +board_id: bast_pro_mini_m0 +board_image: bast_pro_mini_m0.jpg board_url: - - "https://electroniccats.com/store/bast-pro-mini-m0/" -board_image: "bast_pro_mini_m0.jpg" -date_added: 2019-4-13 +- https://electroniccats.com/store/bast-pro-mini-m0/ +date_added: 2019-04-13 12:00:00 family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Electronic Cats +name: Bast Pro Mini M0 +title: Bast Pro Mini M0 Download --- The Bast Pro Mini M0 features a powerful SAMD21E chip, an ARM Cortex-M0 based microcontroller with low power consumption and high performance, making it ideal for endless applications. diff --git a/_board/bastble.md b/_board/bastble.md index bdf208641c..a5a1385516 100644 --- a/_board/bastble.md +++ b/_board/bastble.md @@ -1,22 +1,21 @@ --- -layout: download -board_id: "bastble" -title: "BAST BLE Download" -name: "BAST BLE" -manufacturer: "Electronic Cats" +board_id: bastble +board_image: bastble.jpg board_url: - - "https://electroniccats.com/store/bast-ble/" -board_image: "bastble.jpg" -date_added: 2020-11-05 -family: nrf52840 +- https://electroniccats.com/store/bast-ble/ bootloader_id: bast_ble - +date_added: 2020-11-05 12:00:00 +family: nrf52840 features: - - Feather-Compatible - - Bluetooth/BTLE - - Battery Charging - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Bluetooth/BTLE +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Electronic Cats +name: BAST BLE +title: BAST BLE Download --- The Bast BLE is the new Feather family member with Bluetooth Low Energy and native USB-C support featuring the nRF52840! diff --git a/_board/bdmicro_vina_d21.md b/_board/bdmicro_vina_d21.md index 546cb583f5..b5b81a1f80 100644 --- a/_board/bdmicro_vina_d21.md +++ b/_board/bdmicro_vina_d21.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "bdmicro_vina_d21" -title: "Vina-D21 Download" -name: "Vina-D21" -manufacturer: "BDMICRO, LLC" +board_id: bdmicro_vina_d21 +board_image: bdmicro_vina_d21.jpg board_url: - - "https://bdmicro.com/products/vina-d21" -board_image: "bdmicro_vina_d21.jpg" -date_added: 2020-9-28 +- https://bdmicro.com/products/vina-d21 +date_added: 2020-09-28 12:00:00 family: atmel-samd features: - - Battery Charging +- Battery Charging +layout: download +manufacturer: BDMICRO, LLC +name: Vina-D21 +title: Vina-D21 Download --- The VINA-D21 is a powerful, robust, pluggable control module designed for modular control applications. Built with all-industrial grade components and features, it is well-suited for a wide variety of automation and control requirements, including harsh environments. @@ -24,4 +24,3 @@ Incorporate the VINA-D21 in your designs over and over again and multiply your s To get you started even more quickly, BDMICRO provides the Autodesk Eagle CAD part for VINA-D21. Getting started is as easy as downloading the part and adding it to your application specific design, allowing you to focus on your custom application's needs, with all the right connectors, headers, and other circuitry needed for your project solution. Capable of running standalone, modular piggy back on application-specific boards, or breadboarded, the VINA-D21 is a great choice for your next project. - diff --git a/_board/bdmicro_vina_d51.md b/_board/bdmicro_vina_d51.md index 0ccd913dfe..3fd874ff3b 100644 --- a/_board/bdmicro_vina_d51.md +++ b/_board/bdmicro_vina_d51.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "bdmicro_vina_d51" -title: "Vina-D51 Download" -name: "VINA-D51" -manufacturer: "BDMICRO, LLC" +board_id: bdmicro_vina_d51 +board_image: bdmicro_vina_d51.jpg board_url: - - "https://bdmicro.com/products/vina-d51" -board_image: "bdmicro_vina_d51.jpg" -date_added: 2020-10-16 +- https://bdmicro.com/products/vina-d51 +date_added: 2020-10-16 12:00:00 family: atmel-samd features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: BDMICRO, LLC +name: VINA-D51 +title: Vina-D51 Download --- The VINA-D51 is a powerful, robust, pluggable control module designed for modular control applications, even in harsh environments. Built with all-industrial grade components, latching connectors and features, it is well-suited for a wide variety of automation and control applications. diff --git a/_board/bdmicro_vina_d51_pcb7.md b/_board/bdmicro_vina_d51_pcb7.md index 80ea08a348..8083e58e88 100644 --- a/_board/bdmicro_vina_d51_pcb7.md +++ b/_board/bdmicro_vina_d51_pcb7.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "bdmicro_vina_d51_pcb7" -title: "Vina-D51 (PCB 7) Download" -name: "VINA-D51 (PCB 7)" -manufacturer: "BDMICRO, LLC" +board_id: bdmicro_vina_d51_pcb7 +board_image: bdmicro_vina_d51.jpg board_url: - - "https://bdmicro.com/products/vina-d51" -board_image: "bdmicro_vina_d51.jpg" -date_added: 2021-5-26 +- https://bdmicro.com/products/vina-d51 +date_added: 2021-05-26 12:00:00 family: atmel-samd features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: BDMICRO, LLC +name: VINA-D51 (PCB 7) +title: Vina-D51 (PCB 7) Download --- The VINA-D51 is a powerful, robust, pluggable control module designed for modular control applications, even in harsh environments. Built with all-industrial grade components, latching connectors and features, it is well-suited for a wide variety of automation and control applications. diff --git a/_board/beetle-esp32-c3.md b/_board/beetle-esp32-c3.md index 563e8c233f..b8779fb93e 100644 --- a/_board/beetle-esp32-c3.md +++ b/_board/beetle-esp32-c3.md @@ -1,24 +1,24 @@ --- -layout: download -board_id: "beetle-esp32-c3" -title: "DFRobot Beetle ESP32-C3 Download" -name: "DFRobot Beetle ESP32-C3" -manufacturer: "DFRobot" +blinka: false +board_id: beetle-esp32-c3 +board_image: beetle-esp32-c3.png board_url: - - "https://wiki.dfrobot.com/SKU_DFR0868_Beetle_ESP32_C3" -board_image: "beetle-esp32-c3.png" -date_added: 2022-07-17 +- https://wiki.dfrobot.com/SKU_DFR0868_Beetle_ESP32_C3 +bootloader_id: lolin_c3_mini +date_added: 2022-07-17 12:00:00 downloads_display: true -blinka: false family: esp32c3 -bootloader_id: lolin_c3_mini features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - External Display - - USB-C - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- External Display +- USB-C +- Wi-Fi +layout: download +manufacturer: DFRobot +name: DFRobot Beetle ESP32-C3 +title: DFRobot Beetle ESP32-C3 Download --- Beetle ESP32-C3, mainly intended for IoT applications, is a controller based on diff --git a/_board/bless_dev_board_multi_sensor.md b/_board/bless_dev_board_multi_sensor.md index 86fd9611c8..93847814ea 100644 --- a/_board/bless_dev_board_multi_sensor.md +++ b/_board/bless_dev_board_multi_sensor.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "bless_dev_board_multi_sensor" -title: "BLE-SS Dev Board Multi Sensor Download" -name: "BLE-SS Dev Board Multi Sensor" -manufacturer: "Switch Science, Inc" +board_id: bless_dev_board_multi_sensor +board_image: bless_dev_board_multi_sensor.jpg board_url: - - "http://ssci.to/6250" -board_image: "bless_dev_board_multi_sensor.jpg" +- http://ssci.to/6250 +bootloader_id: aramcon_badge_2019 +date_added: 2020-07-27 12:00:00 downloads_display: true -date_added: 2020-07-27 family: nrf52840 -bootloader_id: aramcon_badge_2019 -features: +features: null +layout: download +manufacturer: Switch Science, Inc +name: BLE-SS Dev Board Multi Sensor +title: BLE-SS Dev Board Multi Sensor Download --- This development board includes a Bluetooth Low Energy-enabled ISP1807 from Insight SiP (based on the nRF52840) and six sensors: acceleration, magnetism, gyro, temperature, humidity and air pressure. diff --git a/_board/blm_badge.md b/_board/blm_badge.md index 8fc9203927..09538aef8c 100644 --- a/_board/blm_badge.md +++ b/_board/blm_badge.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "blm_badge" -title: "BLM Badge Download" -name: "BLM Badge" -manufacturer: "Adafruit" +board_id: blm_badge +board_image: blmbadge.jpg board_url: - - "https://github.com/adafruit/BLM-Badge-PCB" - - "https://www.adafruit.com/product/4703" -board_image: "blmbadge.jpg" -date_added: 2020-9-1 -family: atmel-samd +- https://github.com/adafruit/BLM-Badge-PCB +- https://www.adafruit.com/product/4703 bootloader_id: blm_badge +date_added: 2020-09-01 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC - - USB-C +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: Adafruit +name: BLM Badge +title: BLM Badge Download --- The Black Lives Matter Education & Workshop Kit is an open-source design the Adafruit team published during the peaceful demonstrations for social justice in the summer of 2020 (https://github.com/adafruit/BLM-Badge-PCB). As a company and culture we came together to make our voices heard, share the pain we all had, the anger, and then work together for equality and justice in our communities (https://www.adafruit.com/blacklivesmatter). We listened to each other, we marched, we donated our time, resources, we distributed PPE at community events, we came together. diff --git a/_board/bluemicro833.md b/_board/bluemicro833.md index 875eb69c70..b49842d865 100644 --- a/_board/bluemicro833.md +++ b/_board/bluemicro833.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "bluemicro833" -title: "BlueMicro833 Download" -name: "BlueMicro833" -manufacturer: "JPConstantineau" +board_id: bluemicro833 +board_image: bluemicro833.jpg board_url: - - "http://nrf52.jpconstantineau.com/docs/bluemicro833" -board_image: "bluemicro833.jpg" -date_added: 2021-12-28 -family: nrf52840 +- http://nrf52.jpconstantineau.com/docs/bluemicro833 bootloader_id: bluemicro_nrf52833 +date_added: 2021-12-28 12:00:00 +family: nrf52840 features: - - USB-C - - Breadboard-Friendly - - Bluetooth/BTLE - - Battery Charging +- USB-C +- Breadboard-Friendly +- Bluetooth/BTLE +- Battery Charging +layout: download +manufacturer: JPConstantineau +name: BlueMicro833 +title: BlueMicro833 Download --- The BlueMicro833 is a nRF52833 controller with the footprint of an Arduino Pro Micro and a USB-C connector. It uses the EByte E73-2GM08S1E nRF52833 module, has a Neopixel and software controller 3.3 V regulator that can turn on/off power to external devices. It's based on the BlueMicro840 design but uses the internal voltage regulator to run. Just like other Bluemicros, there is a LiPo battery charger on board. diff --git a/_board/bluemicro840.md b/_board/bluemicro840.md index 073daeabfe..90b2fd0afd 100644 --- a/_board/bluemicro840.md +++ b/_board/bluemicro840.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "bluemicro840" -title: "BlueMicro840 Download" -name: "BlueMicro840" -manufacturer: "JPConstantineau" +board_id: bluemicro840 +board_image: bluemicro840.jpg board_url: - - "http://nrf52.jpconstantineau.com/docs/bluemicro840_v1" -board_image: "bluemicro840.jpg" -date_added: 2021-08-08 -family: nrf52840 +- http://nrf52.jpconstantineau.com/docs/bluemicro840_v1 bootloader_id: bluemicro_nrf52840 +date_added: 2021-08-08 12:00:00 +family: nrf52840 features: - - USB-C - - Breadboard-Friendly - - Bluetooth/BTLE - - Battery Charging +- USB-C +- Breadboard-Friendly +- Bluetooth/BTLE +- Battery Charging +layout: download +manufacturer: JPConstantineau +name: BlueMicro840 +title: BlueMicro840 Download --- The BlueMicro840 is a nRF52840 controller inspired on the Adafruit nRF52840 feather but with the footprint of an Arduino Pro Micro and a USB-C connector. diff --git a/_board/boardsource_blok.md b/_board/boardsource_blok.md index 0c93d29f42..78af566a27 100644 --- a/_board/boardsource_blok.md +++ b/_board/boardsource_blok.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "boardsource_blok" -title: "Blok Download" -name: "Blok" -manufacturer: "Boardsource" +board_id: boardsource_blok +board_image: boardsource_blok.jpg board_url: - - "https://boardsource.xyz/store/628b95b494dfa308a6581622" -board_image: "boardsource_blok.jpg" -date_added: 2021-4-6 +- https://boardsource.xyz/store/628b95b494dfa308a6581622 +date_added: 2021-04-06 12:00:00 family: raspberrypi features: - - Breadboard-Friendly - - USB-C +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: Boardsource +name: Blok +title: Blok Download --- Blok’s elevate any keyboard compatible with Pro Micro Footprints and grants them instant access to a modern and feature-rich ecosystem. Users who don’t want to touch a text editor or config file don’t have to, Blok’s work out of the box with Peg. Users can map keys, set LED colors, configure rotary encoders, create OLED images, and much more all from within an easy to use visual program (GUI). Many of Peg’s features and configuration options are unavailable through any other flashing program built for yesterday’s ATmega32U4 processors. Now, deep configuration and rich features custom keyboards offer can be configured easily instead of becoming another project. On the other hand, users who enjoy in-the-editor programming, product development, design, or any other roll your solution will similarly love the Blok. Shipping with KMK and CircuitPython out of the box, Blok’s offer enthusiasts and creators a modern development environment limited only by your imagination instead of programming knowledge and hardware constraints. Create your entire keymap in Python within a single main.py file and test your changes instantly, no recompiling necessary. Remember, if this isn’t your thing — Peg can handle it for you. diff --git a/_board/bpi_bit_s2.md b/_board/bpi_bit_s2.md index 826e0069e5..8cef6b2d82 100644 --- a/_board/bpi_bit_s2.md +++ b/_board/bpi_bit_s2.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "bpi_bit_s2" -title: "BPI-Bit-S2 Download" -name: "BPI-Bit-S2" -manufacturer: "Banana Pi" +board_id: bpi_bit_s2 +board_image: bpi_bit_s2.jpg board_url: - - "https://wiki.banana-pi.org/BPI-Bit-S2" -board_image: "bpi_bit_s2.jpg" -date_added: 2022-9-14 -family: esp32s2 +- https://wiki.banana-pi.org/BPI-Bit-S2 bootloader_id: bpi_bit_s2 +date_added: 2022-09-14 12:00:00 +family: esp32s2 features: - - USB-C - - Wi-Fi - - Solder-Free Alligator Clip - - Speaker +- USB-C +- Wi-Fi +- Solder-Free Alligator Clip +- Speaker +layout: download +manufacturer: Banana Pi +name: BPI-Bit-S2 +title: BPI-Bit-S2 Download --- The BPI-Bit-S2 is a development board equipped ESP32-S2 chip, with 5x5 RGB LED matrix, 1 buzzer, 2 photosensitive sensors, 1 thermosensitive sensor, provides Wi-Fi functions via PCB antenna. diff --git a/_board/bpi_leaf_s3.md b/_board/bpi_leaf_s3.md index c0c0793480..51c9d5273a 100644 --- a/_board/bpi_leaf_s3.md +++ b/_board/bpi_leaf_s3.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "bpi_leaf_s3" -title: "BPI-Leaf-S3 Download" -name: "BPI-Leaf-S3" -manufacturer: "Banana Pi" +board_id: bpi_leaf_s3 +board_image: bpi_leaf_s3.jpg board_url: - - "https://wiki.banana-pi.org/BPI-Leaf-S3" -board_image: "bpi_leaf_s3.jpg" -date_added: 2022-7-4 -family: esp32s3 +- https://wiki.banana-pi.org/BPI-Leaf-S3 bootloader_id: bpi_leaf_s3 +date_added: 2022-07-04 12:00:00 +family: esp32s3 features: - - USB-C - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - - Battery Charging - - STEMMA QT/QWIIC +- USB-C +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +- Battery Charging +- STEMMA QT/QWIIC +layout: download +manufacturer: Banana Pi +name: BPI-Leaf-S3 +title: BPI-Leaf-S3 Download --- The BPI-Leaf-S3 is a basic development board equipped ESP32-S3R2 chip , provides Wi-Fi and Bluetooth LE functions via PCB antenna. @@ -41,4 +41,4 @@ up to 240 MHz; 2.4G Wi-Fi + Bluetooth LE; RISC-V Ultra Low Power Co-processor; * ## Purchase -[Aliexpress shop](https://www.aliexpress.com/item/1005004428945296.html?spm=5261.ProductManageOnline.0.0.48af4edfYbyEoI) \ No newline at end of file +[Aliexpress shop](https://www.aliexpress.com/item/1005004428945296.html?spm=5261.ProductManageOnline.0.0.48af4edfYbyEoI) diff --git a/_board/bpi_picow_s3.md b/_board/bpi_picow_s3.md index 558476b563..ce62e09c6a 100644 --- a/_board/bpi_picow_s3.md +++ b/_board/bpi_picow_s3.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "bpi_picow_s3" -title: "BPI-PicoW-S3 Download" -name: "BPI-PicoW-S3" -manufacturer: "Banana Pi" +board_id: bpi_picow_s3 +board_image: bpi_picow_s3.jpg board_url: - - "https://wiki.banana-pi.org/BPI-PicoW-S3" -board_image: "bpi_picow_s3.jpg" -date_added: 2022-10-11 -family: esp32s3 +- https://wiki.banana-pi.org/BPI-PicoW-S3 bootloader_id: bpi_picow_s3 +date_added: 2022-10-11 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Banana Pi +name: BPI-PicoW-S3 +title: BPI-PicoW-S3 Download --- BPI-Pico-S3 is the same size as Raspberry Pi Pico board, equipped with ESP32S3 chip, 8M flash, 4-layer PCB, electroplated half-hole process, ceramic antenna, supports 2.4 GHz Wi-Fi and Bluetooth® LE dual-mode wireless communication, is a development board designed for IoT development and Maker DIY. @@ -39,4 +38,4 @@ up to 240 MHz; 2.4G Wi-Fi + Bluetooth LE; RISC-V Ultra Low Power Co-processor; * ## Purchase -[Aliexpress shop](https://www.aliexpress.com/item/1005004775634442.html) \ No newline at end of file +[Aliexpress shop](https://www.aliexpress.com/item/1005004775634442.html) diff --git a/_board/brainboardz_neuron.md b/_board/brainboardz_neuron.md index 10d53fd87b..8e7bd148a5 100644 --- a/_board/brainboardz_neuron.md +++ b/_board/brainboardz_neuron.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "brainboardz_neuron" -title: "BrainBoardz Neuron Download" -name: "BrainBoardz Neuron" -manufacturer: "BrainBoardz Inc." +board_id: brainboardz_neuron +board_image: brainboardz_neuron.jpg board_url: - - "https://www.brainboardz.com" -board_image: "brainboardz_neuron.jpg" -date_added: 2023-02-20 -family: esp32s3 +- https://www.brainboardz.com bootloader_id: brainboardz_neuron +date_added: 2023-02-20 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: BrainBoardz Inc. +name: BrainBoardz Neuron +title: BrainBoardz Neuron Download --- - BrainBoardz is a revolutionary modular Mini PCI Express (mPCIe) based system that greatly simplifies the design of circuit boards and custom microcontroller projects. Through the use of our inexpensive ESP32-S3 based Neuron modules and our ever expanding range of BrainBoardz prototyping boards anyone can easily develop custom projects to harness the impressive capabilities of the latest generation Espressif ESP32-S3 microcontroller. Simply plug in a Neuron module to a BrainBoardz mPCIe connector and you are ready to go. Neurons not only provide complete access to the extensive range of capabilities provided by the cutting edge ESP32-S3, they can also function as standalone modules if required. You are welcome to design/manufacture your own BrainBoardz compatible boards and Neuron compatible module(s). The entire BrainBoardz system is open source and 100% license free. @@ -50,6 +50,3 @@ features: ## Purchase: * [BrainBoardz](https://www.brainboardz.com/) - - - diff --git a/_board/breadstick_raspberry.md b/_board/breadstick_raspberry.md index e8c1bda82c..d12e359f5f 100644 --- a/_board/breadstick_raspberry.md +++ b/_board/breadstick_raspberry.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "breadstick_raspberry" -title: "Raspberry Breadstick Download" -name: "Raspberry Breadstick" -manufacturer: "Breadstick Innovations" +board_id: breadstick_raspberry +board_image: breadstick_raspberry.jpg board_url: - - "https://github.com/Breadstick-Innovations/Raspberry-Breadstick" - - "https://www.crowdsupply.com/breadstick-innovations/raspberry-breadstick" -board_image: "breadstick_raspberry.jpg" -date_added: 2023-12-14 +- https://github.com/Breadstick-Innovations/Raspberry-Breadstick +- https://www.crowdsupply.com/breadstick-innovations/raspberry-breadstick +date_added: 2023-12-14 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Breadstick Innovations +name: Raspberry Breadstick +title: Raspberry Breadstick Download --- Raspberry Breadstick is a long, lean, delicious development board with a unique form factor that simplifies your journey into the world of electronics. Whether your goal is to build a robot or an interactive art piece, you’ll begin by prototyping with a microcontroller development-board and a breadboard. Doing this with traditional dev-boards quickly leads to a tangled mess of jumper wires. The Raspberry Breadstick spreads its I/O pins out along the length of the breadboard, eliminating the need for long jumper wires, and delivers a clean prototyping experience that is easier to understand and troubleshoot. diff --git a/_board/bwshockley_figpi.md b/_board/bwshockley_figpi.md index 69081e270c..f3540f9c55 100644 --- a/_board/bwshockley_figpi.md +++ b/_board/bwshockley_figpi.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "bwshockley_figpi" -title: "FigPi Download" -name: "FigPi" -manufacturer: "Benjamin Shockley" +board_id: bwshockley_figpi +board_image: bwshockley_figpi.jpg board_url: - - "https://minifigboards.com/fig-pi" -board_image: "bwshockley_figpi.jpg" -date_added: 2022-8-22 +- https://minifigboards.com/fig-pi +date_added: 2022-08-22 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC +- STEMMA QT/QWIIC +layout: download +manufacturer: Benjamin Shockley +name: FigPi +title: FigPi Download --- Fig Pi is a minifigure-sized development board based on the Raspberry Pi Foundation RP2040 Dual Cortex®-M0+ MCU running at 133Mhz with 16 I/O, one built-in LED around back, a 3x3 matrix of RGB LEDs, built-in Button, and an extra 2MB of memory. Additionally, the Fig Pi has STEMMA QT/Qwiic 4-pin JST SH connectors on the back that support two I2C ST QT/ QW connectors, an SPI connector, ADC connector, Digital connector, and a battery connector (2-pin JST SH). diff --git a/_board/capablerobot_usbhub.md b/_board/capablerobot_usbhub.md index f6fc90316d..8bab0ea855 100644 --- a/_board/capablerobot_usbhub.md +++ b/_board/capablerobot_usbhub.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "capablerobot_usbhub" -title: "Programmable USB Hub Download" -name: "Programmable USB Hub" -manufacturer: "Capable Robot Components" +board_id: capablerobot_usbhub +board_image: capablerobot_usbhub.jpg board_url: - - "https://www.crowdsupply.com/capable-robot-components/programmable-usb-hub" -board_image: "capablerobot_usbhub.jpg" -date_added: 2019-5-25 -family: atmel-samd +- https://www.crowdsupply.com/capable-robot-components/programmable-usb-hub bootloader_id: capablerobot_usbhub +date_added: 2019-05-25 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC +- STEMMA QT/QWIIC +layout: download +manufacturer: Capable Robot Components +name: Programmable USB Hub +title: Programmable USB Hub Download --- In addition to being a 4-port USB 2 High-Speed hub, this Programmable USB hub is also: diff --git a/_board/catwan_usbstick.md b/_board/catwan_usbstick.md index 6d82475551..f82d0487fb 100644 --- a/_board/catwan_usbstick.md +++ b/_board/catwan_usbstick.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "catwan_usbstick" -title: "CatWAN USB Stick Download" -name: "CatWAN USB Stick" -manufacturer: "Electronic Cats" +board_id: catwan_usbstick +board_image: catwan_usbstick.jpg board_url: - - "https://electroniccats.com/producto/catwan_usb-stick/" -board_image: "catwan_usbstick.jpg" -date_added: 2019-4-2 +- https://electroniccats.com/producto/catwan_usb-stick/ +date_added: 2019-04-02 12:00:00 family: atmel-samd features: - - LoRa/Radio +- LoRa/Radio +layout: download +manufacturer: Electronic Cats +name: CatWAN USB Stick +title: CatWAN USB Stick Download --- Are you interested in learning how LoRa works at the package level? Debugging your own LoRa hardware and trying to detect where something is wrong? Or maybe you’re writing a custom application for your Internet of Things (IoT) network with LoraWAN? diff --git a/_board/challenger_840.md b/_board/challenger_840.md index a684357fb2..77c6f4ff76 100644 --- a/_board/challenger_840.md +++ b/_board/challenger_840.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "challenger_840" -title: "Challenger 840 BLE Download" -name: "Challenger 840 BLE" -manufacturer: "Invector Labs" +board_id: challenger_840 +board_image: challenger_840.jpg board_url: - - "https://ilabs.se/product/challenger-840-ble/" -board_image: "challenger_840.jpg" -date_added: 2022-4-1 +- https://ilabs.se/product/challenger-840-ble/ +date_added: 2022-04-01 12:00:00 family: nrf52840 features: - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly - - Feather-Compatible - - Battery Charging +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Invector Labs +name: Challenger 840 BLE +title: Challenger 840 BLE Download --- The Challenger 840 BLE board is an Arduino/Circuitpython compatible Adafruit Feather format micro controller board packed with loads of functionality for your projects that require low power consumption and a BLE connection. @@ -48,4 +48,3 @@ The board is packed with hardware features, here’s a short list of its most pr ## Purchase * [Invector Labs](https://ilabs.se/product/challenger-840-ble/) - diff --git a/_board/challenger_nb_rp2040_wifi.md b/_board/challenger_nb_rp2040_wifi.md index 88e62bdd93..e846c88ed0 100644 --- a/_board/challenger_nb_rp2040_wifi.md +++ b/_board/challenger_nb_rp2040_wifi.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "challenger_nb_rp2040_wifi" -title: "Challenger NB RP2040 WiFi Download" -name: "Challenger NB RP2040 WiFi" -manufacturer: "Invector Labs" +board_id: challenger_nb_rp2040_wifi +board_image: challenger_nb_rp2040_wifi.jpg board_url: - - "https://www.tindie.com/products/invector/challenger-nb-rp2040-wifi/" -board_image: "challenger_nb_rp2040_wifi.jpg" -date_added: 2021-11-15 +- https://www.tindie.com/products/invector/challenger-nb-rp2040-wifi/ +date_added: 2021-11-15 12:00:00 family: raspberrypi features: - - Wi-Fi - - USB-C - - Breadboard-Friendly - - Feather-Compatible +- Wi-Fi +- USB-C +- Breadboard-Friendly +- Feather-Compatible +layout: download +manufacturer: Invector Labs +name: Challenger NB RP2040 WiFi +title: Challenger NB RP2040 WiFi Download --- The Challenger NB RP2040 WiFi is an Arduino/Micropython compatible **Challenger NB** (NB for No Battery) format micro controller board based on the Raspberry Pico chip. The **Challenger NB** form factor is based on Adafruits Feather format but we have removed the battery connector, LiPo charger and instead added a bunch of IO pins. It has retained most of the original Feather pinout so most (all) existing feather wings should work nicely with this board as well. @@ -43,4 +43,3 @@ The ESP8285 chip comes pre-flashed with Espressif’s AT command interpreter sto ## Purchase * [Tindie](https://www.tindie.com/products/invector/challenger-nb-rp2040-wifi/) - diff --git a/_board/challenger_rp2040_lora.md b/_board/challenger_rp2040_lora.md index 19bd100ba1..ccabe4231c 100644 --- a/_board/challenger_rp2040_lora.md +++ b/_board/challenger_rp2040_lora.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "challenger_rp2040_lora" -title: "Challenger RP2040 LoRa Download" -name: "Challenger RP2040 LoRa" -manufacturer: "Invector Labs" +board_id: challenger_rp2040_lora +board_image: challenger_rp2040_lora.jpg board_url: - - "https://www.tindie.com/products/invector/challenger-rp2040-lora-915mhz/" - - "https://thepihut.com/products/challenger-rp2040-lora-868mhz" -board_image: "challenger_rp2040_lora.jpg" -date_added: 2022-6-9 +- https://www.tindie.com/products/invector/challenger-rp2040-lora-915mhz/ +- https://thepihut.com/products/challenger-rp2040-lora-868mhz +date_added: 2022-06-09 12:00:00 family: raspberrypi features: - - LoRa/Radio - - Battery Charging - - Feather-Compatible - - USB-C - - Breadboard-Friendly +- LoRa/Radio +- Battery Charging +- Feather-Compatible +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Invector Labs +name: Challenger RP2040 LoRa +title: Challenger RP2040 LoRa Download --- The iLabs Challenger RP2040 LoRa is a small embedded computer equipped with a LoRa modem module on board, in the popular [Adafruit Feather form factor](https://www.adafruit.com/?q=feather). It is based on an RP2040 microcontroller from Raspberry Pi which is a dual-core Cortex M0 that can run on a clock up to 133MHz. diff --git a/_board/challenger_rp2040_lte.md b/_board/challenger_rp2040_lte.md index e8e64fc23e..73610f4bea 100644 --- a/_board/challenger_rp2040_lte.md +++ b/_board/challenger_rp2040_lte.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "challenger_rp2040_lte" -title: "Challenger RP2040 LTE Download" -name: "Challenger RP2040 LTE" -manufacturer: "Invector Labs" +board_id: challenger_rp2040_lte +board_image: challenger_rp2040_lte.jpg board_url: - - "https://www.tindie.com/products/invector/challenger-rp2040-lte/" -board_image: "challenger_rp2040_lte.jpg" -date_added: 2021-11-15 +- https://www.tindie.com/products/invector/challenger-rp2040-lte/ +date_added: 2021-11-15 12:00:00 family: raspberrypi features: - - Wi-Fi - - USB-C - - Breadboard-Friendly - - Feather-Compatible +- Wi-Fi +- USB-C +- Breadboard-Friendly +- Feather-Compatible +layout: download +manufacturer: Invector Labs +name: Challenger RP2040 LTE +title: Challenger RP2040 LTE Download --- The Challenger RP2040 LTE is an Arduino/CircuitPython compatible Adafruit Feather format microcontroller board based on the Raspberry Pico chip. @@ -43,4 +43,3 @@ This board has been designed with portable applications in mind. By using the po ## Purchase * [Tindie](https://www.tindie.com/products/invector/challenger-rp2040-lte/) - diff --git a/_board/challenger_rp2040_sdrtc.md b/_board/challenger_rp2040_sdrtc.md index 04e2b40538..6822dcea9b 100644 --- a/_board/challenger_rp2040_sdrtc.md +++ b/_board/challenger_rp2040_sdrtc.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "challenger_rp2040_sdrtc" -title: "Challenger RP2040 SD/RTC Download" -name: "Challenger RP2040 SD/RTC" -manufacturer: "Invector Labs" +board_id: challenger_rp2040_sdrtc +board_image: challenger_rp2040_sdrtc.jpg board_url: - - "https://ilabs.se/product/challenger-rp2040-sd-rtc/" -board_image: "challenger_rp2040_sdrtc.jpg" -date_added: 2022-12-23 +- https://ilabs.se/product/challenger-rp2040-sd-rtc/ +date_added: 2022-12-23 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly - - Feather-Compatible - - Battery Charging +- USB-C +- Breadboard-Friendly +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Invector Labs +name: Challenger RP2040 SD/RTC +title: Challenger RP2040 SD/RTC Download --- The Challenger RP2040 SD/RTC is an Arduino/Circuitpython compatible Adafruit Feather format micro controller board based on the Raspberry Pico chip. This board is equipped with an micro SD card reader and a Real Time Clock making it super useful for data logging applications. diff --git a/_board/challenger_rp2040_subghz.md b/_board/challenger_rp2040_subghz.md index 2fcd9c9083..50e16bd424 100644 --- a/_board/challenger_rp2040_subghz.md +++ b/_board/challenger_rp2040_subghz.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "challenger_rp2040_subghz" -title: "Challenger RP2040 SubGHz Download" -name: "Challenger RP2040 SubGHz" -manufacturer: "Invector Labs" +board_id: challenger_rp2040_subghz +board_image: challenger_rp2040_subghz.jpg board_url: - - "https://ilabs.se/product/challenger-rp2040-subghz-915mhz/" -board_image: "challenger_rp2040_subghz.jpg" -date_added: 2022-10-6 +- https://ilabs.se/product/challenger-rp2040-subghz-915mhz/ +date_added: 2022-10-06 12:00:00 family: raspberrypi features: - - LoRa/Radio - - USB-C - - Breadboard-Friendly - - Feather-Compatible - - Battery Charging +- LoRa/Radio +- USB-C +- Breadboard-Friendly +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Invector Labs +name: Challenger RP2040 SubGHz +title: Challenger RP2040 SubGHz Download --- The Challenger RP2040 SubGHz board is an Arduino/Circuitpython compatible Adafruit Feather format micro controller board based on the Raspberry Pico (RP2040) chip. @@ -48,4 +48,3 @@ The RFM69HCW is connected to the RP2040 via SPI channel 1 and a few GPIO’s tha * [Invector Labs (868MHz)](https://ilabs.se/product/challenger-rp2040-subghz-868mhz/) * [Invector Labs (915MHz)](https://ilabs.se/product/challenger-rp2040-subghz-915mhz/) - diff --git a/_board/challenger_rp2040_wifi.md b/_board/challenger_rp2040_wifi.md index 6a9f068928..812f8ecdd9 100644 --- a/_board/challenger_rp2040_wifi.md +++ b/_board/challenger_rp2040_wifi.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "challenger_rp2040_wifi" -title: "Challenger RP2040 WiFi Download" -name: "Challenger RP2040 WiFi" -manufacturer: "Invector Labs" +board_id: challenger_rp2040_wifi +board_image: challenger_rp2040_wifi.jpg board_url: - - "https://www.tindie.com/products/invector/challenger-rp2040-wifi/" -board_image: "challenger_rp2040_wifi.jpg" -date_added: 2021-9-16 +- https://www.tindie.com/products/invector/challenger-rp2040-wifi/ +date_added: 2021-09-16 12:00:00 family: raspberrypi features: - - Wi-Fi - - USB-C - - Breadboard-Friendly - - Feather-Compatible - - Battery Charging +- Wi-Fi +- USB-C +- Breadboard-Friendly +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Invector Labs +name: Challenger RP2040 WiFi +title: Challenger RP2040 WiFi Download --- The Challenger RP2040 WiFi is an Arduino/Micropython compatible Adafruit Feather format micro controller board based on the Raspberry Pico chip. @@ -45,4 +45,3 @@ Just like the Challenger M0 WiFi it has a ESP8285 WiFi chip. For those of you th ## Purchase * [Tindie](https://www.tindie.com/products/invector/challenger-rp2040-wifi/) - diff --git a/_board/challenger_rp2040_wifi_ble.md b/_board/challenger_rp2040_wifi_ble.md index 4f636ded04..1c007e03e8 100644 --- a/_board/challenger_rp2040_wifi_ble.md +++ b/_board/challenger_rp2040_wifi_ble.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "challenger_rp2040_wifi_ble" -title: "Challenger RP2040 WiFi/BLE Download" -name: "Challenger RP2040 WiFi/BLE" -manufacturer: "Invector Labs" +board_id: challenger_rp2040_wifi_ble +board_image: challenger_rp2040_wifi_ble.jpg board_url: - - "https://ilabs.se/product/challenger-rp2040-wifi-ble-with-chip-antenna/" -board_image: "challenger_rp2040_wifi_ble.jpg" -date_added: 2022-10-6 +- https://ilabs.se/product/challenger-rp2040-wifi-ble-with-chip-antenna/ +date_added: 2022-10-06 12:00:00 family: raspberrypi features: - - Wi-Fi - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly - - Feather-Compatible - - Battery Charging +- Wi-Fi +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Invector Labs +name: Challenger RP2040 WiFi/BLE +title: Challenger RP2040 WiFi/BLE Download --- The Challenger RP2040 WiFi/BLE is an Arduino/Micropython compatible Adafruit Feather format micro controller board based on the Raspberry Pico chip, equipped with an WiFi/BLE chip that provides both WiFi as well as BLE functionality on the board. @@ -32,4 +32,3 @@ The ESP32-C3 device comes pre loaded with the ESP-AT interpreter already program * [Invector Labs (Chip Antenna)](https://ilabs.se/product/challenger-rp2040-wifi-ble-with-chip-antenna/) * [Invector Labs (U.FL Connector)](https://ilabs.se/product/challenger-rp2040-wifi-ble-with-u-fl-connector/) - diff --git a/_board/circuitbrains_basic_m0.md b/_board/circuitbrains_basic_m0.md index d61462af75..1878a19efa 100644 --- a/_board/circuitbrains_basic_m0.md +++ b/_board/circuitbrains_basic_m0.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "circuitbrains_basic_m0" -title: "CircuitBrains Basic Download" -name: "CircuitBrains Basic" -manufacturer: "Null Byte Labs LLC" +blinka: false +board_id: circuitbrains_basic_m0 +board_image: circuitbrains_basic.jpg board_url: - - "https://github.com/neubauek/CircuitBrains" -board_image: "circuitbrains_basic.jpg" -date_added: 2020-2-27 -family: atmel-samd +- https://github.com/neubauek/CircuitBrains bootloader_id: circuitbrains_basic_m0 +date_added: 2020-02-27 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" +family: atmel-samd +layout: download +manufacturer: Null Byte Labs LLC +name: CircuitBrains Basic +title: CircuitBrains Basic Download --- CircuitPython on an ARM Cortex M0 in 1 square inch! This "Just Add Solder" castellated module is perfect for incorporating into your own project. The CircuitBrains Basic board footprint is small enough to fit into narrow spaces and wearable projects. diff --git a/_board/circuitbrains_deluxe_m4.md b/_board/circuitbrains_deluxe_m4.md index 7edd2fd3ec..2ef5d629b7 100644 --- a/_board/circuitbrains_deluxe_m4.md +++ b/_board/circuitbrains_deluxe_m4.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "circuitbrains_deluxe_m4" -title: "CircuitBrains Deluxe Download" -name: "CircuitBrains Deluxe" -manufacturer: "Null Byte Labs LLC" +blinka: false +board_id: circuitbrains_deluxe_m4 +board_image: circuitbrains_deluxe.jpg board_url: - - "https://github.com/neubauek/CircuitBrains" - - "https://www.adafruit.com/product/4802" -board_image: "circuitbrains_deluxe.jpg" -date_added: 2020-2-27 -family: atmel-samd +- https://github.com/neubauek/CircuitBrains +- https://www.adafruit.com/product/4802 bootloader_id: circuitbrains_deluxe_m4 +date_added: 2020-02-27 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" +family: atmel-samd +layout: download +manufacturer: Null Byte Labs LLC +name: CircuitBrains Deluxe +title: CircuitBrains Deluxe Download --- CircuitPython on an ARM Cortex M4 in almost 1 square inch! This "Just Add Solder" castellated module is perfect for incorporating into your own project. The CircuitBrains Deluxe board footprint is small enough to fit into narrow spaces and wearable projects. diff --git a/_board/circuitplayground_bluefruit.md b/_board/circuitplayground_bluefruit.md index 071685f91e..67cf1cfbe9 100644 --- a/_board/circuitplayground_bluefruit.md +++ b/_board/circuitplayground_bluefruit.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "circuitplayground_bluefruit" -title: "Circuit Playground Bluefruit Download" -name: "Circuit Playground Bluefruit" -manufacturer: "Adafruit" +board_id: circuitplayground_bluefruit +board_image: circuitplayground_bluefruit.jpg board_url: - - "https://www.adafruit.com/product/4333" - - "https://www.adafruit.com/product/764" - - "https://www.adafruit.com/product/4504" - - "https://www.adafruit.com/product/4371" -board_image: "circuitplayground_bluefruit.jpg" -date_added: 2019-8-30 -family: nrf52840 +- https://www.adafruit.com/product/4333 +- https://www.adafruit.com/product/764 +- https://www.adafruit.com/product/4504 +- https://www.adafruit.com/product/4371 bootloader_id: circuitplayground_nrf52840 +date_added: 2019-08-30 12:00:00 +family: nrf52840 features: - - Speaker - - Solder-Free Alligator Clip - - Bluetooth/BTLE +- Speaker +- Solder-Free Alligator Clip +- Bluetooth/BTLE +layout: download +manufacturer: Adafruit +name: Circuit Playground Bluefruit +title: Circuit Playground Bluefruit Download --- **Circuit Playground Bluefruit** is our third board in the Circuit Playground series, another step towards a perfect introduction to electronics and programming. We've taken the popular Circuit Playground Express and made it even better! Now the main chip is an nRF52840 microcontroller which is not only more powerful, but also comes with Bluetooth Low Energy support for wireless connectivity. diff --git a/_board/circuitplayground_express.md b/_board/circuitplayground_express.md index c24ac5855a..fe3e0ad64a 100644 --- a/_board/circuitplayground_express.md +++ b/_board/circuitplayground_express.md @@ -1,27 +1,27 @@ --- -layout: download -board_id: "circuitplayground_express" -title: "Circuit Playground Express Download" -name: "Circuit Playground Express" -manufacturer: "Adafruit" +board_id: circuitplayground_express +board_image: circuitplayground_express.jpg board_url: - - "https://www.adafruit.com/product/3333" - - "https://www.adafruit.com/product/3697" - - "https://www.adafruit.com/product/2769" - - "https://www.adafruit.com/product/3517" - - "https://www.adafruit.com/product/4060" - - "https://www.adafruit.com/product/2599" - - "https://www.adafruit.com/product/1394" - - "https://www.adafruit.com/product/3399" - - "https://www.adafruit.com/product/3795" - - "https://www.adafruit.com/product/3906" -board_image: "circuitplayground_express.jpg" -date_added: 2018-12-13 -family: atmel-samd +- https://www.adafruit.com/product/3333 +- https://www.adafruit.com/product/3697 +- https://www.adafruit.com/product/2769 +- https://www.adafruit.com/product/3517 +- https://www.adafruit.com/product/4060 +- https://www.adafruit.com/product/2599 +- https://www.adafruit.com/product/1394 +- https://www.adafruit.com/product/3399 +- https://www.adafruit.com/product/3795 +- https://www.adafruit.com/product/3906 bootloader_id: circuitplay_m0 +date_added: 2018-12-13 12:00:00 +family: atmel-samd features: - - Speaker - - Solder-Free Alligator Clip +- Speaker +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Circuit Playground Express +title: Circuit Playground Express Download --- The Circuit Playground Express is Adafruit's flagship educational board designed for CircuitPython. diff --git a/_board/circuitplayground_express_4h.md b/_board/circuitplayground_express_4h.md index 0036361e45..1f3ae6e5f8 100644 --- a/_board/circuitplayground_express_4h.md +++ b/_board/circuitplayground_express_4h.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "circuitplayground_express_4h" -title: "Circuit Playground Express 4-H Download" -name: "Circuit Playground Express 4-H" -manufacturer: "Adafruit" +board_id: circuitplayground_express_4h +board_image: circuitplayground_express_4h.jpg board_url: - - "https://www.adafruit.com/product/4180" - - "https://www.adafruit.com/product/4241" - - "https://www.adafruit.com/product/4263" -board_image: "circuitplayground_express_4h.jpg" -date_added: 2019-4-13 -family: atmel-samd +- https://www.adafruit.com/product/4180 +- https://www.adafruit.com/product/4241 +- https://www.adafruit.com/product/4263 bootloader_id: circuitplay_m0 +date_added: 2019-04-13 12:00:00 +family: atmel-samd features: - - Speaker - - Solder-Free Alligator Clip +- Speaker +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Circuit Playground Express 4-H +title: Circuit Playground Express 4-H Download --- The Circuit Playground Express is Adafruit's flagship educational board designed for CircuitPython. diff --git a/_board/circuitplayground_express_crickit.md b/_board/circuitplayground_express_crickit.md index ffb8506d12..b2e8f1ff01 100644 --- a/_board/circuitplayground_express_crickit.md +++ b/_board/circuitplayground_express_crickit.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "circuitplayground_express_crickit" -title: "Circuit Playground Express + Crickit Download" -name: "Circuit Playground Express + Crickit" -manufacturer: "Adafruit" +board_id: circuitplayground_express_crickit +board_image: circuitplayground_express_crickit.jpg board_url: - - "https://www.adafruit.com/product/3093" -board_image: "circuitplayground_express_crickit.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3093 bootloader_id: circuitplay_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Speaker - - Robotics - - Solder-Free Alligator Clip +- Speaker +- Robotics +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Circuit Playground Express + Crickit +title: Circuit Playground Express + Crickit Download --- **Crickit** is a **C**reative **R**obotics & **I**nteractive **C**onstruction **Kit**. It's an add-on for the popular Circuit Playground Express that lets you **#MakeRobotFriend** using CircuitPython (and more). diff --git a/_board/circuitplayground_express_digikey_pycon2019.md b/_board/circuitplayground_express_digikey_pycon2019.md index f4f9b8333c..e65adf80d2 100644 --- a/_board/circuitplayground_express_digikey_pycon2019.md +++ b/_board/circuitplayground_express_digikey_pycon2019.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "circuitplayground_express_digikey_pycon2019" -title: "Circuit Playground Express Digi-Key PyCon 2019 Download" -name: "Circuit Playground Express Digi-Key" -manufacturer: "Adafruit" +board_id: circuitplayground_express_digikey_pycon2019 +board_image: circuitplayground_express_digikey_pycon2019.jpg board_url: - - "https://github.com/adafruit/PyCon2019" -board_image: "circuitplayground_express_digikey_pycon2019.jpg" -date_added: 2019-4-13 -family: atmel-samd +- https://github.com/adafruit/PyCon2019 bootloader_id: circuitplay_m0 +date_added: 2019-04-13 12:00:00 +family: atmel-samd features: - - Speaker - - Solder-Free Alligator Clip +- Speaker +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Circuit Playground Express Digi-Key +title: Circuit Playground Express Digi-Key PyCon 2019 Download --- The Circuit Playground Express is Adafruit's flagship educational board designed for CircuitPython. diff --git a/_board/circuitplayground_express_displayio.md b/_board/circuitplayground_express_displayio.md index a25dd47a81..33432ed549 100644 --- a/_board/circuitplayground_express_displayio.md +++ b/_board/circuitplayground_express_displayio.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "circuitplayground_express_displayio" -title: "Circuit Playground Express + Displayio Download" -name: "Circuit Playground Express + Displayio" -manufacturer: "Adafruit" +board_id: circuitplayground_express_displayio +board_image: circuitplayground_express_displayio.jpg board_url: - - "https://www.adafruit.com/product/4367" - - "https://www.adafruit.com/product/4869" - - "https://www.adafruit.com/product/4428" -board_image: "circuitplayground_express_displayio.jpg" -date_added: 2019-10-17 -family: atmel-samd +- https://www.adafruit.com/product/4367 +- https://www.adafruit.com/product/4869 +- https://www.adafruit.com/product/4428 bootloader_id: circuitplay_m0 +date_added: 2019-10-17 12:00:00 +family: atmel-samd features: - - Speaker - - Display - - Solder-Free Alligator Clip +- Speaker +- Display +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Circuit Playground Express + Displayio +title: Circuit Playground Express + Displayio Download --- Extend and expand your Circuit Playground projects with a bolt on TFT Gizmo that lets you add a lovely color display in a sturdy and reliable fashion. This PCB looks just like a round TFT breakout but has permanently affixed M3 standoffs that act as mechanical and electrical connections. diff --git a/_board/clue_nrf52840_express.md b/_board/clue_nrf52840_express.md index 4118c98aeb..4ab76b8817 100644 --- a/_board/clue_nrf52840_express.md +++ b/_board/clue_nrf52840_express.md @@ -1,23 +1,24 @@ --- -layout: download -board_id: "clue_nrf52840_express" -title: "CLUE NRF52840 Express Download" -name: "CLUE NRF52840 Express" -manufacturer: "Adafruit" +board_id: clue_nrf52840_express +board_image: clue_nrf52840_express.jpg board_url: - - "https://www.adafruit.com/product/4500" - - "https://www.adafruit.com/product/4491" - - "https://www.adafruit.com/product/5627" -board_image: "clue_nrf52840_express.jpg" -date_added: 2019-12-30 -family: nrf52840 +- https://www.adafruit.com/product/4500 +- https://www.adafruit.com/product/4491 +- https://www.adafruit.com/product/5627 bootloader_id: clue_nrf52840 +date_added: 2019-12-30 12:00:00 +family: nrf52840 features: - - Display - - Bluetooth/BTLE - - Solder-Free Alligator Clip - - STEMMA QT/QWIIC +- Display +- Bluetooth/BTLE +- Solder-Free Alligator Clip +- STEMMA QT/QWIIC +layout: download +manufacturer: Adafruit +name: CLUE NRF52840 Express +title: CLUE NRF52840 Express Download --- + We wanted to build some projects that have a small screen and a lot of sensors. This board has a 1.3″ 240×240 IPS TFT display, two buttons, and sensors. Available sensors: diff --git a/_board/columbia-dsl-sensor.md b/_board/columbia-dsl-sensor.md index 15fff7b821..6de2d32a9a 100644 --- a/_board/columbia-dsl-sensor.md +++ b/_board/columbia-dsl-sensor.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "columbia-dsl-sensor" -title: "Colombia DSL Sensor Download" -name: "Colombia DSL Sensor" -manufacturer: "Double Take Labs" -board_url: -board_image: "unknown.jpg" -date_added: 2024-2-7 -family: esp32s3 +board_id: columbia-dsl-sensor +board_image: unknown.jpg +board_url: null +date_added: 2024-02-07 12:00:00 downloads_display: false +family: esp32s3 +layout: download +manufacturer: Double Take Labs +name: Colombia DSL Sensor +title: Colombia DSL Sensor Download --- Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/cosmo_pico.md b/_board/cosmo_pico.md index 44920f470d..614ca5a9b6 100644 --- a/_board/cosmo_pico.md +++ b/_board/cosmo_pico.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "cosmo_pico" -title: "COSMO-Pico Download" -name: "COSMO-Pico" -manufacturer: "Potekku" +board_id: cosmo_pico +board_image: cosmo_pico.jpg board_url: - - "https://edtechzine.jp/article/detail/8715" -board_image: "cosmo_pico.jpg" -date_added: 2023-3-1 +- https://edtechzine.jp/article/detail/8715 +date_added: 2023-03-01 12:00:00 family: raspberrypi features: - - Wi-Fi - - Bluetooth/BTLE +- Wi-Fi +- Bluetooth/BTLE +layout: download +manufacturer: Potekku +name: COSMO-Pico +title: COSMO-Pico Download --- Advanced Design Technology provides technology to major companies based on the development and design of integrated circuits such as LSI and FPGA. "Potekku" also utilizes this know-how to provide a curriculum that specializes in manufacturing. @@ -22,4 +22,4 @@ This time, the pre-launch will start for the March launch of "COSMO Editor", whi At the same time, the pre-launch of the board "COSMO Pico", which is suitable for manufacturing and programming learning and has the same CPU as the learning board "Raspberry pi pico", will also start. By using it together with "COSMO Pico", you can make the most of "COSMO Editor", making it easier to learn programming and how things work. -(Translated from [https://edtechzine.jp/article/detail/8715](https://edtechzine.jp/article/detail/8715)) \ No newline at end of file +(Translated from [https://edtechzine.jp/article/detail/8715](https://edtechzine.jp/article/detail/8715)) diff --git a/_board/cp32-m4.md b/_board/cp32-m4.md index e1ff766258..ca7b4e0083 100644 --- a/_board/cp32-m4.md +++ b/_board/cp32-m4.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "cp32-m4" -title: "cp32-m4 Download" -name: "cp32-m4" -manufacturer: "unknown" +board_id: cp32-m4 +board_image: unknown.jpg board_url: - - "https://github.com/siddacious/CP32-M4" -board_image: "unknown.jpg" +- https://github.com/siddacious/CP32-M4 +date_added: 2019-04-05 12:00:00 downloads_display: false -date_added: 2019-4-5 family: atmel-samd -features: +features: null +layout: download +manufacturer: unknown +name: cp32-m4 +title: cp32-m4 Download --- This board hasn't been fully documented yet. Please make a pull request adding more info to this file. diff --git a/_board/cp_sapling_m0.md b/_board/cp_sapling_m0.md index c34b2a5557..aaa5d42c35 100644 --- a/_board/cp_sapling_m0.md +++ b/_board/cp_sapling_m0.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "cp_sapling_m0" -title: "CP Sapling M0 Download" -name: "CP Sapling M0" -manufacturer: "Oak Development Technologies" +board_id: cp_sapling_m0 +board_image: cp_sapling_m0.jpg board_url: - - "https://www.oakdev.tech/store/p7/CP-Sapling-m0-development-board.html#/" -board_image: "cp_sapling_m0.jpg" -date_added: 2020-11-23 -family: atmel-samd +- https://www.oakdev.tech/store/p7/CP-Sapling-m0-development-board.html#/ bootloader_id: cp_sapling_m0 +date_added: 2020-11-23 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC - - Breadboard-Friendly +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Oak Development Technologies +name: CP Sapling M0 +title: CP Sapling M0 Download --- Finally, a tree that runs CircuitPython? YEP! Now you can get working in CircuitPython fast with our new CircuitPython compatible development board featuring the popular Microchip AT SAM D21 microcontroller. diff --git a/_board/cp_sapling_m0_revb.md b/_board/cp_sapling_m0_revb.md index 4bc2cbb8aa..1832dc10b1 100644 --- a/_board/cp_sapling_m0_revb.md +++ b/_board/cp_sapling_m0_revb.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "cp_sapling_m0_revb" -title: "CP Sapling M0 Rev B Download" -name: "CP Sapling M0 Rev B" -manufacturer: "Oak Development Technologies" +board_id: cp_sapling_m0_revb +board_image: cp_sapling_m0_revb.jpg board_url: - - "https://www.oakdev.tech/store/p10/%28Coming_Soon%29_CP_Sapling_Rev_B.html#/" -board_image: "cp_sapling_m0_revb.jpg" -date_added: 2021-6-4 -family: atmel-samd +- https://www.oakdev.tech/store/p10/%28Coming_Soon%29_CP_Sapling_Rev_B.html#/ bootloader_id: cp_sapling_m0 +date_added: 2021-06-04 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC - - Breadboard-Friendly +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Oak Development Technologies +name: CP Sapling M0 Rev B +title: CP Sapling M0 Rev B Download --- Finally, a tree that runs CircuitPython? YEP and it's better than ever! Now you can get working in CircuitPython fast with our new CircuitPython compatible development board featuring the popular Microchip AT SAM D21 microcontroller. diff --git a/_board/cp_sapling_m0_spiflash.md b/_board/cp_sapling_m0_spiflash.md index f18534602d..5716aed304 100644 --- a/_board/cp_sapling_m0_spiflash.md +++ b/_board/cp_sapling_m0_spiflash.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "cp_sapling_m0_spiflash" -title: "CP Sapling M0 with SPI Flash Download" -name: "CP Sapling M0 with SPI Flash" -manufacturer: "Oak Development Technologies" +board_id: cp_sapling_m0_spiflash +board_image: cp_sapling_m0.jpg board_url: - - "https://www.oakdev.tech/store/p7/CP-Sapling-m0-development-board.html#/" -board_image: "cp_sapling_m0.jpg" -date_added: 2021-4-6 -family: atmel-samd +- https://www.oakdev.tech/store/p7/CP-Sapling-m0-development-board.html#/ bootloader_id: cp_sapling_m0 +date_added: 2021-04-06 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC - - Breadboard-Friendly +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Oak Development Technologies +name: CP Sapling M0 with SPI Flash +title: CP Sapling M0 with SPI Flash Download --- Finally, a tree that runs CircuitPython? YEP! Now you can get working in CircuitPython fast with our new CircuitPython compatible development board featuring the popular Microchip AT SAM D21 microcontroller. diff --git a/_board/crcibernetica_ideaboard.md b/_board/crcibernetica_ideaboard.md index b9b760d179..3853ab9fce 100644 --- a/_board/crcibernetica_ideaboard.md +++ b/_board/crcibernetica_ideaboard.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "crcibernetica-ideaboard" -title: "CRCibernetica IdeaBoard Download" -name: "CRCibernetica IdeaBoard" -manufacturer: "CRCibernetica" +board_id: crcibernetica-ideaboard +board_image: crcibernetica_ideaboard.jpg board_url: - - "https://www.crcibernetica.com/crcibernetica-ideaboard/" -board_image: "crcibernetica_ideaboard.jpg" -date_added: 2022-11-13 -family: esp32 +- https://www.crcibernetica.com/crcibernetica-ideaboard/ +date_added: 2022-11-13 12:00:00 downloads_display: true +family: esp32 features: - - Bluetooth/BTLE - - Wi-Fi - - USB-C +- Bluetooth/BTLE +- Wi-Fi +- USB-C +layout: download +manufacturer: CRCibernetica +name: CRCibernetica IdeaBoard +title: CRCibernetica IdeaBoard Download --- The CRCibernetica IdeaBoard is an educational Internet of Things and Robotics development board based on the ESP32 microcontroller. diff --git a/_board/crumpspace_crumps2.md b/_board/crumpspace_crumps2.md index e21275d6c7..2c7c0c1725 100644 --- a/_board/crumpspace_crumps2.md +++ b/_board/crumpspace_crumps2.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "crumpspace_crumps2" -title: "CrumpSpace CrumpS2 Download" -name: "CrumpSpace CrumpS2" -manufacturer: "CrumpSpace" +board_id: crumpspace_crumps2 +board_image: crumpspace_crumps2.jpg board_url: - - "https://github.com/tylercrumpton/CrumpS2" -board_image: "crumpspace_crumps2.jpg" -date_added: 2021-8-13 +- https://github.com/tylercrumpton/CrumpS2 +date_added: 2021-08-13 12:00:00 family: esp32s2 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: CrumpSpace +name: CrumpSpace CrumpS2 +title: CrumpSpace CrumpS2 Download --- The **CrumpS2** is a super-basic CircuitPython-compatible development board for the ESP32-S2 WiFi Microcontroller. It was designed to be easy to assemble while staying low-cost so that anyone can fabricate and assemble for use in you WiFi hardware projects! diff --git a/_board/cytron_edu_pico_w.md b/_board/cytron_edu_pico_w.md index 35bce939f1..f4e7cdce37 100644 --- a/_board/cytron_edu_pico_w.md +++ b/_board/cytron_edu_pico_w.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "cytron_edu_pico_w" -title: "EDU PICO for Pico W Download" -name: "EDU PICO for Pico W" -manufacturer: "Cytron Technologies" +board_id: cytron_edu_pico_w +board_image: cytron_edu_pico_w.jpg board_url: - - "https://www.cytron.io/p-edu-project-and-innovation-kits-for-pico-w" -board_image: "cytron_edu_pico_w.jpg" -date_added: 2024-1-24 +- https://www.cytron.io/p-edu-project-and-innovation-kits-for-pico-w +date_added: 2024-01-24 12:00:00 family: raspberrypi features: - - Battery Charging - - Speaker - - Robotics - - Display +- Battery Charging +- Speaker +- Robotics +- Display +layout: download +manufacturer: Cytron Technologies +name: EDU PICO for Pico W +title: EDU PICO for Pico W Download --- EDU PICO Project and Innovation Kit for Raspberry Pi Pico W – an all-in-one solution designed to inspire creativity, foster learning, and fuel innovation. Whether you're a student, educator, or maker, this kit is your gateway to the exciting world of embedded systems and programming using CircuitPython. diff --git a/_board/cytron_maker_feather_aiot_s3.md b/_board/cytron_maker_feather_aiot_s3.md index 889e3a9010..f488b396d8 100644 --- a/_board/cytron_maker_feather_aiot_s3.md +++ b/_board/cytron_maker_feather_aiot_s3.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "cytron_maker_feather_aiot_s3" -title: "Maker Feather AIoT S3 Download" -name: "Maker Feather AIoT S3" -manufacturer: "Cytron Technologies" +board_id: cytron_maker_feather_aiot_s3 +board_image: cytron_maker_feather_aiot_s3.jpg board_url: - - "www.cytron.io/p-v-maker-feather-aiot-s3-simplifying-aiot-with-esp32" -board_image: "cytron_maker_feather_aiot_s3.jpg" -date_added: 2022-11-25 -family: esp32s3 +- www.cytron.io/p-v-maker-feather-aiot-s3-simplifying-aiot-with-esp32 bootloader_id: cytron_maker_feather_aiot_s3 +date_added: 2022-11-25 12:00:00 +family: esp32s3 features: - - Speaker - - STEMMA QT/QWIIC - - Battery Charging - - Breadboard-Friendly +- Speaker +- STEMMA QT/QWIIC +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Cytron Technologies +name: Maker Feather AIoT S3 +title: Maker Feather AIoT S3 Download --- The Maker Feather AIoT S3 is powered by the ESP32-S3 WROOM 1 N8R8 module with 8MB Flash and 8MB PSRAM. This board allows the users to access both AI and IoT applications on their own projects. Users may choose from two different variants of Maker Feather AIoT S3: Basic (without pre-soldered female headers) and Pre-soldered female headers which the user can use a breadboard to expand all the GPIOs. @@ -48,4 +48,3 @@ This board is pre-loaded with CircuitPython and is also supported by various pro ## Purchase * [Cytron](https://cytron.io/p-v-maker-feather-aiot-s3-simplifying-aiot-with-esp32) - diff --git a/_board/cytron_maker_nano_rp2040.md b/_board/cytron_maker_nano_rp2040.md index aa9e127965..96ab127337 100644 --- a/_board/cytron_maker_nano_rp2040.md +++ b/_board/cytron_maker_nano_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "cytron_maker_nano_rp2040" -title: "Maker Nano RP2040 Download" -name: "Maker Nano RP2040" -manufacturer: "Cytron Technologies" +board_id: cytron_maker_nano_rp2040 +board_image: cytron_maker_nano_rp2040.jpg board_url: - - "https://www.cytron.io/p-maker-nano-rp2040" -board_image: "cytron_maker_nano_rp2040.jpg" -date_added: 2021-12-6 +- https://www.cytron.io/p-maker-nano-rp2040 +date_added: 2021-12-06 12:00:00 family: raspberrypi features: - - Speaker - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Speaker +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Cytron Technologies +name: Maker Nano RP2040 +title: Maker Nano RP2040 Download --- The Maker Nano RP2040 is a small but powerful MCU for your project. Same Arduino Nano form factor, but powered by a RP2040 MCU. This also means that it's compatible with some of the daughter boards for Arduino Nano in the market. Not to forget it's also breadboard friendly to allow building your own circuit. diff --git a/_board/cytron_maker_pi_rp2040.md b/_board/cytron_maker_pi_rp2040.md index 4c5b618cd8..d05ec42a19 100644 --- a/_board/cytron_maker_pi_rp2040.md +++ b/_board/cytron_maker_pi_rp2040.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "cytron_maker_pi_rp2040" -title: "Maker Pi RP2040 Download" -name: "Maker Pi RP2040" -manufacturer: "Cytron Technologies" +board_id: cytron_maker_pi_rp2040 +board_image: cytron_maker_pi_rp2040.jpg board_url: - - "https://www.cytron.io/p-maker-pi-rp2040" - - "https://www.adafruit.com/product/5129" -board_image: "cytron_maker_pi_rp2040.jpg" -date_added: 2021-5-31 +- https://www.cytron.io/p-maker-pi-rp2040 +- https://www.adafruit.com/product/5129 +date_added: 2021-05-31 12:00:00 family: raspberrypi features: - - Battery Charging - - Speaker - - Robotics +- Battery Charging +- Speaker +- Robotics +layout: download +manufacturer: Cytron Technologies +name: Maker Pi RP2040 +title: Maker Pi RP2040 Download --- Cytron Maker Pi RP2040 features the RP2040 chip, embedded on a robot controller board. The board also comes with 2-channel DC motor driver, 4 servo motor ports and 7 Grove I/O connectors, ready for your next DIY robot/motion control projects. diff --git a/_board/cytron_maker_uno_rp2040.md b/_board/cytron_maker_uno_rp2040.md index 64cb1b152a..398d7c34dd 100644 --- a/_board/cytron_maker_uno_rp2040.md +++ b/_board/cytron_maker_uno_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "cytron_maker_uno_rp2040" -title: "Maker Uno RP2040 Download" -name: "Maker Uno RP2040" -manufacturer: "Cytron Technologies" +board_id: cytron_maker_uno_rp2040 +board_image: cytron_maker_uno_rp2040.jpg board_url: - - "https://my.cytron.io/p-maker-uno-rp2040" -board_image: "cytron_maker_uno_rp2040.jpg" -date_added: 2023-12-14 +- https://my.cytron.io/p-maker-uno-rp2040 +date_added: 2023-12-14 12:00:00 family: raspberrypi features: - - Battery Charging - - Arduino Shield Compatible - - Speaker +- Battery Charging +- Arduino Shield Compatible +- Speaker +layout: download +manufacturer: Cytron Technologies +name: Maker Uno RP2040 +title: Maker Uno RP2040 Download --- Introducing the **Maker Uno RP2040**, a revolutionary development board that combines the beloved **Uno form factor** with the powerful dual-core Arm Cortex-M0+ processor chip, the **Raspberry Pi® RP2040**. Packed with Maker Series goodness and enhanced features, this board is designed to elevate both your innovative projects and educational pursuits. diff --git a/_board/datalore_ip_m4.md b/_board/datalore_ip_m4.md index 20916972e1..b7f677d575 100644 --- a/_board/datalore_ip_m4.md +++ b/_board/datalore_ip_m4.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "datalore_ip_m4" -title: "Datalore-IP-M4 Download" -name: "Datalore-IP-M4" -manufacturer: "TG-Techie" +board_id: datalore_ip_m4 +board_image: datalore_ip_m4.jpg board_url: - - "https://github.com/TG-Techie/Datalore-IP-M4" -board_image: "datalore_ip_m4.jpg" -date_added: 2019-4-5 +- https://github.com/TG-Techie/Datalore-IP-M4 +date_added: 2019-04-05 12:00:00 family: atmel-samd -features: +features: null +layout: download +manufacturer: TG-Techie +name: Datalore-IP-M4 +title: Datalore-IP-M4 Download --- Datalore IP M4 is an integrable CircuitPython ready module for soldering onto projects. Like @@ -17,4 +17,4 @@ Datalore IP M4 is an integrable CircuitPython ready module for soldering onto pr ## Learn More * [Twitter](https://twitter.com/tg_techie/status/1143972797691191297) -* [GitHub](https://github.com/TG-Techie/Datalore-IP-M4) \ No newline at end of file +* [GitHub](https://github.com/TG-Techie/Datalore-IP-M4) diff --git a/_board/datanoise_picoadk.md b/_board/datanoise_picoadk.md index be67ba2c2a..dc59583ec6 100644 --- a/_board/datanoise_picoadk.md +++ b/_board/datanoise_picoadk.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "datanoise_picoadk" -title: "PicoADK - Audio Development Kit Download" -name: "PicoADK - Audio Development Kit" -manufacturer: "DatanoiseTV" +board_id: datanoise_picoadk +board_image: datanoise_picoadk.jpg board_url: - - "https://www.tindie.com/products/datanoisetv/picoadk-audio-development-kit-raspberry-rp2040/" -board_image: "datanoise_picoadk.jpg" -date_added: 2023-7-28 +- https://www.tindie.com/products/datanoisetv/picoadk-audio-development-kit-raspberry-rp2040/ +date_added: 2023-07-28 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: DatanoiseTV +name: PicoADK - Audio Development Kit +title: PicoADK - Audio Development Kit Download --- The PicoADK is a RP2040 based Audio Development Kit, which allows you to build your own digital oscillators, synthesizers, noise boxes and experiment around. It has all the base features of the Raspberry Pico / RP2040, plus a high quality Audio Output, 8 Analog Inputs for connecting potentiometers, control voltage from Eurorack systems or even additional input signals. diff --git a/_board/datum_distance.md b/_board/datum_distance.md index b4bdb3cbe7..984c38dd19 100644 --- a/_board/datum_distance.md +++ b/_board/datum_distance.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "datum_distance" -title: "datum-Distance Download" -name: "datum-Distance" -manufacturer: "J&J Studios" +board_id: datum_distance +board_image: datum_distance.jpg board_url: - - "https://jandjstudios.io/datum/datum-Distance/" -board_image: "datum_distance.jpg" -date_added: 2019-7-12 +- https://jandjstudios.io/datum/datum-Distance/ +date_added: 2019-07-12 12:00:00 family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: J&J Studios +name: datum-Distance +title: datum-Distance Download --- The datum-Distance sensor combines the same SAMD21G18 microcontroller used on the Arduino Zero with the VL53LX1 distance sensor from ST Microelectronics to create the simplest, easiest to use distance sensor for your application. diff --git a/_board/datum_imu.md b/_board/datum_imu.md index 1e1f60ace8..f909d42890 100644 --- a/_board/datum_imu.md +++ b/_board/datum_imu.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "datum_imu" -title: "datum-IMU Download" -name: "datum-IMU" -manufacturer: "J&J Studios" +board_id: datum_imu +board_image: datum_imu.jpg board_url: - - "https://jandjstudios.io/datum/datum-IMU/" -board_image: "datum_imu.jpg" -date_added: 2019-7-12 +- https://jandjstudios.io/datum/datum-IMU/ +date_added: 2019-07-12 12:00:00 family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: J&J Studios +name: datum-IMU +title: datum-IMU Download --- The datum-IMU sensor combines the same SAMD21G18 microcontroller used on the Arduino Zero with the LSM9DS1 IMU sensor from ST Microelectronics to create the simplest, easiest to use IMU sensor for your application. diff --git a/_board/datum_light.md b/_board/datum_light.md index 33f5635d7e..25166583b5 100644 --- a/_board/datum_light.md +++ b/_board/datum_light.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "datum_light" -title: "datum-Light Download" -name: "datum-Light" -manufacturer: "J&J Studios" +board_id: datum_light +board_image: datum_light.jpg board_url: - - "https://jandjstudios.io/datum/datum-Light/" -board_image: "datum_light.jpg" -date_added: 2019-7-12 +- https://jandjstudios.io/datum/datum-Light/ +date_added: 2019-07-12 12:00:00 family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: J&J Studios +name: datum-Light +title: datum-Light Download --- The datum-Light sensor combines the same SAMD21G18 microcontroller used on the Arduino Zero with the APDS-9960 light sensor from Broadcom to create the simplest, easiest to use light sensor for your application. diff --git a/_board/datum_weather.md b/_board/datum_weather.md index 82a41f4505..dfbcd0e0fc 100644 --- a/_board/datum_weather.md +++ b/_board/datum_weather.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "datum_weather" -title: "datum-Weather Download" -name: "datum-Weather" -manufacturer: "J&J Studios" +board_id: datum_weather +board_image: datum_weather.jpg board_url: - - "https://jandjstudios.io/datum/datum-Weather/" -board_image: "datum_weather.jpg" -date_added: 2019-7-12 +- https://jandjstudios.io/datum/datum-Weather/ +date_added: 2019-07-12 12:00:00 family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: J&J Studios +name: datum-Weather +title: datum-Weather Download --- The datum-Weather sensor combines the same SAMD21G18 microcontroller used on the Arduino Zero with the BME280 environmental sensor from Bosch Sensortec to create the simplest, easiest to use weather sensor for your application. diff --git a/_board/deneyap_kart.md b/_board/deneyap_kart.md index caaec269e3..1c61714d6a 100644 --- a/_board/deneyap_kart.md +++ b/_board/deneyap_kart.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "deneyap_kart" -title: "Deneyap Kart Download" -name: "Deneyap Kart" -manufacturer: "Turkish Technology Team Foundation" +board_id: deneyap_kart +board_image: deneyapkart.jpg board_url: - - "https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart" -board_image: "deneyapkart.jpg" -date_added: 2023-03-14 -family: esp32 +- https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart +date_added: 2023-03-14 12:00:00 downloads_display: true +family: esp32 features: - - Wi-Fi - - Bluetooth/BTLE - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Turkish Technology Team Foundation +name: Deneyap Kart +title: Deneyap Kart Download --- ## Technical Specs diff --git a/_board/deneyap_kart_1a.md b/_board/deneyap_kart_1a.md index 17753430b2..ba349e898e 100644 --- a/_board/deneyap_kart_1a.md +++ b/_board/deneyap_kart_1a.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "deneyap_kart_1a" -title: "Deneyap Kart 1A Download" -name: "Deneyap Kart 1A" -manufacturer: "Turkish Technology Team Foundation" +board_id: deneyap_kart_1a +board_image: deneyapkart1A.jpg board_url: - - "https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart-1a" -board_image: "deneyapkart1A.jpg" -date_added: 2023-03-14 -family: esp32 +- https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart-1a +date_added: 2023-03-14 12:00:00 downloads_display: true +family: esp32 features: - - Wi-Fi - - Bluetooth/BTLE - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Turkish Technology Team Foundation +name: Deneyap Kart 1A +title: Deneyap Kart 1A Download --- ## Technical Specs diff --git a/_board/deneyap_kart_1a_v2.md b/_board/deneyap_kart_1a_v2.md index f415c31530..634fc1d7bb 100644 --- a/_board/deneyap_kart_1a_v2.md +++ b/_board/deneyap_kart_1a_v2.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "deneyap_kart_1a_v2" -title: "Deneyap Kart 1A v2 Download" -name: "Deneyap Kart 1A v2" -manufacturer: "Turkish Technology Team Foundation" +board_id: deneyap_kart_1a_v2 +board_image: deneyapkart1Av2.jpg board_url: - - "https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart-1a-v2" -board_image: "deneyapkart1Av2.jpg" -date_added: 2023-03-14 -family: esp32s3 +- https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart-1a-v2 bootloader_id: deneyap_kart_1a_v2 +date_added: 2023-03-14 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly - - USB-C +- Wi-Fi +- Bluetooth/BTLE +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: Turkish Technology Team Foundation +name: Deneyap Kart 1A v2 +title: Deneyap Kart 1A v2 Download --- ## Technical Specs diff --git a/_board/deneyap_kart_g.md b/_board/deneyap_kart_g.md index 7ee51b8439..fc5156b2e1 100644 --- a/_board/deneyap_kart_g.md +++ b/_board/deneyap_kart_g.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "deneyap_kart_g" -title: "Deneyap Kart G Download" -name: "Deneyap Kart G" -manufacturer: "Turkish Technology Team Foundation" +board_id: deneyap_kart_g +board_image: deneyapkartg.jpg board_url: - - "https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart-g" -board_image: "deneyapkartg.jpg" -date_added: 2023-03-14 -family: esp32c3 +- https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-kart-g +date_added: 2023-03-14 12:00:00 downloads_display: true +family: esp32c3 features: - - Wi-Fi - - Bluetooth/BTLE - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly - - USB-C +- Wi-Fi +- Bluetooth/BTLE +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: Turkish Technology Team Foundation +name: Deneyap Kart G +title: Deneyap Kart G Download --- ## Technical Specs diff --git a/_board/deneyap_mini.md b/_board/deneyap_mini.md index c6ed962e5d..e5b1e5e77c 100644 --- a/_board/deneyap_mini.md +++ b/_board/deneyap_mini.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "deneyap_mini" -title: "Deneyap Mini Download" -name: "Deneyap Mini" -manufacturer: "Turkish Technology Team Foundation" +board_id: deneyap_mini +board_image: deneyapmini.jpg board_url: - - "https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-mini" -board_image: "deneyapmini.jpg" -date_added: 2023-03-14 -family: esp32s2 +- https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-mini bootloader_id: deneyap_mini +date_added: 2023-03-14 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Turkish Technology Team Foundation +name: Deneyap Mini +title: Deneyap Mini Download --- ## Technical Specs diff --git a/_board/deneyap_mini_v2.md b/_board/deneyap_mini_v2.md index 7e6ec1c1d6..95d61aa35f 100644 --- a/_board/deneyap_mini_v2.md +++ b/_board/deneyap_mini_v2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "deneyap_mini_v2" -title: "Deneyap Mini v2 Download" -name: "Deneyap Mini v2" -manufacturer: "Turkish Technology Team Foundation" +board_id: deneyap_mini_v2 +board_image: deneyapminiv2.jpg board_url: - - "https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-mini-v2" -board_image: "deneyapminiv2.jpg" -date_added: 2023-03-14 -family: esp32s2 +- https://docs.deneyapkart.org/tr/content/contentDetail/deneyap-mini-v2 bootloader_id: deneyap_mini_v2 +date_added: 2023-03-14 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly - - USB-C +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: Turkish Technology Team Foundation +name: Deneyap Mini v2 +title: Deneyap Mini v2 Download --- ## Technical Specs diff --git a/_board/diodes_delight_piunora.md b/_board/diodes_delight_piunora.md index 5dfee1345e..0d4493f75f 100644 --- a/_board/diodes_delight_piunora.md +++ b/_board/diodes_delight_piunora.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "diodes_delight_piunora" -title: "Piunora Download" -name: "Piunora" -manufacturer: "Diodes Delight" +board_id: diodes_delight_piunora +board_image: diodes_delight_piunora.jpg board_url: - - "https://www.crowdsupply.com/diodes-delight/piunora" - - "https://www.adafruit.com/product/5404" - - "https://www.adafruit.com/product/5403" -board_image: "diodes_delight_piunora.jpg" -download_instructions: -date_added: 2021-2-14 +- https://www.crowdsupply.com/diodes-delight/piunora +- https://www.adafruit.com/product/5404 +- https://www.adafruit.com/product/5403 +date_added: 2021-02-14 12:00:00 +download_instructions: null family: broadcom features: - - Wi-Fi - - Bluetooth/BTLE - - STEMMA QT/QWIIC - - Arduino Shield Compatible - - USB-C +- Wi-Fi +- Bluetooth/BTLE +- STEMMA QT/QWIIC +- Arduino Shield Compatible +- USB-C +layout: download +manufacturer: Diodes Delight +name: Piunora +title: Piunora Download --- Piunora is a compact, easy-to-use development board for electronics prototyping with Linux. It has a familiar form factor, legible pin labels, and a design that’s well suited to space-constrained applications. diff --git a/_board/doit_esp32_devkit_v1.md b/_board/doit_esp32_devkit_v1.md index 816cee613f..e027ada251 100644 --- a/_board/doit_esp32_devkit_v1.md +++ b/_board/doit_esp32_devkit_v1.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "doit_esp32_devkit_v1" -title: "DOIT ESP32 Development Board Download" -name: "DOIT ESP32 Development Board" -manufacturer: "DOIT" +board_id: doit_esp32_devkit_v1 +board_image: doit_esp32_devkit_v1.jpg board_url: - - "https://www.aliexpress.us/item/2251832638296842.html" -board_image: "doit_esp32_devkit_v1.jpg" -date_added: 2023-1-31 +- https://www.aliexpress.us/item/2251832638296842.html +date_added: 2023-01-31 12:00:00 family: esp32 features: - - Wi-Fi - - Bluetooth/BTLE +- Wi-Fi +- Bluetooth/BTLE +layout: download +manufacturer: DOIT +name: DOIT ESP32 Development Board +title: DOIT ESP32 Development Board Download --- ESP32 is already integrated antenna and RF balun, power amplifier, low-noise amplifiers, filters, @@ -21,4 +21,4 @@ power and RF properties best, which is safe, reliable, and scalable to a variety ## Purchase -* [AliExpress](https://www.aliexpress.us/item/2251832638296842.html) \ No newline at end of file +* [AliExpress](https://www.aliexpress.us/item/2251832638296842.html) diff --git a/_board/dynalora_usb.md b/_board/dynalora_usb.md index f73c552b6c..25290e2263 100644 --- a/_board/dynalora_usb.md +++ b/_board/dynalora_usb.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "dynalora_usb" -title: "DynaLoRa-USB Download" -name: "DynaLoRa-USB" -manufacturer: "BH Dynamics" +board_id: dynalora_usb +board_image: dynalora_usb.jpg board_url: - - "https://github.com/BHDynamics/rfm_radio_dongle" -board_image: "dynalora_usb.jpg" -date_added: 2021-02-11 +- https://github.com/BHDynamics/rfm_radio_dongle +date_added: 2021-02-11 12:00:00 +downloads_display: true family: atmel-samd features: - - LoRa/Radio -downloads_display: true +- LoRa/Radio +layout: download +manufacturer: BH Dynamics +name: DynaLoRa-USB +title: DynaLoRa-USB Download --- ## Overview diff --git a/_board/dynossat_edu_eps.md b/_board/dynossat_edu_eps.md index ba1a5f80c6..f4b8e7befd 100644 --- a/_board/dynossat_edu_eps.md +++ b/_board/dynossat_edu_eps.md @@ -1,49 +1,48 @@ ---- -layout: download -board_id: "dynossat_edu_eps" -title: "DynOSSAT-EDU EPS Download" -name: "DynOSSAT-EDU EPS" -manufacturer: "BH Dynamics" -board_url: - - "https://bhdyn.com/newspace" -board_image: "dynossat_edu_eps.jpg" -date_added: 2020-10-16 -family: atmel-samd -downloads_display: true - -features: - - USB-C ---- - -DynOSSAT-EDU is the first open source PocketQube educational kit compatible with CircuitPython and Arduino. - -This plaform is equipped with all the necessary modules for the operation of a nanosatellite (PocketQube) -in Low Earth Orbit (LEO) that would serve as a device for teaching, training, and driving curiosity about the philosophy and technology related to NewSpace. - -This is the EPS (Electric Power System), the module responsible for battery management and power distribution subsystems, -including charging through solar panels using flight-proven MPPT electronics. - -Hardware is licensed under **CERN OHL v1.2**. - -## Technical details - -- Well-known 48 MHz Cortex-M0 ATSAMD21E18 MCU with 256 KB flash + 32 KB RAM -- 32 Mbit SPI flash for storing CircuitPython code and libraries -- Flight-proven SPV1040 Maximum Power Point Tracking (MPPT) IC for solar cells power management -- Ultra low input voltage L6924D Lithium battery charger management IC optimized for pairing with the SPV1040 -- Separate 5V and 3.3V power rails generated through high-performance DC/DC converters -- Battery Current/Voltage/Power measurement through the flight-proven INA226 digital meter -- Back-powering protection and load switching through the TPS22918, member of a flight-proven family of switches -- User-controllable WS2812B addressable RGB LED -- Female USB-C 2.0 connector for power and data logging -- Standard Molex Picoblade 1.5 mm connectors for battery and solar cells -- Connected to the OBC through SPI/I2C/UART for data communication and/or redundancy -- Comes preprogrammed with the UF2 Bootloader and CircuitPython 6.0.0 - -## Documentation - -This board is open source hardware. You can check the docs and contribute [here](https://github.com/BHDynamics/dynossat-edu-eps). - -## Purchase - -* [Tindie](https://www.tindie.com/products/21832/) +--- +board_id: dynossat_edu_eps +board_image: dynossat_edu_eps.jpg +board_url: +- https://bhdyn.com/newspace +date_added: 2020-10-16 12:00:00 +downloads_display: true +family: atmel-samd +features: +- USB-C +layout: download +manufacturer: BH Dynamics +name: DynOSSAT-EDU EPS +title: DynOSSAT-EDU EPS Download +--- + +DynOSSAT-EDU is the first open source PocketQube educational kit compatible with CircuitPython and Arduino. + +This plaform is equipped with all the necessary modules for the operation of a nanosatellite (PocketQube) +in Low Earth Orbit (LEO) that would serve as a device for teaching, training, and driving curiosity about the philosophy and technology related to NewSpace. + +This is the EPS (Electric Power System), the module responsible for battery management and power distribution subsystems, +including charging through solar panels using flight-proven MPPT electronics. + +Hardware is licensed under **CERN OHL v1.2**. + +## Technical details + +- Well-known 48 MHz Cortex-M0 ATSAMD21E18 MCU with 256 KB flash + 32 KB RAM +- 32 Mbit SPI flash for storing CircuitPython code and libraries +- Flight-proven SPV1040 Maximum Power Point Tracking (MPPT) IC for solar cells power management +- Ultra low input voltage L6924D Lithium battery charger management IC optimized for pairing with the SPV1040 +- Separate 5V and 3.3V power rails generated through high-performance DC/DC converters +- Battery Current/Voltage/Power measurement through the flight-proven INA226 digital meter +- Back-powering protection and load switching through the TPS22918, member of a flight-proven family of switches +- User-controllable WS2812B addressable RGB LED +- Female USB-C 2.0 connector for power and data logging +- Standard Molex Picoblade 1.5 mm connectors for battery and solar cells +- Connected to the OBC through SPI/I2C/UART for data communication and/or redundancy +- Comes preprogrammed with the UF2 Bootloader and CircuitPython 6.0.0 + +## Documentation + +This board is open source hardware. You can check the docs and contribute [here](https://github.com/BHDynamics/dynossat-edu-eps). + +## Purchase + +* [Tindie](https://www.tindie.com/products/21832/) diff --git a/_board/dynossat_edu_obc.md b/_board/dynossat_edu_obc.md index 12876af163..059cfcd506 100644 --- a/_board/dynossat_edu_obc.md +++ b/_board/dynossat_edu_obc.md @@ -1,48 +1,47 @@ ---- -layout: download -board_id: "dynossat_edu_obc" -title: "DynOSSAT-EDU OBC Download" -name: "DynOSSAT-EDU OBC" -manufacturer: "BH Dynamics" -board_url: - - "https://bhdyn.com/newspace" -board_image: "dynossat_edu_obc.jpg" -date_added: 2020-10-16 -family: atmel-samd -downloads_display: true - -features: - - USB-C ---- - -DynOSSAT-EDU is the first open source PocketQube educational kit compatible with CircuitPython and Arduino. - -This plaform is equipped with all the necessary modules for the operation of a nanosatellite (PocketQube) -in Low Earth Orbit (LEO) that would serve as a device for teaching, training, and driving curiosity about the philosophy and technology related to NewSpace. - -This is the On-Board Computer (OBC), the module responsible for managing the satellite and process sensor data. It -integrates a 9-axis IMU, a gas sensor, a temperature sensor and carries a powerful ATSAMD51. - -Hardware is licensed under **CERN OHL v1.2**. - -## Technical details - -- Powerful ATSAMD51J20A-AU 120 MHz Cortex-M4F processor with 1 MB flash + 256 KB RAM for all your CircuitPython needs -- 32 Mbit SPI flash for storing CircuitPython code and libraries -- High-precision ICM-20948 Inertial Measurement Unit including Accelerometer, Gyroscope and Magnetometer for Attitude management -- MCP9808 Digital Temperature Sensor -- SGP30 TVOC and eqCO2 air quality sensor -- User-controllable WS2812B addressable RGB LED -- Separate 5V and 3.3V rails, providing up to 1A/500mA respectively -- MicroSD Card slot -- Female USB-C 2.0 connector for power and data logging -- PQBH40 bus exposing 10 digital pins, 6 analog pins (+ true DAC), an I2C bus, an SPI bus and an UART -- Comes preprogrammed with the UF2 bootloader and CircuitPython 6.0.0 - -## Documentation - -This board is open source hardware. You can check the docs and contribute [here](https://github.com/BHDynamics/dynossat-edu-obc). - -## Purchase - -* [Tindie](https://www.tindie.com/products/21832/) +--- +board_id: dynossat_edu_obc +board_image: dynossat_edu_obc.jpg +board_url: +- https://bhdyn.com/newspace +date_added: 2020-10-16 12:00:00 +downloads_display: true +family: atmel-samd +features: +- USB-C +layout: download +manufacturer: BH Dynamics +name: DynOSSAT-EDU OBC +title: DynOSSAT-EDU OBC Download +--- + +DynOSSAT-EDU is the first open source PocketQube educational kit compatible with CircuitPython and Arduino. + +This plaform is equipped with all the necessary modules for the operation of a nanosatellite (PocketQube) +in Low Earth Orbit (LEO) that would serve as a device for teaching, training, and driving curiosity about the philosophy and technology related to NewSpace. + +This is the On-Board Computer (OBC), the module responsible for managing the satellite and process sensor data. It +integrates a 9-axis IMU, a gas sensor, a temperature sensor and carries a powerful ATSAMD51. + +Hardware is licensed under **CERN OHL v1.2**. + +## Technical details + +- Powerful ATSAMD51J20A-AU 120 MHz Cortex-M4F processor with 1 MB flash + 256 KB RAM for all your CircuitPython needs +- 32 Mbit SPI flash for storing CircuitPython code and libraries +- High-precision ICM-20948 Inertial Measurement Unit including Accelerometer, Gyroscope and Magnetometer for Attitude management +- MCP9808 Digital Temperature Sensor +- SGP30 TVOC and eqCO2 air quality sensor +- User-controllable WS2812B addressable RGB LED +- Separate 5V and 3.3V rails, providing up to 1A/500mA respectively +- MicroSD Card slot +- Female USB-C 2.0 connector for power and data logging +- PQBH40 bus exposing 10 digital pins, 6 analog pins (+ true DAC), an I2C bus, an SPI bus and an UART +- Comes preprogrammed with the UF2 bootloader and CircuitPython 6.0.0 + +## Documentation + +This board is open source hardware. You can check the docs and contribute [here](https://github.com/BHDynamics/dynossat-edu-obc). + +## Purchase + +* [Tindie](https://www.tindie.com/products/21832/) diff --git a/_board/e_fidget.md b/_board/e_fidget.md index 2a7beb8290..a5dd583f1b 100644 --- a/_board/e_fidget.md +++ b/_board/e_fidget.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "e_fidget" -title: "E-Fidget Download" -name: "E-Fidget" -manufacturer: "2231puppy" +board_id: e_fidget +board_image: e_fidget.jpg board_url: - - "https://e-fidget.xyz" -board_image: "e_fidget.jpg" -date_added: 2023-1-4 +- https://e-fidget.xyz +date_added: 2023-01-04 12:00:00 family: raspberrypi features: - - Battery Charging - - USB-C +- Battery Charging +- USB-C +layout: download +manufacturer: 2231puppy +name: E-Fidget +title: E-Fidget Download --- The E-Fidget is a new kind of fidget spinner. It uses haptic feedback in the form of 8 vibration diff --git a/_board/edgebadge.md b/_board/edgebadge.md index 41c42e68c7..eaa4ffe62f 100644 --- a/_board/edgebadge.md +++ b/_board/edgebadge.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "edgebadge" -title: "EdgeBadge Download" -name: "EdgeBadge" -manufacturer: "Adafruit" +board_id: edgebadge +board_image: edgebadge.jpg board_url: - - "https://www.adafruit.com/product/4400" -board_image: "edgebadge.jpg" -date_added: 2019-11-19 -family: atmel-samd +- https://www.adafruit.com/product/4400 bootloader_id: arcade_pybadge +date_added: 2019-11-19 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging +- Display +- Speaker +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Adafruit +name: EdgeBadge +title: EdgeBadge Download --- Machine learning has come to the 'edge' - small microcontrollers that can run a very miniature version of TensorFlow Lite to do ML computations. diff --git a/_board/elecfreaks_picoed.md b/_board/elecfreaks_picoed.md index 6b57dc79b4..8e9188c471 100644 --- a/_board/elecfreaks_picoed.md +++ b/_board/elecfreaks_picoed.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "elecfreaks_picoed" -title: "ELECFREAKS Pico:ed Download" -name: "ELECFREAKS Pico:ed" -manufacturer: "ELECFREAKS" +board_id: elecfreaks_picoed +board_image: elecfreaks_picoed.jpg board_url: - - "https://www.elecfreaks.com/picoed.html" -board_image: "elecfreaks_picoed.jpg" -date_added: 2022-4-21 +- https://www.elecfreaks.com/picoed.html +date_added: 2022-04-21 12:00:00 family: raspberrypi features: - - Speaker - - Display - - Solder-Free Alligator Clip +- Speaker +- Display +- Solder-Free Alligator Clip +layout: download +manufacturer: ELECFREAKS +name: ELECFREAKS Pico:ed +title: ELECFREAKS Pico:ed Download --- The **Pico:ed** is a development board based on **Raspberry Pi RP2040 MCU**. It uses dual-core Arm Cortex-M0+ processor with 264KB RAM. The front of the board contains two buttons and a 7x17 dot matrix screen, which can be conveniently used for classroom teaching. diff --git a/_board/electrolama_minik.md b/_board/electrolama_minik.md index f2410a12fc..c1e4f6da06 100644 --- a/_board/electrolama_minik.md +++ b/_board/electrolama_minik.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "electrolama_minik" -title: "Electrolama minik Download" -name: "Electrolama minik Octave" -manufacturer: "Electrolama" +board_id: electrolama_minik +board_image: electrolama_minik.jpg board_url: - - "https://github.com/electrolama/minik" -board_image: "electrolama_minik.jpg" -date_added: 2022-8-22 +- https://github.com/electrolama/minik +date_added: 2022-08-22 12:00:00 family: raspberrypi -features: - +features: null +layout: download +manufacturer: Electrolama +name: Electrolama minik Octave +title: Electrolama minik Download --- + A tiny RP2040 module for small embedded things! minik is designed by Electrolama / @omerk and licensed under the Solderpad Hardware License 2.0. diff --git a/_board/electroniccats_bastwifi.md b/_board/electroniccats_bastwifi.md index 53ebf82de6..3526eb11af 100644 --- a/_board/electroniccats_bastwifi.md +++ b/_board/electroniccats_bastwifi.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "electroniccats_bastwifi" -title: "Bast Wifi Download" -name: "Bast Wifi" -manufacturer: "Electronic Cats" +board_id: electroniccats_bastwifi +board_image: bast_wifi.jpg board_url: - - "https://electroniccats.com/store/bast-wifi/" -board_image: "bast_wifi.jpg" -date_added: 2020-10-13 +- https://electroniccats.com/store/bast-wifi/ +date_added: 2020-10-13 12:00:00 family: esp32s2 - features: - - Feather-Compatible - - Wi-Fi - - Battery Charging - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Wi-Fi +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Electronic Cats +name: Bast Wifi +title: Bast Wifi Download --- The Bast WiFi includes the newer ESP32-S2 module, which is like a little brother to the ESP32 where only one core instead of 2 has cores, it has no BLE implemented, but gains a native USB, a new processor and crypto accelerators for better performance protection against physical fault injection attacks and more improvements over the SoC. diff --git a/_board/electronut_labs_blip.md b/_board/electronut_labs_blip.md index e5038c9779..f1d8e3cdcb 100644 --- a/_board/electronut_labs_blip.md +++ b/_board/electronut_labs_blip.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "electronut_labs_blip" -title: "Blip Download" -name: "Blip" -manufacturer: "Electronut Labs" +board_id: electronut_labs_blip +board_image: electronut_labs_blip.png board_url: - - "https://gitlab.com/electronutlabs-public/ElectronutLabs-blip" -board_image: "electronut_labs_blip.png" -date_added: 2019-5-23 -family: nrf52840 +- https://gitlab.com/electronutlabs-public/ElectronutLabs-blip +date_added: 2019-05-23 12:00:00 downloads_display: true +family: nrf52840 features: - - Bluetooth/BTLE - - Battery Charging +- Bluetooth/BTLE +- Battery Charging +layout: download +manufacturer: Electronut Labs +name: Blip +title: Blip Download --- Blip is a development board for Bluetooth Low Energy (BLE) and 802.15.4 based wireless applications, diff --git a/_board/electronut_labs_papyr.md b/_board/electronut_labs_papyr.md index 75c4c1cb11..b3dd75e29a 100644 --- a/_board/electronut_labs_papyr.md +++ b/_board/electronut_labs_papyr.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "electronut_labs_papyr" -title: "Papyr Download" -name: "Papyr" -manufacturer: "Electronut Labs" +board_id: electronut_labs_papyr +board_image: electronut_labs_papyr.jpg board_url: - - "https://gitlab.com/electronutlabs-public/papyr" -board_image: "electronut_labs_papyr.jpg" +- https://gitlab.com/electronutlabs-public/papyr +bootloader_id: electronut_labs_papyr +date_added: 2019-04-23 12:00:00 downloads_display: true -date_added: 2019-4-23 family: nrf52840 -bootloader_id: electronut_labs_papyr features: - - Display - - Bluetooth/BTLE +- Display +- Bluetooth/BTLE +layout: download +manufacturer: Electronut Labs +name: Papyr +title: Papyr Download --- Papyr is a connected e-paper display powered by Nordic Semiconductor's nRF52840 chip. You can read more details on the hardware, and installation instructions for Circuitpython on the [docs site](https://docs.electronut.in/papyr/circuitpython/) for [Electronut Labs](https://electronut.in). diff --git a/_board/es3ink.md b/_board/es3ink.md index aacf8a4f27..bd67e3f8b8 100644 --- a/_board/es3ink.md +++ b/_board/es3ink.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "es3ink" -title: "es3ink Download" -name: "es3ink" -manufacturer: "Unknown" +board_id: es3ink +board_image: unknown.jpg board_url: - - "https://github.com/dronecz/es3ink" -board_image: "unknown.jpg" +- https://github.com/dronecz/es3ink +bootloader_id: es3ink +date_added: 2023-10-27 12:00:00 downloads_display: false -date_added: 2023-10-27 family: esp32s3 -bootloader_id: es3ink -features: +features: null +layout: download +manufacturer: Unknown +name: es3ink +title: es3ink Download --- -Oops! Looks like we don't know anything about this board. This means it's likely very new. \ No newline at end of file +Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/escornabot_makech.md b/_board/escornabot_makech.md index 9e3d82254c..d8c95b1ffa 100644 --- a/_board/escornabot_makech.md +++ b/_board/escornabot_makech.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "escornabot_makech" -title: "Escornabot Makech Download" -name: "Escornabot Makech" -manufacturer: "Electronic Cats" +board_id: escornabot_makech +board_image: escornabot_makech.jpg board_url: - - "https://github.com/ElectronicCats/escornabot" -board_image: "escornabot_makech.jpg" -date_added: 2019-5-25 +- https://github.com/ElectronicCats/escornabot +date_added: 2019-05-25 12:00:00 family: atmel-samd features: - - Robotics +- Robotics +layout: download +manufacturer: Electronic Cats +name: Escornabot Makech +title: Escornabot Makech Download --- Escornabot is an open source/hardware project that aims to bring robotics and programming to children. diff --git a/_board/espressif_esp32_devkitc_v4_wroom_32e.md b/_board/espressif_esp32_devkitc_v4_wroom_32e.md index a27f986d50..4e32b3cb89 100644 --- a/_board/espressif_esp32_devkitc_v4_wroom_32e.md +++ b/_board/espressif_esp32_devkitc_v4_wroom_32e.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32_devkitc_v4_wroom_32e" -title: "ESP32-DevKitC-VE-WROVER Download" -name: "ESP32-DevKitC-VE-WROVER" -manufacturer: "Espressif" +board_id: espressif_esp32_devkitc_v4_wroom_32e +board_image: espressif_esp32_devkitc_v4_wroom_32e.jpg board_url: - - "https://www.adafruit.com/product/3269" - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-devkitc.html" -board_image: "espressif_esp32_devkitc_v4_wroom_32e.jpg" -date_added: 2024-2-6 +- https://www.adafruit.com/product/3269 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-devkitc.html +date_added: 2024-02-06 12:00:00 family: esp32 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-DevKitC-VE-WROVER +title: ESP32-DevKitC-VE-WROVER Download --- The ESP8266 started a small revolution by bringing WiFi to a small and cheap package that also had enough processing power and enough pins to get small things done. Now get ready to take your bite-sized WiFi capabilities to the next level with the **ESP32 Development Board!** diff --git a/_board/espressif_esp32_devkitc_v4_wrover.md b/_board/espressif_esp32_devkitc_v4_wrover.md index 83077eee2d..8a320c7cd1 100644 --- a/_board/espressif_esp32_devkitc_v4_wrover.md +++ b/_board/espressif_esp32_devkitc_v4_wrover.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32_devkitc_v4_wrover" -title: "ESP32-DevKitC-VE-WROVER Download" -name: "ESP32-DevKitC-VE-WROVER" -manufacturer: "Espressif" +board_id: espressif_esp32_devkitc_v4_wrover +board_image: espressif_esp32_devkitc_v4_wrover.jpg board_url: - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-devkitc.html" -board_image: "espressif_esp32_devkitc_v4_wrover.jpg" -date_added: 2024-2-6 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-devkitc.html +date_added: 2024-02-06 12:00:00 family: esp32 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-DevKitC-VE-WROVER +title: ESP32-DevKitC-VE-WROVER Download --- ESP32-DevKitC is a low-footprint and entry-level development board that is part of the ESP32 series. This board has a rich peripheral set. The built-in ESP32 pinout is optimized for hassle-free prototyping! diff --git a/_board/espressif_esp32_eye.md b/_board/espressif_esp32_eye.md index 1f4cc88c6e..6a460feeee 100644 --- a/_board/espressif_esp32_eye.md +++ b/_board/espressif_esp32_eye.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32_eye" -title: "ESP-EYE Download" -name: "ESP-EYE" -manufacturer: "Espressif" +board_id: espressif_esp32_eye +board_image: espressif_esp32_eye.jpg board_url: - - "https://www.adafruit.com/product/4095" -board_image: "espressif_esp32_eye.jpg" -date_added: 2022-08-22 +- https://www.adafruit.com/product/4095 +date_added: 2022-08-22 12:00:00 family: esp32 features: - - Wi-Fi - - Camera - - Bluetooth/BTLE +- Wi-Fi +- Camera +- Bluetooth/BTLE +layout: download +manufacturer: Espressif +name: ESP-EYE +title: ESP-EYE Download --- Ever wanted to dabble in face and/or speech recognition? [Espressif's](https://www.espressif.com/) **ESP-EYE** is a miniature [ESP32-based](https://www.adafruit.com/?q=ESP32) development board that combines a digital microphone, ESP32 (of course) with 8 MB PSRAM and 4 MB flash, and a 2 megapixel camera. There's a few buttons and LEDs as well for basic control and configuration. diff --git a/_board/espressif_esp32_lyrat.md b/_board/espressif_esp32_lyrat.md index cee21028b5..57835fee86 100644 --- a/_board/espressif_esp32_lyrat.md +++ b/_board/espressif_esp32_lyrat.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "espressif_esp32_lyrat" -title: "ESP32-LyraT Download" -name: "ESP32-LyraT" -manufacturer: "Espressif" +board_id: espressif_esp32_lyrat +board_image: espressif_esp32_lyrat.jpg board_url: - - "https://www.espressif.com/en/products/devkits/esp32-lyrat" -board_image: "espressif_esp32_lyrat.jpg" -date_added: 2023-3-1 +- https://www.espressif.com/en/products/devkits/esp32-lyrat +date_added: 2023-03-01 12:00:00 family: esp32 features: - - Wi-Fi - - Bluetooth/BTLE +- Wi-Fi +- Bluetooth/BTLE +layout: download +manufacturer: Espressif +name: ESP32-LyraT +title: ESP32-LyraT Download --- ESP32-LyraT is an open-source development board for Espressif Systems’ Audio Development Framework (ADF). It is designed for smart speakers and smart-home applications. The dev board consists of the ESP32-WROVER-B module, a Micro SD card, expansion interfaces, touch buttons and several function keys. @@ -27,4 +27,4 @@ It facilitates the quick and easy development of dual-mode (Bluetooth + Wi-Fi) a ## Purchase * [Digi-Key](https://www.digikey.com/en/products/detail/espressif-systems/ESP32-LYRAT/9381704) -* [Mouser](https://www.mouser.com/ProductDetail/Espressif-Systems/ESP32-LyraT?qs=MLItCLRbWsxPzPCja546ZA%3D%3D) \ No newline at end of file +* [Mouser](https://www.mouser.com/ProductDetail/Espressif-Systems/ESP32-LyraT?qs=MLItCLRbWsxPzPCja546ZA%3D%3D) diff --git a/_board/espressif_esp32c3_devkitm_1_n4.md b/_board/espressif_esp32c3_devkitm_1_n4.md index f252b9a750..40b85f4da4 100644 --- a/_board/espressif_esp32c3_devkitm_1_n4.md +++ b/_board/espressif_esp32c3_devkitm_1_n4.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32c3_devkitm_1_n4" -title: "ESP32-C3-DevKitM-1-N4 Download" -name: "ESP32-C3-DevKitM-1-N4" -manufacturer: "Espressif" +board_id: espressif_esp32c3_devkitm_1_n4 +board_image: espressif_esp32c3_devkitm_1_n4.jpg board_url: - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32c3/hw-reference/esp32c3/user-guide-devkitm-1.html" -board_image: "espressif_esp32c3_devkitm_1_n4.jpg" -date_added: 2022-2-14 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32c3/hw-reference/esp32c3/user-guide-devkitm-1.html +date_added: 2022-02-14 12:00:00 family: esp32c3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-C3-DevKitM-1-N4 +title: ESP32-C3-DevKitM-1-N4 Download --- The ESP32-C3-DevKitM-1 is an entry-level **RISC V** development board equipped with the ESP32-C3-MINI-1-N4, a powerful, generic Wi-Fi + Bluetooth LE MCU module that features a rich set of peripherals, yet an optimized size. It's an ideal choice for a wide variety of application scenarios related to the Internet of Things (IoT), such as embedded systems, smart homes, wearable electronics, etc. ESP32-C3-DevKitM-1 comes with a PCB antenna. **This version is equipped with the ESP32-C3-MINI-1-N4 with 4MB SPI Flash and no PSRAM.** diff --git a/_board/espressif_esp32c6_devkitc_1_n8.md b/_board/espressif_esp32c6_devkitc_1_n8.md index ca824039c0..6df39a67fe 100644 --- a/_board/espressif_esp32c6_devkitc_1_n8.md +++ b/_board/espressif_esp32c6_devkitc_1_n8.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32c6_devkitc_1_n8" -title: "ESP32-C6-DevKitC-1-N8 Download" -name: "ESP32-C6-DevKitC-1-N8" -manufacturer: "Espressif" +board_id: espressif_esp32c6_devkitc_1_n8 +board_image: espressif_esp32c6_devkitc_1.jpg board_url: - - "https://www.adafruit.com/product/5672" -board_image: "espressif_esp32c6_devkitc_1.jpg" -date_added: 2023-10-27 -family: esp32c6 +- https://www.adafruit.com/product/5672 bootloader_id: espressif_esp32c6_devkitc_1 +date_added: 2023-10-27 12:00:00 +family: esp32c6 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-C6-DevKitC-1-N8 +title: ESP32-C6-DevKitC-1-N8 Download --- The **ESP32-C6-DevKitC-1-N8** is an entry-level development board equipped with ESP32-C6-WROOM-1, a general-purpose Wi-Fi + Bluetooth LE RISC-V MCU module that integrates complete Wi-Fi and Bluetooth LE functions. This board integrates complete Wi-Fi, Bluetooth LE, Zigbee, and Thread functions. diff --git a/_board/espressif_esp32c6_devkitm_1_n4.md b/_board/espressif_esp32c6_devkitm_1_n4.md index 1fde3276d9..f4aded3331 100644 --- a/_board/espressif_esp32c6_devkitm_1_n4.md +++ b/_board/espressif_esp32c6_devkitm_1_n4.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32c6_devkitm_1_n4" -title: "ESP32-C6-DevKitC-1-N4 Download" -name: "ESP32-C6-DevKitC-1-N4" -manufacturer: "Espressif" +board_id: espressif_esp32c6_devkitm_1_n4 +board_image: espressif_esp32c6_devkitc_1.jpg board_url: - - "https://docs.espressif.com/projects/espressif-esp-dev-kits/en/latest/esp32c6/esp32-c6-devkitm-1/user_guide.html" -board_image: "espressif_esp32c6_devkitc_1.jpg" -date_added: 2023-10-27 -family: esp32c6 +- https://docs.espressif.com/projects/espressif-esp-dev-kits/en/latest/esp32c6/esp32-c6-devkitm-1/user_guide.html bootloader_id: espressif_esp32c6_devkitc_1 +date_added: 2023-10-27 12:00:00 +family: esp32c6 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-C6-DevKitC-1-N4 +title: ESP32-C6-DevKitC-1-N4 Download --- The **ESP32-C6-DevKitC-1-N4** is an entry-level development board equipped with ESP32-C6-WROOM-1, a general-purpose Wi-Fi + Bluetooth LE RISC-V MCU module that integrates complete Wi-Fi and Bluetooth LE functions. This board integrates complete Wi-Fi, Bluetooth LE, Zigbee, and Thread functions. diff --git a/_board/espressif_esp32h2_devkitm_1_n4.md b/_board/espressif_esp32h2_devkitm_1_n4.md index d0777a29f9..0f430d1afa 100644 --- a/_board/espressif_esp32h2_devkitm_1_n4.md +++ b/_board/espressif_esp32h2_devkitm_1_n4.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32h2_devkitm_1_n4" -title: "ESP32-H2-DevKitM-1-N4 Download" -name: "ESP32-H2-DevKitM-1-N4" -manufacturer: "Espressif" +board_id: espressif_esp32h2_devkitm_1_n4 +board_image: espressif_esp32h2_devkitm_1.jpg board_url: - - "https://espressif-docs.readthedocs-hosted.com/projects/esp-dev-kits/en/latest/esp32h2/esp32-h2-devkitm-1/user_guide.html" - - "https://www.adafruit.com/product/5715" -board_image: "espressif_esp32h2_devkitm_1.jpg" -date_added: 2023-10-27 +- https://espressif-docs.readthedocs-hosted.com/projects/esp-dev-kits/en/latest/esp32h2/esp32-h2-devkitm-1/user_guide.html +- https://www.adafruit.com/product/5715 +date_added: 2023-10-27 12:00:00 family: esp32h2 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-H2-DevKitM-1-N4 +title: ESP32-H2-DevKitM-1-N4 Download --- **ESP32-H2-DevKitM-1** is an entry-level development board based on Bluetooth® Low Energy and IEEE 802.15.4 combo modules ESP32-H2-MINI-1. Most of the I/O pins on the ESP32-H2-MINI-1 module are broken out to the pin headers on both sides of this board for easy interfacing. diff --git a/_board/espressif_esp32s2_devkitc_1_n4.md b/_board/espressif_esp32s2_devkitc_1_n4.md index 14df19a3d6..d53fddc433 100644 --- a/_board/espressif_esp32s2_devkitc_1_n4.md +++ b/_board/espressif_esp32s2_devkitc_1_n4.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32s2_devkitc_1_n4" -title: "ESP32-S2-DevKitC-1-N4 Download" -name: "ESP32-S2-DevKitC-1-N4" -manufacturer: "Espressif" +board_id: espressif_esp32s2_devkitc_1_n4 +board_image: espressif_esp32s2_devkitc_1_n4.jpg board_url: - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-s2-devkitc-1.html" -board_image: "espressif_esp32s2_devkitc_1_n4.jpg" -date_added: 2022-4-1 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-s2-devkitc-1.html +date_added: 2022-04-01 12:00:00 family: esp32s2 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S2-DevKitC-1-N4 +title: ESP32-S2-DevKitC-1-N4 Download --- ESP32-S2-DevKitC-1 is an entry-level development board based on ESP32-S2-SOLO (on-board PCB antenna) or ESP32-S2-SOLO-U (external antenna connector), which are two general-purpose modules with a 4 MB SPI flash. This board integrates complete Wi-Fi functions. diff --git a/_board/espressif_esp32s2_devkitc_1_n4r2.md b/_board/espressif_esp32s2_devkitc_1_n4r2.md index 4d9277ea4d..b677ba2ac5 100644 --- a/_board/espressif_esp32s2_devkitc_1_n4r2.md +++ b/_board/espressif_esp32s2_devkitc_1_n4r2.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32s2_devkitc_1_n4r2" -title: "ESP32-S2-DevKitC-1-N4R2 Download" -name: "ESP32-S2-DevKitC-1-N4R2" -manufacturer: "Espressif" +board_id: espressif_esp32s2_devkitc_1_n4r2 +board_image: espressif_esp32s2_devkitc_1_n4r2.jpg board_url: - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-s2-devkitc-1.html" -board_image: "espressif_esp32s2_devkitc_1_n4r2.jpg" -date_added: 2022-2-14 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-s2-devkitc-1.html +date_added: 2022-02-14 12:00:00 family: esp32s2 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S2-DevKitC-1-N4R2 +title: ESP32-S2-DevKitC-1-N4R2 Download --- ESP32-S2-DevKitC-1 is an entry-level development board based on ESP32-S2-SOLO (on-board PCB antenna) or ESP32-S2-SOLO-U (external antenna connector), which are two general-purpose modules with a 4 MB SPI flash. This board integrates complete Wi-Fi functions. diff --git a/_board/espressif_esp32s2_devkitc_1_n8r2.md b/_board/espressif_esp32s2_devkitc_1_n8r2.md index 2866b5789c..9cf3f99dac 100644 --- a/_board/espressif_esp32s2_devkitc_1_n8r2.md +++ b/_board/espressif_esp32s2_devkitc_1_n8r2.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32s2_devkitc_1_n8r2" -title: "ESP32-S2-DevKitC-1-N8R2 Download" -name: "ESP32-S2-DevKitC-1-N8R2" -manufacturer: "Espressif" +board_id: espressif_esp32s2_devkitc_1_n8r2 +board_image: espressif_esp32s2_devkitc_1_n8r2.jpg board_url: - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-s2-devkitc-1.html" -board_image: "espressif_esp32s2_devkitc_1_n8r2.jpg" -date_added: 2022-10-14 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-s2-devkitc-1.html +date_added: 2022-10-14 12:00:00 family: esp32s2 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S2-DevKitC-1-N8R2 +title: ESP32-S2-DevKitC-1-N8R2 Download --- ESP32-S2-DevKitC-1 is an entry-level development board based on ESP32-S2-SOLO (on-board PCB antenna) or ESP32-S2-SOLO-U (external antenna connector), which are two general-purpose modules with a 4 MB SPI flash. This board integrates complete Wi-Fi functions. diff --git a/_board/espressif_esp32s3_box.md b/_board/espressif_esp32s3_box.md index 41bd5996e8..8b8e4e243d 100644 --- a/_board/espressif_esp32s3_box.md +++ b/_board/espressif_esp32s3_box.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "espressif_esp32s3_box" -title: "ESP32-S3 Box - 16MB Flash, 8MB PSRAM" -name: "ESP32-S3 Box" -manufacturer: "Espressif" +board_id: espressif_esp32s3_box +board_image: espressif_esp32s3_box.jpg board_url: - - "https://www.adafruit.com/product/5290" -board_image: "espressif_esp32s3_box.jpg" +- https://www.adafruit.com/product/5290 bootloader_id: espressif_esp32s3_box -date_added: 2020-05-15 +date_added: 2020-05-15 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - - Display - - Speaker +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +- Display +- Speaker +layout: download +manufacturer: Espressif +name: ESP32-S3 Box +title: ESP32-S3 Box - 16MB Flash, 8MB PSRAM --- The **ESP-BOX** is a new generation AIoT development platform released by Espressif Systems. The ESP32-S3-BOX is an AIoT development board that is based on Espressif’s ESP32-S3 Wi-Fi + Bluetooth 5 (LE) SoC. The ESP32-S3-BOX provides a platform for developing the control of home appliances using Voice Assistance + touch screen controller, sensor, infrared controller, and intelligent Wi-Fi gateway. diff --git a/_board/espressif_esp32s3_box_lite.md b/_board/espressif_esp32s3_box_lite.md index c64d8e4b4d..37c283795f 100644 --- a/_board/espressif_esp32s3_box_lite.md +++ b/_board/espressif_esp32s3_box_lite.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "espressif_esp32s3_box_lite" -title: "ESP32-S3 Box Lite - 16MB Flash, 8MB PSRAM" -name: "ESP32-S3 Box Lite" -manufacturer: "Espressif" +board_id: espressif_esp32s3_box_lite +board_image: espressif_esp32s3_box_lite.jpg board_url: - - "https://www.adafruit.com/product/5511" -board_image: "espressif_esp32s3_box_lite.jpg" -date_added: 2022-07-08 +- https://www.adafruit.com/product/5511 +date_added: 2022-07-08 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - - Display - - Speaker +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +- Display +- Speaker +layout: download +manufacturer: Espressif +name: ESP32-S3 Box Lite +title: ESP32-S3 Box Lite - 16MB Flash, 8MB PSRAM --- The **ESP-BOX** is a new generation AIoT development platform released by Espressif Systems. The ESP32-S3-BOX is an AIoT development board that is based on Espressif’s ESP32-S3 Wi-Fi + Bluetooth 5 (LE) SoC. The ESP32-S3-BOX provides a platform for developing the control of home appliances using Voice Assistance + touch screen controller, sensor, infrared controller, and intelligent Wi-Fi gateway. diff --git a/_board/espressif_esp32s3_devkitc_1_n32r8.md b/_board/espressif_esp32s3_devkitc_1_n32r8.md index 447955d172..d4716de1bc 100644 --- a/_board/espressif_esp32s3_devkitc_1_n32r8.md +++ b/_board/espressif_esp32s3_devkitc_1_n32r8.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32s3_devkitc_1_n32r8" -title: "ESP32-S3-DevKitC-1-N32R8 Download" -name: "ESP32-S3-DevKitC-1-N32R8" -manufacturer: "Espressif" +board_id: espressif_esp32s3_devkitc_1_n32r8 +board_image: espressif_esp32s3_devkitc_1.jpg board_url: - - "https://www.adafruit.com/product/5364" -board_image: "espressif_esp32s3_devkitc_1.jpg" -date_added: 2023-1-31 -family: esp32s3 +- https://www.adafruit.com/product/5364 bootloader_id: espressif_esp32s3_devkitc_1 +date_added: 2023-01-31 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S3-DevKitC-1-N32R8 +title: ESP32-S3-DevKitC-1-N32R8 Download --- The ESP32-S3-DevKitC-1 is an entry-level development board equipped with ESP32-S3-WROOM-2, a general-purpose Wi-Fi + Bluetooth LE MCU module that integrates complete Wi-Fi and Bluetooth LE functions. **This version is equipped with the ESP32-S3-WROOM-2 (PCB antenna) with 32MB Flash and 8MB PSRAM.** diff --git a/_board/espressif_esp32s3_devkitc_1_n8.md b/_board/espressif_esp32s3_devkitc_1_n8.md index c440d8fd53..2739846ce7 100644 --- a/_board/espressif_esp32s3_devkitc_1_n8.md +++ b/_board/espressif_esp32s3_devkitc_1_n8.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32s3_devkitc_1_n8" -title: "ESP32-S3-DevKitC-1-N8 Download" -name: "ESP32-S3-DevKitC-1-N8" -manufacturer: "Espressif" +board_id: espressif_esp32s3_devkitc_1_n8 +board_image: espressif_esp32s3_devkitc_1.jpg board_url: - - "https://www.adafruit.com/product/5312" -board_image: "espressif_esp32s3_devkitc_1.jpg" -date_added: 2022-1-4 -family: esp32s3 +- https://www.adafruit.com/product/5312 bootloader_id: espressif_esp32s3_devkitc_1 +date_added: 2022-01-04 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S3-DevKitC-1-N8 +title: ESP32-S3-DevKitC-1-N8 Download --- The ESP32-S3-DevKitC-1 is an entry-level development board equipped with ESP32-S3-WROOM-1, a general-purpose Wi-Fi + Bluetooth LE MCU module that integrates complete Wi-Fi and Bluetooth LE functions. **This version is equipped with the ESP32-S3-WROOM-1 (PCB antenna) with 8MB Flash and no PSRAM.** diff --git a/_board/espressif_esp32s3_devkitc_1_n8r2.md b/_board/espressif_esp32s3_devkitc_1_n8r2.md index 0db17787e0..0918844ba7 100644 --- a/_board/espressif_esp32s3_devkitc_1_n8r2.md +++ b/_board/espressif_esp32s3_devkitc_1_n8r2.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32s3_devkitc_1_n8r2" -title: "ESP32-S3-DevKitC-1-N8R2 Download" -name: "ESP32-S3-DevKitC-1-N8R2" -manufacturer: "Espressif" +board_id: espressif_esp32s3_devkitc_1_n8r2 +board_image: espressif_esp32s3_devkitc_1.jpg board_url: - - "https://www.adafruit.com/product/5310" -board_image: "espressif_esp32s3_devkitc_1.jpg" -date_added: 2021-12-7 -family: esp32s3 +- https://www.adafruit.com/product/5310 bootloader_id: espressif_esp32s3_devkitc_1 +date_added: 2021-12-07 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S3-DevKitC-1-N8R2 +title: ESP32-S3-DevKitC-1-N8R2 Download --- The ESP32-S3-DevKitC-1 is an entry-level development board equipped with ESP32-S3-WROOM-1, a general-purpose Wi-Fi + Bluetooth LE MCU module that integrates complete Wi-Fi and Bluetooth LE functions. **This version is equipped with the ESP32-S3-WROOM-1 (PCB antenna) with 8MB Flash and 2MB PSRAM.** diff --git a/_board/espressif_esp32s3_devkitc_1_n8r8.md b/_board/espressif_esp32s3_devkitc_1_n8r8.md index f51272d357..d59112fa32 100644 --- a/_board/espressif_esp32s3_devkitc_1_n8r8.md +++ b/_board/espressif_esp32s3_devkitc_1_n8r8.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32s3_devkitc_1_n8r8" -title: "ESP32-S3-DevKitC-1-N8R8 Download" -name: "ESP32-S3-DevKitC-1-N8R8" -manufacturer: "Espressif" +board_id: espressif_esp32s3_devkitc_1_n8r8 +board_image: espressif_esp32s3_devkitc_1.jpg board_url: - - "https://www.adafruit.com/product/5336" -board_image: "espressif_esp32s3_devkitc_1.jpg" -date_added: 2022-1-15 -family: esp32s3 +- https://www.adafruit.com/product/5336 bootloader_id: espressif_esp32s3_devkitc_1 +date_added: 2022-01-15 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S3-DevKitC-1-N8R8 +title: ESP32-S3-DevKitC-1-N8R8 Download --- The ESP32-S3-DevKitC-1 is an entry-level development board equipped with ESP32-S3-WROOM-1, a general-purpose Wi-Fi + Bluetooth LE MCU module that integrates complete Wi-Fi and Bluetooth LE functions. **This version is equipped with the ESP32-S3-WROOM-1 (PCB antenna) with 8MB Flash and 8MB PSRAM.** diff --git a/_board/espressif_esp32s3_devkitc_1_n8r8_hacktablet.md b/_board/espressif_esp32s3_devkitc_1_n8r8_hacktablet.md index c7e629a04c..6e72aedd84 100644 --- a/_board/espressif_esp32s3_devkitc_1_n8r8_hacktablet.md +++ b/_board/espressif_esp32s3_devkitc_1_n8r8_hacktablet.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32s3_devkitc_1_n8r8_hacktablet" -title: "ESP32-S3 Box - 16MB Flash, 8MB PSRAM" -name: "ESP32-S3 Box" -manufacturer: "Kevin Matocha" +board_id: espressif_esp32s3_devkitc_1_n8r8_hacktablet +board_image: espressif_esp32s3_devkitc_1_n8r8_hacktablet.jpg board_url: - - "https://hackaday.io/project/185831-hacktablet-crestron-tss-752-teardown-rebuild" -board_image: "espressif_esp32s3_devkitc_1_n8r8_hacktablet.jpg" -date_added: 2023-10-27 +- https://hackaday.io/project/185831-hacktablet-crestron-tss-752-teardown-rebuild +date_added: 2023-10-27 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - STEMMA QT/QWIIC - - Display +- Wi-Fi +- Bluetooth/BTLE +- STEMMA QT/QWIIC +- Display +layout: download +manufacturer: Kevin Matocha +name: ESP32-S3 Box +title: ESP32-S3 Box - 16MB Flash, 8MB PSRAM --- The HackTablet is a custom assembled tablet capable of running CircuitPython. It uses a Creston TSS-752 conference room contrller for the display and an Espressif ESP32-S3 Dev Kit N8R8 along with a custom PCB to control the display. diff --git a/_board/espressif_esp32s3_devkitm_1_n8.md b/_board/espressif_esp32s3_devkitm_1_n8.md index a19cb03cde..1986569093 100644 --- a/_board/espressif_esp32s3_devkitm_1_n8.md +++ b/_board/espressif_esp32s3_devkitm_1_n8.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "espressif_esp32s3_devkitm_1_n8" -title: "ESP32-S3-DevKitM-1-N8 Download" -name: "ESP32-S3-DevKitM-1-N8" -manufacturer: "Espressif" +board_id: espressif_esp32s3_devkitm_1_n8 +board_image: espressif_esp32s3_devkitm_1_n8.jpg board_url: - - "https://www.adafruit.com/product/5311" -board_image: "espressif_esp32s3_devkitm_1_n8.jpg" -date_added: 2022-4-1 -family: esp32s3 +- https://www.adafruit.com/product/5311 bootloader_id: espressif_esp32s3_devkitm_1 +date_added: 2022-04-01 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: ESP32-S3-DevKitM-1-N8 +title: ESP32-S3-DevKitM-1-N8 Download --- The ESP32-S3-DevKitM-1 is an entry-level development board equipped with the ESP32-S3-MINI-1, a powerful, generic Wi-Fi + Bluetooth LE MCU module that features a rich set of peripherals, yet an optimized size. It's an ideal choice for a wide variety of application scenarios related to the Internet of Things (IoT), such as embedded systems, smart homes, wearable electronics, etc. ESP32-S3-MINI-1 comes with a PCB antenna. **This version is equipped with the ESP32-S3-MINI-1 with 8MB Flash.** diff --git a/_board/espressif_esp32s3_eye.md b/_board/espressif_esp32s3_eye.md index 107c962b0d..950ac14df2 100644 --- a/_board/espressif_esp32s3_eye.md +++ b/_board/espressif_esp32s3_eye.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "espressif_esp32s3_eye" -title: "ESP32-S3-EYE Download" -name: "ESP32-S3-EYE" -manufacturer: "Espressif" +board_id: espressif_esp32s3_eye +board_image: espressif_esp32s3_eye.jpg board_url: - - "https://github.com/espressif/esp-who/blob/master/docs/en/get-started/ESP32-S3-EYE_Getting_Started_Guide.md" -board_image: "espressif_esp32s3_eye.jpg" +- https://github.com/espressif/esp-who/blob/master/docs/en/get-started/ESP32-S3-EYE_Getting_Started_Guide.md bootloader_id: espressif_esp32s3_eye -date_added: 2022-08-22 +date_added: 2022-08-22 12:00:00 family: esp32s3 features: - - Wi-Fi - - Display - - Camera - - Battery Charging +- Wi-Fi +- Display +- Camera +- Battery Charging +layout: download +manufacturer: Espressif +name: ESP32-S3-EYE +title: ESP32-S3-EYE Download --- The ESP32-S3-EYE is a small-sized AI development board produced by Espressif. It is based on the ESP32-S3 SoC and ESP-WHO, Espressif’s AI development framework. It features a 2-Megapixel camera, an LCD display, and a microphone, which are used for image recognition and audio processing. ESP32-S3-EYE offers plenty of storage, with an 8 MB Octal PSRAM and a 8 MB flash. It also supports image transmission via Wi-Fi and debugging through a Micro-USB port. With ESP-WHO, you can develop a variety of AIoT applications, such as smart doorbell, surveillance systems, facial recognition time clock, etc. diff --git a/_board/espressif_esp32s3_lcd_ev.md b/_board/espressif_esp32s3_lcd_ev.md index 4b1a758a89..e1fd534ad1 100644 --- a/_board/espressif_esp32s3_lcd_ev.md +++ b/_board/espressif_esp32s3_lcd_ev.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_esp32s3_lcd_ev" -title: "ESP32-S3 LCD Evaluation Kit Download" -name: "ESP32-S3 LCD Evaluation Kit" -manufacturer: "Espressif" +board_id: espressif_esp32s3_lcd_ev +board_image: espressif_esp32s3_lcd_ev.jpg board_url: - - "https://docs.espressif.com/projects/espressif-esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html" -board_image: "espressif_esp32s3_lcd_ev.jpg" -date_added: 2023-10-27 +- https://docs.espressif.com/projects/espressif-esp-dev-kits/en/latest/esp32s3/esp32-s3-lcd-ev-board/user_guide.html +date_added: 2023-10-27 12:00:00 family: esp32s3 features: - - Wi-Fi - - External Display - - USB-C +- Wi-Fi +- External Display +- USB-C +layout: download +manufacturer: Espressif +name: ESP32-S3 LCD Evaluation Kit +title: ESP32-S3 LCD Evaluation Kit Download --- ESP32-S3-LCD-EV-Board is an ESP32-S3-based development board with a touchscreen. Together with different subboards, ESP32-S3-LCD-EV-Board can drive LCDs with IIC, SPI, 8080, and RGB interfaces. It houses dual array microphones, supports voice recognition and near/far-field voice wake-up, and features screen and voice interaction. The board caters to development needs for touchscreen products with different resolutions and interfaces. Currently, we have two boards available: ESP32-S3-LCD-EV-Board with 480x480 LCD and ESP32-S3-LCD-EV-Board-2 with 800x480 LCD. diff --git a/_board/espressif_esp32s3_usb_otg_n8.md b/_board/espressif_esp32s3_usb_otg_n8.md index 04bc4c4241..60257ba56f 100644 --- a/_board/espressif_esp32s3_usb_otg_n8.md +++ b/_board/espressif_esp32s3_usb_otg_n8.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "espressif_esp32s3_usb_otg_n8" -title: "ESP32-S3-USB-OTG-N8 Download" -name: "ESP32-S3-USB-OTG-N8" -manufacturer: "Espressif" +board_id: espressif_esp32s3_usb_otg_n8 +board_image: espressif_esp32s3_usb_otg_n8.jpg board_url: - - "https://docs.espressif.com/projects/espressif-esp-dev-kits/en/latest/esp32s3/esp32-s3-usb-otg/user_guide.html" -board_image: "espressif_esp32s3_usb_otg_n8.jpg" -date_added: 2022-4-1 +- https://docs.espressif.com/projects/espressif-esp-dev-kits/en/latest/esp32s3/esp32-s3-usb-otg/user_guide.html +date_added: 2022-04-01 12:00:00 family: esp32s3 features: - - Display - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - - Battery Charging +- Display +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +- Battery Charging +layout: download +manufacturer: Espressif +name: ESP32-S3-USB-OTG-N8 +title: ESP32-S3-USB-OTG-N8 Download --- ESP32-S3-USB-OTG is a development board that focuses on USB-OTG function verification and application development. It is based on ESP32-S3 SoC, supports Wi-Fi and BLE 5.0 wireless functions, and supports USB host and USB device functions. It can be used to develop applications such as wireless storage devices, Wi-Fi network cards, LTE MiFi, multimedia devices, virtual keyboards and mice. The development board has the following features: diff --git a/_board/espressif_hmi_devkit_1.md b/_board/espressif_hmi_devkit_1.md index d54bc1d72d..57e7413f3f 100644 --- a/_board/espressif_hmi_devkit_1.md +++ b/_board/espressif_hmi_devkit_1.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "espressif_hmi_devkit_1" -title: "ESP32-S2 HMI Dev Kit Download" -name: "ESP32-S2 Human Machine Interface Dev Kit" -manufacturer: "Espressif" +board_id: espressif_hmi_devkit_1 +board_image: espressif_hmi_devkit_1.jpg board_url: - - "https://www.adafruit.com/product/5207" -board_image: "espressif_hmi_devkit_1.jpg" -date_added: 2021-9-03 -family: esp32s2 +- https://www.adafruit.com/product/5207 bootloader_id: espressif_hmi_1 +date_added: 2021-09-03 12:00:00 +family: esp32s2 features: - - Battery Charging - - Display - - Speaker - - USB-C - - Wi-Fi +- Battery Charging +- Display +- Speaker +- USB-C +- Wi-Fi +layout: download +manufacturer: Espressif +name: ESP32-S2 Human Machine Interface Dev Kit +title: ESP32-S2 HMI Dev Kit Download --- Espressif's **ESP32-S2 Human Machine Interface Dev Kit 1 (ESP32-S2-HMI-DevKit-1)** has been specifically designed for human-machine interfaces in smart-home automation controllers, smart speakers with display, smart alarm clocks, etc. diff --git a/_board/espressif_kaluga_1.3.md b/_board/espressif_kaluga_1.3.md index 954dbaab55..262f9c09af 100644 --- a/_board/espressif_kaluga_1.3.md +++ b/_board/espressif_kaluga_1.3.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "espressif_kaluga_1.3" -title: "ESP32-S2 Kaluga Dev Kit (v1.3) featuring WROVER Download" -name: "ESP32-S2 Kaluga Dev Kit (v1.3) featuring WROVER" -manufacturer: "Espressif" +board_id: espressif_kaluga_1.3 +board_image: espressif_kaluga_1.jpg board_url: - - "https://www.adafruit.com/product/4729" -board_image: "espressif_kaluga_1.jpg" -date_added: 2021-06-09 -family: esp32s2 +- https://www.adafruit.com/product/4729 bootloader_id: espressif_kaluga_1 +date_added: 2021-06-09 12:00:00 +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Espressif +name: ESP32-S2 Kaluga Dev Kit (v1.3) featuring WROVER +title: ESP32-S2 Kaluga Dev Kit (v1.3) featuring WROVER Download --- The **ESP32-S2-Kaluga-1** version 1.3 kit is a full featured development kit by Espressif for the ESP32-S2. From TFTs to touch panels, this dev board has it all. Espressif designed this kit to demonstrate the ESP32-S2's human-computer interaction functionalities and provide the users with the tools for development of human-computer interaction applications based on their new WiFi modules with the ESP32-S2 chip. diff --git a/_board/espressif_kaluga_1.md b/_board/espressif_kaluga_1.md index c378e5d064..35de3fb4e5 100644 --- a/_board/espressif_kaluga_1.md +++ b/_board/espressif_kaluga_1.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "espressif_kaluga_1" -title: "ESP32-S2 Kaluga Dev Kit (v1.2) featuring WROVER Download" -name: "ESP32-S2 Kaluga Dev Kit (v1.2) featuring WROVER" -manufacturer: "Espressif" +board_id: espressif_kaluga_1 +board_image: espressif_kaluga_1.jpg board_url: - - "https://www.adafruit.com/product/4729" -board_image: "espressif_kaluga_1.jpg" -date_added: 2020-08-30 -family: esp32s2 +- https://www.adafruit.com/product/4729 bootloader_id: espressif_kaluga_1 +date_added: 2020-08-30 12:00:00 +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Espressif +name: ESP32-S2 Kaluga Dev Kit (v1.2) featuring WROVER +title: ESP32-S2 Kaluga Dev Kit (v1.2) featuring WROVER Download --- The **ESP32-S2-Kaluga-1** version 1.2 kit is a full featured development kit by Espressif for the ESP32-S2. From TFTs to touch panels, this dev board has it all. Espressif designed this kit to demonstrate the ESP32-S2's human-computer interaction functionalities and provide the users with the tools for development of human-computer interaction applications based on their new WiFi modules with the ESP32-S2 chip. diff --git a/_board/espressif_saola_1_wroom.md b/_board/espressif_saola_1_wroom.md index 8e9c79d6e6..8e35507605 100644 --- a/_board/espressif_saola_1_wroom.md +++ b/_board/espressif_saola_1_wroom.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_saola_1_wroom" -title: "Saola 1 w/WROOM Download" -name: "Saola 1 w/WROOM" -manufacturer: "Espressif" +board_id: espressif_saola_1_wroom +board_image: espressif_saola_1_wroom.jpg board_url: - - "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html" -board_image: "espressif_saola_1_wroom.jpg" -date_added: 2020-05-15 -family: esp32s2 +- https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html bootloader_id: espressif_saola_1_wroom +date_added: 2020-05-15 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Breadboard-Friendly +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: Saola 1 w/WROOM +title: Saola 1 w/WROOM Download --- This is the Saola development board with a WROOM ESP32-S2 module. diff --git a/_board/espressif_saola_1_wrover.md b/_board/espressif_saola_1_wrover.md index ae3b48a09e..837fbedcd5 100644 --- a/_board/espressif_saola_1_wrover.md +++ b/_board/espressif_saola_1_wrover.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espressif_saola_1_wrover" -title: "Saola 1 w/WROVER Download" -name: "Saola 1 w/WROVER" -manufacturer: "Espressif" +board_id: espressif_saola_1_wrover +board_image: espressif_saola_1_wrover.jpg board_url: - - "https://www.adafruit.com/product/4693" -board_image: "espressif_saola_1_wrover.jpg" -date_added: 2020-05-15 -family: esp32s2 +- https://www.adafruit.com/product/4693 bootloader_id: espressif_saola_1_wrover +date_added: 2020-05-15 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Breadboard-Friendly +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Espressif +name: Saola 1 w/WROVER +title: Saola 1 w/WROVER Download --- **ESP32-S2 Saola-1** is a small-sized ESP32-S2 based development board produced by Espressif. Just about all of the I/O pins are broken out to the pin headers on both sides for easy interfacing. Developers can either connect peripherals with jumper wires or mount ESP32-S2 Saola-1 on a breadboard - we recommend two breadboards 'side-by-side' since the Saola is a bit wide and you won't have extra holes on one side for wiring. diff --git a/_board/espruino_banglejs2.md b/_board/espruino_banglejs2.md index 311f6c6e1a..cdc580b94a 100644 --- a/_board/espruino_banglejs2.md +++ b/_board/espruino_banglejs2.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "espruino_banglejs2" -title: "Espruino Bangle.js v2 Download" -name: "Espruino Bangle.js v2" -manufacturer: "Espruino" +board_id: espruino_banglejs2 +board_image: espruino_banglejs2.jpg board_url: - - "https://www.adafruit.com/product/5427" -board_image: "espruino_banglejs2.jpg" -date_added: 2023-3-1 +- https://www.adafruit.com/product/5427 +date_added: 2023-03-01 12:00:00 family: nrf52840 features: - - Bluetooth/BTLE - - Battery Charging - - Display +- Bluetooth/BTLE +- Battery Charging +- Display +layout: download +manufacturer: Espruino +name: Espruino Bangle.js v2 +title: Espruino Bangle.js v2 Download --- **Bangle.js 2 is an open, hackable smartwatch.** With a sunlight-readable always-on screen, 4-week battery life, complete flexibility, and complete control of your data, Bangle.js 2 is a refreshing break from expensive smart watches. diff --git a/_board/espruino_pico.md b/_board/espruino_pico.md index f16265bc63..f17fd515cf 100644 --- a/_board/espruino_pico.md +++ b/_board/espruino_pico.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "espruino_pico" -title: "Espruino Pico Download" -name: "Espruino Pico" -manufacturer: "Espruino" +board_id: espruino_pico +board_image: espruino_pico.jpg board_url: - - "https://www.adafruit.com/product/2621" -board_image: "espruino_pico.jpg" -date_added: 2020-2-7 +- https://www.adafruit.com/product/2621 +date_added: 2020-02-07 12:00:00 family: stm -features: - +features: null +layout: download +manufacturer: Espruino +name: Espruino Pico +title: Espruino Pico Download --- Control Electronics quickly and easily with a tiny USB stick that runs JavaScript - introducing the **Espruino Pico**! [Dig in to the JavaScript of things, with a mini version of the popular Espruino board we already carry](https://www.adafruit.com/product/1887) diff --git a/_board/espruino_wifi.md b/_board/espruino_wifi.md index 9d207ce92c..52b6b9e9ed 100644 --- a/_board/espruino_wifi.md +++ b/_board/espruino_wifi.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "espruino_wifi" -title: "Espruino WiFi Download" -name: "Espruino WiFi" -manufacturer: "Espruino" +board_id: espruino_wifi +board_image: espruino_wifi.jpg board_url: - - "https://www.adafruit.com/product/3514" -board_image: "espruino_wifi.jpg" -date_added: 2020-2-13 +- https://www.adafruit.com/product/3514 +date_added: 2020-02-13 12:00:00 family: stm features: - - Wi-Fi - - Breadboard-Friendly +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Espruino +name: Espruino WiFi +title: Espruino WiFi Download --- Try the JavaScript of things with the **Espruino WiFi** - the world's first open-source JavaScript microcontroller, this time with built in WiFi! This little board has an STM32 microcontroller pre-programmed with Espruino all ready to go so you can start playing with Javascript-microcontrollers. It also comes with an ESP8266 WiFi module, so you can connect to the Internet using Espruino. **Warning:** if you only use Assembly and think that even embedded C/C++ is for wimps, this device might explode your head. diff --git a/_board/feather_bluefruit_sense.md b/_board/feather_bluefruit_sense.md index 7068268bfd..1bb8083542 100644 --- a/_board/feather_bluefruit_sense.md +++ b/_board/feather_bluefruit_sense.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_bluefruit_sense" -title: "Feather Bluefruit Sense Download" -name: "Feather Bluefruit Sense" -manufacturer: "Adafruit" +board_id: feather_bluefruit_sense +board_image: feather_bluefruit_sense.jpg board_url: - - "https://www.adafruit.com/product/4516" -board_image: "feather_bluefruit_sense.jpg" -date_added: 2020-2-1 -family: nrf52840 +- https://www.adafruit.com/product/4516 bootloader_id: feather_nrf52840_sense +date_added: 2020-02-01 12:00:00 +family: nrf52840 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather Bluefruit Sense +title: Feather Bluefruit Sense Download --- The **Adafruit Feather Bluefruit Sense** takes our popular [Feather nRF52840 Express](https://www.adafruit.com/product/4062) and adds a smorgasbord of sensors to make a great wireless sensor platform. This Feather microcontroller comes with Bluetooth Low Energy and native USB support featuring the nRF52840! This Feather is an 'all-in-one' Arduino-compatible + Bluetooth Low Energy with built in USB plus battery charging. With native USB it works great with CircuitPython, too. diff --git a/_board/feather_m0_adalogger.md b/_board/feather_m0_adalogger.md index 1891262a58..db774ff4af 100644 --- a/_board/feather_m0_adalogger.md +++ b/_board/feather_m0_adalogger.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "feather_m0_adalogger" -title: "Feather M0 Adalogger Download" -name: "Feather M0 Adalogger" -manufacturer: "Adafruit" +board_id: feather_m0_adalogger +board_image: feather_m0_adalogger.jpg board_url: - - "https://www.adafruit.com/product/2796" -board_image: "feather_m0_adalogger.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/2796 bootloader_id: feather_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M0 Adalogger +title: Feather M0 Adalogger Download --- Feather is a development board from Adafruit, and like its namesake it is thin, light, and lets you fly! Adafruit designed Feather to be a new open standard for portable microcontroller cores. diff --git a/_board/feather_m0_basic.md b/_board/feather_m0_basic.md index b5afbc7449..95c17689ca 100644 --- a/_board/feather_m0_basic.md +++ b/_board/feather_m0_basic.md @@ -1,20 +1,21 @@ --- -layout: download -board_id: "feather_m0_basic" -title: "Feather M0 Basic Download" -name: "Feather M0 Basic" -manufacturer: "Adafruit" +board_id: feather_m0_basic +board_image: feather_m0_basic.jpg board_url: - - "https://www.adafruit.com/product/2772" -board_image: "feather_m0_basic.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/2772 bootloader_id: feather_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M0 Basic +title: Feather M0 Basic Download --- + Feather is thin, light, and lets you fly! Adafruit designed Feather to be a new open standard for portable microcontroller cores. This is the **Feather M0 Basic Proto**, it has a bunch of prototyping space built right in. Check out the other boards in the [Feather family](https://www.adafruit.com/feather). diff --git a/_board/feather_m0_express.md b/_board/feather_m0_express.md index 50656c678e..2fe590b0ad 100644 --- a/_board/feather_m0_express.md +++ b/_board/feather_m0_express.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "feather_m0_express" -title: "Feather M0 Express Download" -name: "Feather M0 Express" -manufacturer: "Adafruit" +board_id: feather_m0_express +board_image: feather_m0_express.jpg board_url: - - "https://www.adafruit.com/product/3403" -board_image: "feather_m0_express.jpg" -date_added: 2019-3-8 -family: atmel-samd +- https://www.adafruit.com/product/3403 bootloader_id: feather_m0_express +date_added: 2019-03-08 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M0 Express +title: Feather M0 Express Download --- The Adafruit Feather M0 Express was one of the first development boards designed for CircuitPython by Adafruit. Unlike the original Feather M0 Basic, it added a NeoPixel status LED and external 2 MB SPI Flash for storing CircuitPython code. diff --git a/_board/feather_m0_express_crickit.md b/_board/feather_m0_express_crickit.md index a401174bd0..e2c855adc6 100644 --- a/_board/feather_m0_express_crickit.md +++ b/_board/feather_m0_express_crickit.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_m0_express_crickit" -title: "Feather M0 Express + Crickit Download" -name: "Feather M0 Express + Crickit" -manufacturer: "Adafruit" +board_id: feather_m0_express_crickit +board_image: feather_m0_express_crickit.jpg board_url: - - "https://www.adafruit.com/product/3343" -board_image: "feather_m0_express_crickit.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3343 bootloader_id: feather_m0_express +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Speaker - - Feather-Compatible - - Battery Charging - - Robotics +- Speaker +- Feather-Compatible +- Battery Charging +- Robotics +layout: download +manufacturer: Adafruit +name: Feather M0 Express + Crickit +title: Feather M0 Express + Crickit Download --- **Crickit** is Adafruit's **C**reative **R**obotics & **I**nteractive **C**onstruction **Kit**. It's an add-on to popular Feather ecosystem boards that lets you **#MakeRobotFriend **using CircuitPython. diff --git a/_board/feather_m0_rfm69.md b/_board/feather_m0_rfm69.md index 53ebfdd20d..a31e29d029 100644 --- a/_board/feather_m0_rfm69.md +++ b/_board/feather_m0_rfm69.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "feather_m0_rfm69" -title: "Feather M0 RFM69 Download" -name: "Feather M0 RFM69" -manufacturer: "Adafruit" +board_id: feather_m0_rfm69 +board_image: feather_m0_rfm69.jpg board_url: - - "https://www.adafruit.com/product/3176" - - "https://www.adafruit.com/product/3177" -board_image: "feather_m0_rfm69.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3176 +- https://www.adafruit.com/product/3177 bootloader_id: radiofruit_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - LoRa/Radio - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- LoRa/Radio +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M0 RFM69 +title: Feather M0 RFM69 Download --- This is the** Adafruit Feather M0 RFM69 Packet Radio (433, 868, or 915 MHz)****.** Also called _RadioFruits**,**_ Adafruit's take on an microcontroller with a RFM69HCW packet radio transceiver plus built in USB and battery charging. Its an Adafruit Feather M0 with a VHF radio module cooked in! diff --git a/_board/feather_m0_rfm9x.md b/_board/feather_m0_rfm9x.md index 86d263bf34..d51e22d667 100644 --- a/_board/feather_m0_rfm9x.md +++ b/_board/feather_m0_rfm9x.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "feather_m0_rfm9x" -title: "Feather M0 RFM9x Download" -name: "Feather M0 RFM9x" -manufacturer: "Adafruit" +board_id: feather_m0_rfm9x +board_image: feather_m0_rfm9x.jpg board_url: - - "https://www.adafruit.com/product/3178" - - "https://www.adafruit.com/product/3179" -board_image: "feather_m0_rfm9x.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3178 +- https://www.adafruit.com/product/3179 bootloader_id: radiofruit_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - LoRa/Radio - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- LoRa/Radio +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M0 RFM9x +title: Feather M0 RFM9x Download --- This is the **Adafruit Feather M0 RFM96 LoRa Radio (433 MHz).** Also called _RadioFruits**,**_ Adafruit's take on an microcontroller with a "[Long Range (LoRa)](https://www.lora-alliance.org/)" packet radio transceiver with built in USB and battery charging. It is an Adafruit Feather M0 with a 433MHz radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi. diff --git a/_board/feather_m0_supersized.md b/_board/feather_m0_supersized.md index 19dcbc5ac6..a7459e8c03 100644 --- a/_board/feather_m0_supersized.md +++ b/_board/feather_m0_supersized.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "feather_m0_supersized" -title: "Feather M0 Supersized Download" -name: "Feather M0 Supersized" -manufacturer: "Dave Astels" +board_id: feather_m0_supersized +board_image: feather_m0_supersized.jpg board_url: - - "https://blog.adafruit.com/2017/10/27/supersizing-the-feather-m0-express-with-8mb-spi-flash-memory-s25fl064l/" -board_image: "feather_m0_supersized.jpg" -date_added: 2019-3-19 -family: atmel-samd +- https://blog.adafruit.com/2017/10/27/supersizing-the-feather-m0-express-with-8mb-spi-flash-memory-s25fl064l/ bootloader_id: feather_m0_express +date_added: 2019-03-19 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Dave Astels +name: Feather M0 Supersized +title: Feather M0 Supersized Download --- This is a [Feather M0 Express]({{ "/board/feather_m0_express/" | relative_url }}) that has been diff --git a/_board/feather_m4_can.md b/_board/feather_m4_can.md index 58dd78d3ee..8cf8af0c3b 100644 --- a/_board/feather_m4_can.md +++ b/_board/feather_m4_can.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_m4_can" -title: "Feather M4 CAN Download" -name: "Feather M4 CAN" -manufacturer: "Adafruit" +board_id: feather_m4_can +board_image: feather_m4_can.jpg board_url: - - "https://www.adafruit.com/product/4759" -board_image: "feather_m4_can.jpg" -date_added: 2020-9-28 -family: atmel-samd +- https://www.adafruit.com/product/4759 bootloader_id: feather_m4_can +date_added: 2020-09-28 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M4 CAN +title: Feather M4 CAN Download --- One of our favorite Feathers, the Feather M4 Express, gets a glow-up here with an upgrade to the SAME51 chipset which has built-in CAN bus support! Like its SAMD51 cousin, the ATSAME51J19 comes with a 120 MHz Cortex M4 with floating point support and 512 KB Flash and 192 KB RAM. Your code will zig and zag and zoom, and with a bunch of extra peripherals for support, this will for sure be your favorite new chipset for CAN interfacing projects. diff --git a/_board/feather_m4_express.md b/_board/feather_m4_express.md index 98de5c1069..8aee2c1ffd 100644 --- a/_board/feather_m4_express.md +++ b/_board/feather_m4_express.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_m4_express" -title: "Feather M4 Express Download" -name: "Feather M4 Express" -manufacturer: "Adafruit" +board_id: feather_m4_express +board_image: feather_m4_express.jpg board_url: - - "https://www.adafruit.com/product/3857" - - "https://www.adafruit.com/product/4352" -board_image: "feather_m4_express.jpg" -date_added: 2019-3-8 -family: atmel-samd +- https://www.adafruit.com/product/3857 +- https://www.adafruit.com/product/4352 bootloader_id: feather_m4 +date_added: 2019-03-08 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M4 Express +title: Feather M4 Express Download --- This feather is powered by the ATSAMD51J19 - with its 120 MHz Cortex M4 with floating point support and 512 KB Flash and 192 KB RAM. Your code will zig and zag and zoom, and with a bunch of extra peripherals for support, this will for sure be your favorite new chipset. diff --git a/_board/feather_m7_1011.md b/_board/feather_m7_1011.md index 386d6a82e4..32c1fa82b3 100644 --- a/_board/feather_m7_1011.md +++ b/_board/feather_m7_1011.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_m7_1011" -title: "Feather M7 1011 Download" -name: "Feather M7 1011" -manufacturer: "Adafruit" +board_id: feather_m7_1011 +board_image: feather_m7_1011.jpg board_url: - - "https://www.adafruit.com/product/4950" -board_image: "feather_m7_1011.jpg" -date_added: 2020-2-27 +- https://www.adafruit.com/product/4950 +date_added: 2020-02-27 12:00:00 family: mimxrt10xx features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather M7 1011 +title: Feather M7 1011 Download --- The NXP iMX RT1011 microcontroller powers this board with a 500 MHz ARM Cortex M7 processor. There's 4 MB of execute-in-place QSPI for firmware and disk storage plus 128 KB of SRAM in-chip. diff --git a/_board/feather_mimxrt1011.md b/_board/feather_mimxrt1011.md index 2ddddd4970..fb24ceeec3 100644 --- a/_board/feather_mimxrt1011.md +++ b/_board/feather_mimxrt1011.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "feather_mimxrt1011" -title: "Feather MIMXRT1011 Download" -name: "Feather MIMXRT1011" -manufacturer: "arturo182" +board_id: feather_mimxrt1011 +board_image: feather_mimxrt1011.jpg board_url: - - "https://hackaday.io/project/169387-mimxrt10xx-feathers-rt1011-and-rt1062" -board_image: "feather_mimxrt1011.jpg" -date_added: 2020-1-8 +- https://hackaday.io/project/169387-mimxrt10xx-feathers-rt1011-and-rt1062 +date_added: 2020-01-08 12:00:00 family: mimxrt10xx features: - - Feather-Compatible - - Battery Charging - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: arturo182 +name: Feather MIMXRT1011 +title: Feather MIMXRT1011 Download --- A Work-In-Progress Feather featuring the NXP i.MX RT1011 MCU and a ESP32. diff --git a/_board/feather_mimxrt1062.md b/_board/feather_mimxrt1062.md index e06ce25f08..8b0df5b611 100644 --- a/_board/feather_mimxrt1062.md +++ b/_board/feather_mimxrt1062.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "feather_mimxrt1062" -title: "Feather MIMXRT1062 Download" -name: "Feather MIMXRT1062" -manufacturer: "arturo182" +board_id: feather_mimxrt1062 +board_image: feather_mimxrt1062.jpg board_url: - - "https://hackaday.io/project/169387-mimxrt10xx-feathers-rt1011-and-rt1062" -board_image: "feather_mimxrt1062.jpg" -date_added: 2020-1-8 +- https://hackaday.io/project/169387-mimxrt10xx-feathers-rt1011-and-rt1062 +date_added: 2020-01-08 12:00:00 family: mimxrt10xx features: - - Feather-Compatible - - Battery Charging - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: arturo182 +name: Feather MIMXRT1062 +title: Feather MIMXRT1062 Download --- A Work-In-Progress Feather featuring the NXP i.MX RT1062 MCU. diff --git a/_board/feather_nrf52840_express.md b/_board/feather_nrf52840_express.md index 9d950a770a..ffb6a8c9e9 100644 --- a/_board/feather_nrf52840_express.md +++ b/_board/feather_nrf52840_express.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_nrf52840_express" -title: "Feather nRF52840 Express Download" -name: "Feather nRF52840 Express" -manufacturer: "Adafruit" +board_id: feather_nrf52840_express +board_image: feather_nrf52840_express.jpg board_url: - - "https://www.adafruit.com/product/4062" -board_image: "feather_nrf52840_express.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://www.adafruit.com/product/4062 bootloader_id: feather_nrf52840_express +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather nRF52840 Express +title: Feather nRF52840 Express Download --- The **Adafruit Feather nRF52840 Express** is the new Feather family member with Bluetooth Low Energy and _native USB support_ featuring the nRF52840!  It is Adafruit's take on an 'all-in-one' Bluetooth Low Energy device with built in USB plus battery charging. With native USB it's part of the CircuitPython party. diff --git a/_board/feather_radiofruit_zigbee.md b/_board/feather_radiofruit_zigbee.md index 163b278efd..5872a51cc2 100644 --- a/_board/feather_radiofruit_zigbee.md +++ b/_board/feather_radiofruit_zigbee.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "feather_radiofruit_zigbee" -title: "feather_radiofruit_zigbee Download" -name: "feather_radiofruit_zigbee" -manufacturer: "Adafruit" -board_url: -board_image: "unknown.jpg" -date_added: 2019-4-5 -family: atmel-samd +board_id: feather_radiofruit_zigbee +board_image: unknown.jpg +board_url: null bootloader_id: radiofruit_m0 +date_added: 2019-04-05 12:00:00 downloads_display: false -features: +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: feather_radiofruit_zigbee +title: feather_radiofruit_zigbee Download --- This board hasn't been fully documented yet. Please make a pull request adding more info to this file. diff --git a/_board/feather_stm32f405_express.md b/_board/feather_stm32f405_express.md index 046ce079de..1a0b09ee9e 100644 --- a/_board/feather_stm32f405_express.md +++ b/_board/feather_stm32f405_express.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "feather_stm32f405_express" -title: "Feather STM32F405 Express Download" -name: "Feather STM32F405 Express" -manufacturer: "Adafruit" +board_id: feather_stm32f405_express +board_image: feather_stm32f405_express.jpg board_url: - - "https://www.adafruit.com/product/4382" -board_image: "feather_stm32f405_express.jpg" -date_added: 2019-9-26 +- https://www.adafruit.com/product/4382 +date_added: 2019-09-26 12:00:00 family: stm features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Feather STM32F405 Express +title: Feather STM32F405 Express Download --- ST takes flight in this upcoming Feather board. The new STM32F405 Feather (video) that we designed runs CircuitPython at a blistering 168MHz – our fastest CircuitPython board ever! We put a STEMMA QT / Qwiic port on the end, so you can really easily plug and play I2C sensors. diff --git a/_board/firebeetle2_esp32s3.md b/_board/firebeetle2_esp32s3.md index 8e5e808476..2e69f012a0 100644 --- a/_board/firebeetle2_esp32s3.md +++ b/_board/firebeetle2_esp32s3.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "firebeetle2_esp32s3" -title: "FireBeetle 2 ESP32-S3 Download" -name: "FireBeetle 2 ESP32-S3" -manufacturer: "DFRobot" +board_id: firebeetle2_esp32s3 +board_image: firebeetle2_esp32s3.jpg board_url: - - "https://wiki.dfrobot.com/SKU_DFR0975_FireBeetle_2_Board_ESP32_S3" -board_image: "firebeetle2_esp32s3.jpg" -date_added: 2023-11-21 +- https://wiki.dfrobot.com/SKU_DFR0975_FireBeetle_2_Board_ESP32_S3 +date_added: 2023-11-21 12:00:00 family: esp32s3 features: - - Breadboard-Friendly - - USB-C - - Wi-Fi - - Bluetooth/BTLE - - Camera - - Battery Charging +- Breadboard-Friendly +- USB-C +- Wi-Fi +- Bluetooth/BTLE +- Camera +- Battery Charging +layout: download +manufacturer: DFRobot +name: FireBeetle 2 ESP32-S3 +title: FireBeetle 2 ESP32-S3 Download --- FireBeetle 2 ESP32-S3 is a high-performance main-controller built around the ESP32-S3-WROOM-1-N16R8 module. ESP32-S3-WROOM-1-N16R8 comes with 16MB Flash and 8MB PSRAM for storing more data. The acceleration for neural network computing and signal processing workloads provided by the ESP32-S3 chip make the module an ideal choice for a wide variety of applications, such as speech recognition, image recognition, and so on. diff --git a/_board/flipper-zero_wifi_devboard.md b/_board/flipper-zero_wifi_devboard.md index d8bc4ed9c4..fde9941646 100644 --- a/_board/flipper-zero_wifi_devboard.md +++ b/_board/flipper-zero_wifi_devboard.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "flipperzero_wifi_dev" -title: "Flipper Zero WiFi Dev Board Download" -name: "Flipper Zero WiFi Dev" -manufacturer: "Flipper Zero" +board_id: flipperzero_wifi_dev +board_image: flipper-zero_wifi_devboard.jpg board_url: - - "https://docs.flipper.net/development/hardware/wifi-developer-board" -board_image: "flipper-zero_wifi_devboard.jpg" -date_added: 2023-11-28 -family: esp32s2 +- https://docs.flipper.net/development/hardware/wifi-developer-board bootloader_id: espressif_saola_1_wrover +date_added: 2023-11-28 12:00:00 +family: esp32s2 features: - - Wi-Fi - - USB-C +- Wi-Fi +- USB-C +layout: download +manufacturer: Flipper Zero +name: Flipper Zero WiFi Dev +title: Flipper Zero WiFi Dev Board Download --- The developer board with Wi-Fi connectivity made specially for Flipper Zero. Based on the [ESP32-S2](https://www.espressif.com/en/products/socs/esp32-s2) module, this devboard allows: diff --git a/_board/fluff_m0.md b/_board/fluff_m0.md index 4a0d1db287..a91dbdb523 100644 --- a/_board/fluff_m0.md +++ b/_board/fluff_m0.md @@ -1,19 +1,20 @@ --- -layout: download -board_id: "fluff_m0" -title: "Fluff M0 Download" -name: "Fluff M0" -manufacturer: "Radomir Dopieralski" +board_id: fluff_m0 +board_image: fluff_m0.jpg board_url: - - "https://hackaday.io/project/171381-fluff-m0" -board_image: "fluff_m0.jpg" -date_added: 2020-5-22 -family: atmel-samd +- https://hackaday.io/project/171381-fluff-m0 bootloader_id: fluff_m0 +date_added: 2020-05-22 12:00:00 +family: atmel-samd features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Radomir Dopieralski +name: Fluff M0 +title: Fluff M0 Download --- + A minimal CircuitPython board compatible with the Feather M0 Basic. Everything that is non-essential has been removed, and the smallest possible chip is used. diff --git a/_board/fomu.md b/_board/fomu.md index eb49d65d4d..4415713aeb 100644 --- a/_board/fomu.md +++ b/_board/fomu.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "fomu" -title: "Fomu Download" -name: "Fomu" -manufacturer: Sean Cross (xobs) +board_id: fomu +board_image: fomu.jpg board_url: - - "https://tomu.im/fomu.html" - - "https://www.adafruit.com/product/4332" -board_image: "fomu.jpg" -date_added: 2020-4-16 +- https://tomu.im/fomu.html +- https://www.adafruit.com/product/4332 +date_added: 2020-04-16 12:00:00 family: litex +layout: download +manufacturer: Sean Cross (xobs) +name: Fomu +title: Fomu Download --- Only 13mm long, **Fomu** really puts the _micro_ in microprocessor. Fomu is a fully open-source, programmable FPGA device that sits inside a USB Type-A port. It has four buttons, an RGB LED, and an FPGA that is compatible with a fully open source chain and capable of running a RISC-V core. Fomu comes in a custom plastic enclosure that slots perfectly into a USB port. diff --git a/_board/franzininho_wifi_wroom.md b/_board/franzininho_wifi_wroom.md index 031a2b7f2b..dcb6245cbe 100644 --- a/_board/franzininho_wifi_wroom.md +++ b/_board/franzininho_wifi_wroom.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "franzininho_wifi_wroom" -title: "Franzininho WiFi Wrover Download" -name: "Franzininho WiFi Wroom" -manufacturer: "Franzininho" +board_id: franzininho_wifi_wroom +board_image: Franzininho-wifi-wroom.jpg board_url: - - "https://github.com/Franzininho/Franzininho-WIFI" -board_image: "Franzininho-wifi-wroom.jpg" -date_added: 2021-3-13 -family: esp32s2 +- https://github.com/Franzininho/Franzininho-WIFI +date_added: 2021-03-13 12:00:00 downloads_display: true +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Franzininho +name: Franzininho WiFi Wroom +title: Franzininho WiFi Wrover Download --- Franzininho WiFi Board is a development board to evaluate ESP32-S2 Modules (Wroom and Wrover) and develop the new generation of Franzininho Boards. The Franzininho project was created to develop skills in people in the areas of electronics and programming, through activities in the DIY format and in conjunction with maker culture in Brazil. diff --git a/_board/franzininho_wifi_wrover.md b/_board/franzininho_wifi_wrover.md index 18fed754ee..1a1ff4597c 100644 --- a/_board/franzininho_wifi_wrover.md +++ b/_board/franzininho_wifi_wrover.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "franzininho_wifi_wrover" -title: "Franzininho WiFi Wrover Download" -name: "Franzininho WiFi Wrover" -manufacturer: "Franzininho" +board_id: franzininho_wifi_wrover +board_image: Franzininho-wifi-wrover.jpg board_url: - - "https://github.com/Franzininho/Franzininho-WIFI" -board_image: "Franzininho-wifi-wrover.jpg" -date_added: 2021-3-13 -family: esp32s2 +- https://github.com/Franzininho/Franzininho-WIFI +date_added: 2021-03-13 12:00:00 downloads_display: true +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Franzininho +name: Franzininho WiFi Wrover +title: Franzininho WiFi Wrover Download --- Franzininho WiFi Board is a development board to evaluate ESP32-S2 Modules (Wroom and Wrover) and develop the new generation of Franzininho Boards. The Franzininho project was created to develop skills in people in the areas of electronics and programming, through activities in the DIY format and in conjunction with maker culture in Brazil. diff --git a/_board/gb_m4.md b/_board/gb_m4.md index 7c894c1c8a..87268a9540 100644 --- a/_board/gb_m4.md +++ b/_board/gb_m4.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "gb_m4" -title: "Python powered GameBoy-compatible cartridge Download" -name: "Python powered GameBoy-compatible cartridge" -manufacturer: "Scott Shawcroft" +board_id: gb_m4 +board_image: gb_m4.jpg board_url: - - "https://github.com/chickadee-tech/pygb" -board_image: "gb_m4.jpg" -date_added: 2019-4-5 +- https://github.com/chickadee-tech/pygb +date_added: 2019-04-05 12:00:00 family: atmel-samd +layout: download +manufacturer: Scott Shawcroft +name: Python powered GameBoy-compatible cartridge +title: Python powered GameBoy-compatible cartridge Download --- CircuitPython for Game Boy is a work in progress, check out the weekly "Show and Tell" or “Top Secret” segment on ASK AN ENGINEER or when it's ready, the new product videos on [YouTube](https://www.youtube.com/adafruit). diff --git a/_board/gemma_m0.md b/_board/gemma_m0.md index 040242b35e..a98e5be80c 100644 --- a/_board/gemma_m0.md +++ b/_board/gemma_m0.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "gemma_m0" -title: "Gemma M0 Download" -name: "Gemma M0" -manufacturer: "Adafruit" +board_id: gemma_m0 +board_image: gemma_m0.jpg board_url: - - "https://www.adafruit.com/product/3501" - - "https://www.adafruit.com/product/1657" - - "https://www.adafruit.com/product/3778" -board_image: "gemma_m0.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3501 +- https://www.adafruit.com/product/1657 +- https://www.adafruit.com/product/3778 bootloader_id: gemma_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Solder-Free Alligator Clip +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Gemma M0 +title: Gemma M0 Download --- The **Adafruit Gemma M0** is a super small microcontroller board, with just enough built-in to create many simple projects. It may look small and cute: round, about the size of a quarter, with friendly alligator-clip sew pads. But do not be fooled! The Gemma M0 is incredibly powerful! Adafruit used the same form factor from [the original ATtiny85-based Gemma](https://www.adafruit.com/product/1222) and gave it an upgrade. The Gemma M0 has swapped out the lightweight ATtiny85 for a ATSAMD21E18 powerhouse. diff --git a/_board/gemma_m0_pycon2018.md b/_board/gemma_m0_pycon2018.md index 5123c3bb54..8e4892c5a8 100644 --- a/_board/gemma_m0_pycon2018.md +++ b/_board/gemma_m0_pycon2018.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "gemma_m0_pycon2018" -title: "Gemma M0 PyCon 2018 Download" -name: "Gemma M0 PyCon 2018" -manufacturer: "Adafruit" +board_id: gemma_m0_pycon2018 +board_image: gemma_m0_pycon2018.jpg board_url: - - "https://github.com/adafruit/CircuitPython_Badge_README/tree/master/final_versions/PYCON_2018" -board_image: "gemma_m0_pycon2018.jpg" -date_added: 2019-4-13 -family: atmel-samd +- https://github.com/adafruit/CircuitPython_Badge_README/tree/master/final_versions/PYCON_2018 bootloader_id: gemma_m0 +date_added: 2019-04-13 12:00:00 +family: atmel-samd features: - - Solder-Free Alligator Clip +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: Gemma M0 PyCon 2018 +title: Gemma M0 PyCon 2018 Download --- The **Adafruit Gemma M0** is a super small microcontroller board, with just enough built-in to create many simple projects. It may look small and cute: round, about the size of a quarter, with friendly alligator-clip sew pads. But do not be fooled! The Gemma M0 is incredibly powerful! Adafruit used the same form factor from [the original ATtiny85-based Gemma](https://www.adafruit.com/product/1222) and gave it an upgrade. The Gemma M0 has swapped out the lightweight ATtiny85 for a ATSAMD21E18 powerhouse. diff --git a/_board/grandcentral_m4_express.md b/_board/grandcentral_m4_express.md index a94f80e7b1..c4a8b3ff3b 100644 --- a/_board/grandcentral_m4_express.md +++ b/_board/grandcentral_m4_express.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "grandcentral_m4_express" -title: "Grand Central M4 Express Download" -name: "Grand Central M4 Express" -manufacturer: "Adafruit" +board_id: grandcentral_m4_express +board_image: grandcentral_m4_express.jpg board_url: - - "https://www.adafruit.com/product/4064" - - "https://www.adafruit.com/product/4084" -board_image: "grandcentral_m4_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/4064 +- https://www.adafruit.com/product/4084 bootloader_id: grandcentral_m4 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Grand Central M4 Express +title: Grand Central M4 Express Download --- The **Adafruit Grand Central** features the **Microchip ATSAMD51**. This dev board is so big, it's not named after a Metro train, it's a whole freakin' _station_! diff --git a/_board/gravitech_cucumber_m.md b/_board/gravitech_cucumber_m.md index 384a5bb3f8..df3d59c949 100644 --- a/_board/gravitech_cucumber_m.md +++ b/_board/gravitech_cucumber_m.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "gravitech_cucumber_m" -title: "Cucumber M Download" -name: "Cucumber M" -manufacturer: "Gravitech" +board_id: gravitech_cucumber_m +board_image: gravitech_cucumber_m.jpg board_url: - - "https://www.gravitech.us/cumesdebo.html" -board_image: "gravitech_cucumber_m.jpg" -date_added: 2021-8-13 -family: esp32s2 +- https://www.gravitech.us/cumesdebo.html bootloader_id: gravitech_cucumberRIS_v1.1 +date_added: 2021-08-13 12:00:00 downloads_display: true +family: esp32s2 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Gravitech +name: Cucumber M +title: Cucumber M Download --- Cucumber M is a WiFi IoT development board. It features the latest ESP32-S2 chipset from Espressif (ESP32-S2-WROOM). M version is using integrated PCB antenna. diff --git a/_board/gravitech_cucumber_ms.md b/_board/gravitech_cucumber_ms.md index 3609656cd2..958da5c37a 100644 --- a/_board/gravitech_cucumber_ms.md +++ b/_board/gravitech_cucumber_ms.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "gravitech_cucumber_ms" -title: "Cucumber MS Download" -name: "Cucumber MS" -manufacturer: "Gravitech" +board_id: gravitech_cucumber_ms +board_image: gravitech_cucumber_ms.jpg board_url: - - "https://www.gravitech.us/cumsdebowise.html" -board_image: "gravitech_cucumber_ms.jpg" -date_added: 2021-8-13 -family: esp32s2 +- https://www.gravitech.us/cumsdebowise.html bootloader_id: gravitech_cucumberRIS_v1.1 +date_added: 2021-08-13 12:00:00 downloads_display: true +family: esp32s2 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Gravitech +name: Cucumber MS +title: Cucumber MS Download --- Cucumber MS is a WiFi IoT development board. It features the latest ESP32-S2 chipset from Espressif (ESP32-S2-WROOM). MS version is using integrated PCB antenna. It is a special version which include on-board sensors. diff --git a/_board/gravitech_cucumber_r.md b/_board/gravitech_cucumber_r.md index 895c9578b2..342cd26b1a 100644 --- a/_board/gravitech_cucumber_r.md +++ b/_board/gravitech_cucumber_r.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "gravitech_cucumber_r" -title: "Cucumber R Download" -name: "Cucumber R" -manufacturer: "Gravitech" +board_id: gravitech_cucumber_r +board_image: gravitech_cucumber_r.jpg board_url: - - "https://www.gravitech.us/curesdebo.html" -board_image: "gravitech_cucumber_r.jpg" -date_added: 2021-8-13 -family: esp32s2 +- https://www.gravitech.us/curesdebo.html bootloader_id: gravitech_cucumberRIS_v1.1 +date_added: 2021-08-13 12:00:00 downloads_display: true +family: esp32s2 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Gravitech +name: Cucumber R +title: Cucumber R Download --- Cucumber R is a WiFi IoT development board. It features the latest ESP32-S2 chipset from Espressif (ESP32-S2-WROVER). diff --git a/_board/gravitech_cucumber_rs.md b/_board/gravitech_cucumber_rs.md index e466b5f452..e983704ded 100644 --- a/_board/gravitech_cucumber_rs.md +++ b/_board/gravitech_cucumber_rs.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "gravitech_cucumber_rs" -title: "Cucumber RS Download" -name: "Cucumber RS" -manufacturer: "Gravitech" +board_id: gravitech_cucumber_rs +board_image: gravitech_cucumber_rs.jpg board_url: - - "https://www.gravitech.us/cursdebowise.html" -board_image: "gravitech_cucumber_rs.jpg" -date_added: 2021-8-13 -family: esp32s2 +- https://www.gravitech.us/cursdebowise.html bootloader_id: gravitech_cucumberRIS_v1.1 +date_added: 2021-08-13 12:00:00 downloads_display: true +family: esp32s2 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Gravitech +name: Cucumber RS +title: Cucumber RS Download --- Cucumber RS is a special version which include on-board sensors. diff --git a/_board/hack_club_sprig.md b/_board/hack_club_sprig.md index 8214c6c5cc..421d7336ac 100644 --- a/_board/hack_club_sprig.md +++ b/_board/hack_club_sprig.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "hack_club_sprig" -title: "Hack Club Sprig Download" -name: "Hack Club Sprig" -manufacturer: "Hack Club" +board_id: hack_club_sprig +board_image: hack_club_sprig.jpeg board_url: - - "https://sprig.hackclub.com" -board_image: "hack_club_sprig.jpeg" -date_added: "2023-02-03" +- https://sprig.hackclub.com +date_added: 2023-02-03 12:00:00 family: raspberrypi features: - - Display - - Speaker +- Display +- Speaker +layout: download +manufacturer: Hack Club +name: Hack Club Sprig +title: Hack Club Sprig Download --- The [Sprig](https://sprig.hackclub.com) is a handheld game console made by diff --git a/_board/hallowing_m0_express.md b/_board/hallowing_m0_express.md index 587084eda3..eff1e64d97 100644 --- a/_board/hallowing_m0_express.md +++ b/_board/hallowing_m0_express.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "hallowing_m0_express" -title: "HalloWing M0 Express Download" -name: "HalloWing M0 Express" -manufacturer: "Adafruit" +board_id: hallowing_m0_express +board_image: hallowing_m0_express.jpg board_url: - - "https://www.adafruit.com/product/3900" - - "https://www.adafruit.com/product/3956" -board_image: "hallowing_m0_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3900 +- https://www.adafruit.com/product/3956 bootloader_id: hallowing_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging - - Solder-Free Alligator Clip +- Display +- Speaker +- Feather-Compatible +- Battery Charging +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: HalloWing M0 Express +title: HalloWing M0 Express Download --- This is Hallowing..this is Hallowing... Hallowing! Hallowing!  diff --git a/_board/hallowing_m4_express.md b/_board/hallowing_m4_express.md index bca7b64f8d..95801210ec 100644 --- a/_board/hallowing_m4_express.md +++ b/_board/hallowing_m4_express.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "hallowing_m4_express" -title: "HalloWing M4 Express Download" -name: "HalloWing M4 Express" -manufacturer: "Adafruit" +board_id: hallowing_m4_express +board_image: hallowing_m4_express.jpg board_url: - - "https://www.adafruit.com/product/4300" -board_image: "hallowing_m4_express.jpg" -date_added: 2019-8-30 -family: atmel-samd +- https://www.adafruit.com/product/4300 bootloader_id: hallowing_m4 +date_added: 2019-08-30 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging - - Solder-Free Alligator Clip +- Display +- Speaker +- Feather-Compatible +- Battery Charging +- Solder-Free Alligator Clip +layout: download +manufacturer: Adafruit +name: HalloWing M4 Express +title: HalloWing M4 Express Download --- [This is Hallowing..this is Hallowing... Hallowing! Hallowing! ](https://www.youtube.com/watch?v=kGiYxCUAhks&t=39s)Following up on 2018's [most-successful-skull-shaped development board](https://www.adafruit.com/product/3900), we UPPED our -skull-shaped development board game, and [re-spinned (re-spun?) the HalloWing M0](https://www.adafruit.com/product/3900) into the HalloWing M4 with MORE of everything that makes this the spoooookiest dev board. diff --git a/_board/hardkernel_odroid_go.md b/_board/hardkernel_odroid_go.md index bd95d5f607..dcb65b537b 100644 --- a/_board/hardkernel_odroid_go.md +++ b/_board/hardkernel_odroid_go.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "hardkernel_odroid_go" -title: "ODROID Go Download" -name: "ODROID Go" -manufacturer: "HardKernel" +board_id: hardkernel_odroid_go +board_image: hardkernel_odroid_go.jpg board_url: - - "https://www.hardkernel.com/shop/odroid-go/" -board_image: "hardkernel_odroid_go.jpg" -date_added: 2022-8-22 -family: esp32 +- https://www.hardkernel.com/shop/odroid-go/ +date_added: 2022-08-22 12:00:00 downloads_display: true +family: esp32 features: - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi - - Display +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +- Display +layout: download +manufacturer: HardKernel +name: ODROID Go +title: ODROID Go Download --- **The original ODROID Go has been discontinued** diff --git a/_board/heltec_esp32s3_wifi_lora_v3.md b/_board/heltec_esp32s3_wifi_lora_v3.md index 1da82f2236..fe1811e147 100644 --- a/_board/heltec_esp32s3_wifi_lora_v3.md +++ b/_board/heltec_esp32s3_wifi_lora_v3.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "heltec_esp32s3_wifi_lora_v3" -title: "WiFi LoRa 32 V3 Download" -name: "WiFi LoRa 32 V3" -manufacturer: "Heltec Automation" +board_id: heltec_esp32s3_wifi_lora_v3 +board_image: heltec_esp32s3_wifi_lora_v3.jpg board_url: - - "https://heltec.org/project/wifi-lora-32-v3/" -board_image: "heltec_esp32s3_wifi_lora_v3.jpg" -date_added: 2023-11-15 +- https://heltec.org/project/wifi-lora-32-v3/ +date_added: 2023-11-15 12:00:00 family: esp32s3 features: - - Display - - Bluetooth/BTLE - - Battery Charging - - LoRa/Radio +- Display +- Bluetooth/BTLE +- Battery Charging +- LoRa/Radio +layout: download +manufacturer: Heltec Automation +name: WiFi LoRa 32 V3 +title: WiFi LoRa 32 V3 Download --- WiFi LoRa 32 is a classic IoT dev-board designed & produced by Heltec Automation. Since its launch in 2017, it has been loved by developers and makers. The newly launched V3 version has the same pin sequence as the V2 version and retains Wi-Fi, BLE, LoRa, OLED display, and other functions. diff --git a/_board/hexky_s2.md b/_board/hexky_s2.md index 882b076aed..c45f32b8ba 100644 --- a/_board/hexky_s2.md +++ b/_board/hexky_s2.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "hexky_s2" -title: "hexky_s2 Download" -name: "hexky_s2" -manufacturer: "FutureKeys" -board_url: -board_image: "unknown.jpg" +board_id: hexky_s2 +board_image: unknown.jpg +board_url: null +bootloader_id: hexky_s2 +date_added: 2022-04-01 12:00:00 downloads_display: false -date_added: 2022-4-1 family: esp32s2 -bootloader_id: hexky_s2 -features: - +features: null +layout: download +manufacturer: FutureKeys +name: hexky_s2 +title: hexky_s2 Download --- This board hasn't been fully documented yet. Please make a pull request adding more info to this file. diff --git a/_board/hiibot_bluefi.md b/_board/hiibot_bluefi.md index 0dda772515..16a38f272e 100644 --- a/_board/hiibot_bluefi.md +++ b/_board/hiibot_bluefi.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "hiibot_bluefi" -title: "HiiBot BlueFi Download" -name: "HiiBot BlueFi" -manufacturer: "Hangzhou LeBan" +board_id: hiibot_bluefi +board_image: hiibot_bluefi.jpg board_url: - - "https://www.tindie.com/products/bradchan/hiibot-bluefi/" -board_image: "hiibot_bluefi.jpg" -date_added: 2020-5-19 -family: nrf52840 +- https://www.tindie.com/products/bradchan/hiibot-bluefi/ bootloader_id: hiibot_bluefi +date_added: 2020-05-19 12:00:00 +family: nrf52840 features: - - Speaker - - Solder-Free Alligator Clip - - Battery Charging - - Display - - Wi-Fi - - Bluetooth/BTLE - - STEMMA QT/QWIIC +- Speaker +- Solder-Free Alligator Clip +- Battery Charging +- Display +- Wi-Fi +- Bluetooth/BTLE +- STEMMA QT/QWIIC +layout: download +manufacturer: Hangzhou LeBan +name: HiiBot BlueFi +title: HiiBot BlueFi Download --- The HiiBot BlueFi is a microbit-compatible single board computer, but has enhanced computing ability, and connectivity. BlueFi uses Nordic nRF52840 (64MHz Cortex M4F, 1MB Flash and 256KB SRAM) as main processor, ESP32 (160MHz dual CPU, 4MB Flash and 520KB SRAM) as a co-processor. Features: @@ -50,4 +50,4 @@ The most exciting part of the HiiBot BlueFi is that while you can use it with th Easy reprogramming: the HiiBot BlueFi comes pre-loaded with the UF2 bootloader, which looks like a USB storage key. Simply drag firmware on to program, no special tools or drivers needed! It can be used to load up CircuitPython or Arduino IDE. ## Purchase - * [Tindie](https://www.tindie.com/products/bradchan/hiibot-bluefi/) \ No newline at end of file + * [Tindie](https://www.tindie.com/products/bradchan/hiibot-bluefi/) diff --git a/_board/hiibot_iots2.md b/_board/hiibot_iots2.md index 31c94716fa..5edacaa9b9 100644 --- a/_board/hiibot_iots2.md +++ b/_board/hiibot_iots2.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "hiibot_iots2" -title: "HiiBot IoTs2 Download" -name: "HiiBot IoTs2" -manufacturer: "Hangzhou LeBan" +board_id: hiibot_iots2 +board_image: hiibot_iots2.jpg board_url: - - "https://www.tindie.com/products/bradchan/hiibot-iots2/" -board_image: "hiibot_iots2.jpg" -date_added: 2020-11-20 -family: esp32s2 +- https://www.tindie.com/products/bradchan/hiibot-iots2/ bootloader_id: hiibot_iots2 +date_added: 2020-11-20 12:00:00 +family: esp32s2 features: - - Display - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Display +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Hangzhou LeBan +name: HiiBot IoTs2 +title: HiiBot IoTs2 Download --- An ESP32-S2 based development board with small size (25.4 mm x 45.9 mm). diff --git a/_board/huntercat_nfc.md b/_board/huntercat_nfc.md index f5879d8d42..dfc0d9df6f 100644 --- a/_board/huntercat_nfc.md +++ b/_board/huntercat_nfc.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "huntercat_nfc" -title: "Hunter Cat NFC Download" -name: "Hunter Cat NFC" -manufacturer: "Electronic Cats" +board_id: huntercat_nfc +board_image: huntercat_nfc.jpg board_url: - - "https://electroniccats.com/store/hunter-cat-nfc/" -board_image: "huntercat_nfc.jpg" -date_added: 2021-5-26 +- https://electroniccats.com/store/hunter-cat-nfc/ +date_added: 2021-05-26 12:00:00 family: atmel-samd features: - - USB-C +- USB-C +layout: download +manufacturer: Electronic Cats +name: Hunter Cat NFC +title: Hunter Cat NFC Download --- The Hunter Cat NFC is the latest security tool for contactless (Near Field Communication) used in access control, identification and bank cards. Specially created to identify NFC readers and sniffing tools, with this tool you can audit, read or emulate cards of different types. diff --git a/_board/ikigaisense_vita.md b/_board/ikigaisense_vita.md index 14f53a49a3..92b0f20a5c 100644 --- a/_board/ikigaisense_vita.md +++ b/_board/ikigaisense_vita.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "ikigaisense_vita" -title: "Ikigaisense Vita Download" -name: "Ikigaisense Vita" -manufacturer: "Ikigaisense" +board_id: ikigaisense_vita +board_image: ikigaisense_vita.jpg board_url: - - "https://hackaday.io/project/173761-vita-hardware" -board_image: "ikigaisense_vita.jpg" -date_added: 2020-08-30 -family: nrf52840 +- https://hackaday.io/project/173761-vita-hardware bootloader_id: ikigaisense_vita +date_added: 2020-08-30 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE +- Bluetooth/BTLE +layout: download +manufacturer: Ikigaisense +name: Ikigaisense Vita +title: Ikigaisense Vita Download --- Ideally VitaPatch could be a disposable patch. It is an dedicated device to monitor vital signs of temperature, heart rate, SpO2 and blood pressure. It is also an integrated solution to monitor all these vital signs. diff --git a/_board/imxrt1010_evk.md b/_board/imxrt1010_evk.md index 4f82471b05..603ef211eb 100644 --- a/_board/imxrt1010_evk.md +++ b/_board/imxrt1010_evk.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1010_evk" -title: "MIMXRT1010-EVK Eval Kit Download" -name: "MIMXRT1010-EVK Eval Kit" -manufacturer: "NXP" +board_id: imxrt1010_evk +board_image: imxrt1010_evk.jpg board_url: - - "https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/i.mx-rt1010-evaluation-kit:MIMXRT1010-EVK" -board_image: "imxrt1010_evk.jpg" -date_added: 2020-1-8 +- https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/i.mx-rt1010-evaluation-kit:MIMXRT1010-EVK +date_added: 2020-01-08 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1010-EVK Eval Kit +title: MIMXRT1010-EVK Eval Kit Download --- + The i.MX RT1010 EVK is a two-layer low-cost through-hole USB-powered PCB. At its heart lies the i.MX RT1010 crossover MCU in an 80LQFP package, featuring NXP’s advanced implementation of the Arm® Cortex®-M7 core. This core operates at speeds of up to 500 MHz to provide high CPU performance and best real-time response. ## Purchase diff --git a/_board/imxrt1015_evk.md b/_board/imxrt1015_evk.md index 1ed3052e82..f4d06a0b8e 100644 --- a/_board/imxrt1015_evk.md +++ b/_board/imxrt1015_evk.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1015_evk" -title: "MIMXRT1015-EVK Eval Kit Download" -name: "MIMXRT1015-EVK Eval Kit" -manufacturer: "NXP" +board_id: imxrt1015_evk +board_image: imxrt1015_evk.jpg board_url: - - "https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1015-evaluation-kit:MIMXRT1015-EVK" -board_image: "imxrt1015_evk.jpg" -date_added: 2023-6-5 +- https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1015-evaluation-kit:MIMXRT1015-EVK +date_added: 2023-06-05 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1015-EVK Eval Kit +title: MIMXRT1015-EVK Eval Kit Download --- + i.MX RT evaluation boards provide a powerful, extendable platform or evaluation and prototyping using the MCUXpresso suite of software and tools. An Arduino UNO site is provided for expansion using NXP or 3rd party shield boards. The boards feature a high speed USB debug probe based with easy firmware update options to support CMSIS-DSP or a special version of J-link LITE from SEGGER. ## Purchase diff --git a/_board/imxrt1020_evk.md b/_board/imxrt1020_evk.md index 79b06c2c33..f47135e353 100644 --- a/_board/imxrt1020_evk.md +++ b/_board/imxrt1020_evk.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1020_evk" -title: "MIMXRT1020-EVK Eval Kit Download" -name: "MIMXRT1020-EVK Eval Kit" -manufacturer: "NXP" +board_id: imxrt1020_evk +board_image: imxrt1020_evk.jpg board_url: - - "https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/i.mx-rt1020-evaluation-kit:MIMXRT1020-EVK" -board_image: "imxrt1020_evk.jpg" -date_added: 2020-1-31 +- https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/i.mx-rt1020-evaluation-kit:MIMXRT1020-EVK +date_added: 2020-01-31 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1020-EVK Eval Kit +title: MIMXRT1020-EVK Eval Kit Download --- + The i.MX RT1020 EVK is a 2-layer low-cost through-hole USB-powered PCB. At its heart lies the i.MX RT1020 crossover MCU in LQFP144 package, featuring NXP’s advanced implementation of the Arm® Cortex®-M7 core. This core operates at speeds up to 500 MHz to provide high CPU performance and excellent real-time response. ## Purchase diff --git a/_board/imxrt1040_evk.md b/_board/imxrt1040_evk.md index 7030a07cc6..993db996e1 100644 --- a/_board/imxrt1040_evk.md +++ b/_board/imxrt1040_evk.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1040_evk" -title: "MIMXRT1040-EVK Eval Kit Download" -name: "MIMXRT1040-EVK Eval Kit" -manufacturer: "NXP" +board_id: imxrt1040_evk +board_image: imxrt1040_evk.jpg board_url: - - "https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1040-evaluation-kit:MIMXRT1040-EVK" -board_image: "imxrt1040_evk.jpg" -date_added: 2023-6-5 +- https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1040-evaluation-kit:MIMXRT1040-EVK +date_added: 2023-06-05 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1040-EVK Eval Kit +title: MIMXRT1040-EVK Eval Kit Download --- + i.MX RT evaluation boards provide a powerful, extendable platform or evaluation and prototyping using the MCUXpresso suite of software and tools. An Arduino UNO site is provided for expansion using NXP or 3rd party shield boards. The boards feature a high speed USB debug probe based with easy firmware update options to support CMSIS-DSP or a special version of J-link LITE from SEGGER. ## Purchase diff --git a/_board/imxrt1050_evkb.md b/_board/imxrt1050_evkb.md index 47d6b13018..3d97174898 100644 --- a/_board/imxrt1050_evkb.md +++ b/_board/imxrt1050_evkb.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1050_evkb" -title: "MIMXRT1050-EVKB Eval Kit Download" -name: "MIMXRT1050-EVKB Eval Kit" -manufacturer: "NXP" +board_id: imxrt1050_evkb +board_image: imxrt1050_evkb.jpg board_url: - - "https://www.nxp.com/part/MIMXRT1060-EVK" -board_image: "imxrt1050_evkb.jpg" -date_added: 2023-6-5 +- https://www.nxp.com/part/MIMXRT1060-EVK +date_added: 2023-06-05 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1050-EVKB Eval Kit +title: MIMXRT1050-EVKB Eval Kit Download --- + i.MX RT evaluation boards provide a powerful, extendable platform or evaluation and prototyping using the MCUXpresso suite of software and tools. An Arduino UNO site is provided for expansion using NXP or 3rd party shield boards. The boards feature a high speed USB debug probe based with easy firmware update options to support CMSIS-DSP or a special version of J-link LITE from SEGGER. ## Purchase diff --git a/_board/imxrt1060_evk.md b/_board/imxrt1060_evk.md index d8ef5d0e19..392d2efe45 100644 --- a/_board/imxrt1060_evk.md +++ b/_board/imxrt1060_evk.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1060_evk" -title: "MIMXRT1060-EVK Eval Kit Download" -name: "MIMXRT1060-EVK Eval Kit" -manufacturer: "NXP" +board_id: imxrt1060_evk +board_image: imxrt1060_evk.jpg board_url: - - "https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/i.mx-rt1060-evaluation-kit:MIMXRT1060-EVK" -board_image: "imxrt1060_evk.jpg" -date_added: 2020-1-31 +- https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/i.mx-rt1060-evaluation-kit:MIMXRT1060-EVK +date_added: 2020-01-31 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1060-EVK Eval Kit +title: MIMXRT1060-EVK Eval Kit Download --- + The i.MX RT1060 EVK is a 4-layer through-hole USB-powered PCB. At its heart lies the i.MX RT1060 crossover MCU, featuring NXP’s advanced implementation of the Arm® Cortex®-M7 core. This core operates at speeds up to 600 MHz to provide high CPU performance and excellent real-time response. ## Purchase diff --git a/_board/imxrt1060_evkb.md b/_board/imxrt1060_evkb.md index e7708e7d83..4182e84955 100644 --- a/_board/imxrt1060_evkb.md +++ b/_board/imxrt1060_evkb.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "imxrt1060_evkb" -title: "MIMXRT1060-EVKB Eval Kit Download" -name: "MIMXRT1060-EVKB Eval Kit" -manufacturer: "NXP" +board_id: imxrt1060_evkb +board_image: imxrt1060_evk.jpg board_url: - - "https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1060-evaluation-kit:MIMXRT1060-EVKB" -board_image: "imxrt1060_evk.jpg" -date_added: 2023-6-5 +- https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-rt1060-evaluation-kit:MIMXRT1060-EVKB +date_added: 2023-06-05 12:00:00 family: mimxrt10xx -features: - +features: null +layout: download +manufacturer: NXP +name: MIMXRT1060-EVKB Eval Kit +title: MIMXRT1060-EVKB Eval Kit Download --- + i.MX RT evaluation boards provide a powerful, extendable platform or evaluation and prototyping using the MCUXpresso suite of software and tools. An Arduino UNO site is provided for expansion using NXP or 3rd party shield boards. The boards feature a high speed USB debug probe based with easy firmware update options to support CMSIS-DSP or a special version of J-link LITE from SEGGER. ## Purchase diff --git a/_board/itsybitsy_m0_express.md b/_board/itsybitsy_m0_express.md index 07fcc55071..1b5632487a 100644 --- a/_board/itsybitsy_m0_express.md +++ b/_board/itsybitsy_m0_express.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "itsybitsy_m0_express" -title: "ItsyBitsy M0 Express Download" -name: "ItsyBitsy M0 Express" -manufacturer: "Adafruit" +board_id: itsybitsy_m0_express +board_image: itsybitsy_m0_express.jpg board_url: - - "https://www.adafruit.com/product/3727" -board_image: "itsybitsy_m0_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3727 bootloader_id: itsybitsy_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: ItsyBitsy M0 Express +title: ItsyBitsy M0 Express Download --- What's smaller than a Feather but larger than a Trinket? It's an **Adafruit ItsyBitsy M0 Express**! Small, powerful, with a rockin' ATSAMD21 Cortex M0 processor running at 48 MHz - this microcontroller board is perfect when you want something very compact, but still with a bunch of pins. diff --git a/_board/itsybitsy_m4_express.md b/_board/itsybitsy_m4_express.md index 8253eb2f5f..d265d2fc0c 100644 --- a/_board/itsybitsy_m4_express.md +++ b/_board/itsybitsy_m4_express.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "itsybitsy_m4_express" -title: "ItsyBitsy M4 Express Download" -name: "ItsyBitsy M4 Express" -manufacturer: "Adafruit" +board_id: itsybitsy_m4_express +board_image: itsybitsy_m4_express.jpg board_url: - - "https://www.adafruit.com/product/3800" - - "https://www.adafruit.com/product/4028" -board_image: "itsybitsy_m4_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3800 +- https://www.adafruit.com/product/4028 bootloader_id: itsybitsy_m4 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: ItsyBitsy M4 Express +title: ItsyBitsy M4 Express Download --- What's smaller than a Feather but larger than a Trinket? It's an **Adafruit ItsyBitsy M4 Express** featuring the **Microchip ATSAMD51**! Small, powerful, with a ultra fast ATSAMD51 Cortex M4 processor running at 120 MHz - this microcontroller board is perfect when you want something very compact, with a ton of horsepower and a bunch of pins. This Itsy is like a bullet train, with it's **120MHz Cortex M4** with floating point support and **512KB Flash and 192KB RAM**. Your code will zig and zag and zoom, and with a bunch of extra peripherals for support, this will for sure be your favorite new chipset. diff --git a/_board/itsybitsy_nrf52840_express.md b/_board/itsybitsy_nrf52840_express.md index 9e9f48ed82..6cd99fc9b7 100644 --- a/_board/itsybitsy_nrf52840_express.md +++ b/_board/itsybitsy_nrf52840_express.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "itsybitsy_nrf52840_express" -title: "ItsyBitsy NRF52840 Express Download" -name: "ItsyBitsy NRF52840 Express" -manufacturer: "Adafruit" +board_id: itsybitsy_nrf52840_express +board_image: itsybitsy_nrf52840_express.jpg board_url: - - "https://www.adafruit.com/product/4481" -board_image: "itsybitsy_nrf52840_express.jpg" -date_added: 2019-11-4 -family: nrf52840 +- https://www.adafruit.com/product/4481 bootloader_id: feather_nrf52840_express +date_added: 2019-11-04 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Breadboard-Friendly +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: ItsyBitsy NRF52840 Express +title: ItsyBitsy NRF52840 Express Download --- What's smaller than a Feather but larger than a Trinket? It's an **Adafruit ItsyBitsy nRF52840 Express** featuring the **Nordic nRF52840 Bluetooth LE** processor! Teensy & powerful, with an fast nRF52840 Cortex M4 processor running at 64 MHz and 1 MB of FLASH - this microcontroller board is perfect when you want something very compact, with a heap-load of memory and Bluetooth LE support This Itsy is your best option for tiny wireless connectivity - it can act as both a BLE central and peripheral, with support in both Arduino and CircuitPython diff --git a/_board/jpconstantineau_encoderpad_rp2040.md b/_board/jpconstantineau_encoderpad_rp2040.md index 61a808cf91..1948568f43 100644 --- a/_board/jpconstantineau_encoderpad_rp2040.md +++ b/_board/jpconstantineau_encoderpad_rp2040.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "jpconstantineau_encoderpad_rp2040" -title: "EncoderPad RP2040 Download" -name: "EncoderPad RP2040" -manufacturer: "JPConstantineau" +board_id: jpconstantineau_encoderpad_rp2040 +board_image: jpconstantineau_encoderpad_rp2040.jpg board_url: - - "https://github.com/jpconstantineau/EncoderPad_RP2040" -board_image: "jpconstantineau_encoderpad_rp2040.jpg" -date_added: 2021-09-02 +- https://github.com/jpconstantineau/EncoderPad_RP2040 +date_added: 2021-09-02 12:00:00 family: raspberrypi - features: - - USB-C - - Speaker +- USB-C +- Speaker +layout: download +manufacturer: JPConstantineau +name: EncoderPad RP2040 +title: EncoderPad RP2040 Download --- The EncoderPad RP2040 is a Video Editing Macropad with a 60mm Encoder Wheel. This encoder is made of metal and feels like it will last forever. The EncoderPad uses 9 mechanical switches (Cherry MX type) for sending commands to the computer and/or changing the operation of the encoder. The keys are hot-swap socketed and have an individual underglow RGB LED which can be turned on. diff --git a/_board/jpconstantineau_pykey18.md b/_board/jpconstantineau_pykey18.md index 4268755411..87382f6dc5 100644 --- a/_board/jpconstantineau_pykey18.md +++ b/_board/jpconstantineau_pykey18.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "jpconstantineau_pykey18" -title: "PyKey18 Numpad Download" -name: "PyKey18 Numpad" -manufacturer: "JPConstantineau" +board_id: jpconstantineau_pykey18 +board_image: jpconstantineau_pykey18.jpg board_url: - - "https://github.com/jpconstantineau/PyKey60" -board_image: "jpconstantineau_pykey18.jpg" +- https://github.com/jpconstantineau/PyKey60 +date_added: 2021-12-15 12:00:00 downloads_display: true -date_added: 2021-12-15 family: raspberrypi - features: - - USB-C - - Speaker - - Display - - STEMMA QT/QWIIC +- USB-C +- Speaker +- Display +- STEMMA QT/QWIIC +layout: download +manufacturer: JPConstantineau +name: PyKey18 Numpad +title: PyKey18 Numpad Download --- The PyKey18 is a custom programmable mechanical keyboard with a standard Numpad layout, a rotary encoder and a small OLED display. The PyKey18 uses mechanical switches (Cherry MX type). The keys are hot-swap socketed and have an individual underglow RGB LED which can be turned on. The PCB was designed for use with PCB-mount stabilizers. diff --git a/_board/jpconstantineau_pykey44.md b/_board/jpconstantineau_pykey44.md index effaea9ad9..0f9e484e96 100644 --- a/_board/jpconstantineau_pykey44.md +++ b/_board/jpconstantineau_pykey44.md @@ -1,19 +1,18 @@ --- -layout: download -board_id: "jpconstantineau_pykey44" -title: "PyKey44 Ergo Keyboard Download" -name: "PyKey44 Ergo Keyboard" -manufacturer: "JPConstantineau" +board_id: jpconstantineau_pykey44 +board_image: jpconstantineau_pykey44.jpg board_url: - - "https://github.com/jpconstantineau/PyKey60" -board_image: "jpconstantineau_pykey44.jpg" -downloads_display: True -date_added: 2021-12-15 +- https://github.com/jpconstantineau/PyKey60 +date_added: 2021-12-15 12:00:00 +downloads_display: true family: raspberrypi - features: - - USB-C - - Speaker +- USB-C +- Speaker +layout: download +manufacturer: JPConstantineau +name: PyKey44 Ergo Keyboard +title: PyKey44 Ergo Keyboard Download --- The PyKey44 is a custom programmable mechanical keyboard with a compact ergonobic layout similar to the popular Atreus. The PyKey44 uses mechanical switches Kailh Choc type). The keys are hot-swap socketed and have an individual underglow RGB LED which can be turned on. diff --git a/_board/jpconstantineau_pykey60.md b/_board/jpconstantineau_pykey60.md index 0846120f2e..36c4e00b7e 100644 --- a/_board/jpconstantineau_pykey60.md +++ b/_board/jpconstantineau_pykey60.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "jpconstantineau_pykey60" -title: "PyKey 60% Keyboard Download" -name: "PyKey60 Keyboard" -manufacturer: "JPConstantineau" +board_id: jpconstantineau_pykey60 +board_image: jpconstantineau_pykey60.jpg board_url: - - "https://github.com/jpconstantineau/PyKey60" -board_image: "jpconstantineau_pykey60.jpg" -date_added: 2021-09-17 +- https://github.com/jpconstantineau/PyKey60 +date_added: 2021-09-17 12:00:00 family: raspberrypi - features: - - USB-C - - Speaker +- USB-C +- Speaker +layout: download +manufacturer: JPConstantineau +name: PyKey60 Keyboard +title: PyKey 60% Keyboard Download --- The PyKey60 is a custom programmable mechanical keyboard with a standard ANSI 60% keyboard layout compatible with any cases made for the GH60. The PyKey60 uses mechanical switches (Cherry MX type). The keys are hot-swap socketed and have an individual underglow RGB LED which can be turned on. The PCB was designed for use with PCB-mount stabilizers. diff --git a/_board/jpconstantineau_pykey87.md b/_board/jpconstantineau_pykey87.md index 4ea5b13b7e..4be1a5530e 100644 --- a/_board/jpconstantineau_pykey87.md +++ b/_board/jpconstantineau_pykey87.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "jpconstantineau_pykey87" -title: "PyKey87 TKL Download" -name: "PyKey87 Ten Key Less (TKL) Keyboard" -manufacturer: "JPConstantineau" +board_id: jpconstantineau_pykey87 +board_image: jpconstantineau_pykey87.jpg board_url: - - "https://github.com/jpconstantineau/PyKey60" -board_image: "jpconstantineau_pykey87.jpg" +- https://github.com/jpconstantineau/PyKey60 +date_added: 2021-12-15 12:00:00 downloads_display: true -date_added: 2021-12-15 family: raspberrypi - features: - - USB-C - - Speaker - - STEMMA QT/QWIIC +- USB-C +- Speaker +- STEMMA QT/QWIIC +layout: download +manufacturer: JPConstantineau +name: PyKey87 Ten Key Less (TKL) Keyboard +title: PyKey87 TKL Download --- The PyKey87 is a custom programmable mechanical keyboard with a standard TKL layout. The PyKey87 uses mechanical switches (Cherry MX type). The keys are hot-swap socketed and have an individual underglow RGB LED which can be turned on. The PCB was designed for use with PCB-mount stabilizers. diff --git a/_board/kicksat-sprite.md b/_board/kicksat-sprite.md index c55fdbb7c8..53c07b75fc 100644 --- a/_board/kicksat-sprite.md +++ b/_board/kicksat-sprite.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "kicksat-sprite" -title: "KickSat Sprite Download" -name: "KickSat Sprite" -manufacturer: "Max Holliday" +board_id: kicksat-sprite +board_image: kicksat-sprite.jpg board_url: - - "https://github.com/RoboticExplorationLab/sprite" -board_image: "kicksat-sprite.jpg" -date_added: 2019-4-13 -family: atmel-samd +- https://github.com/RoboticExplorationLab/sprite bootloader_id: itsybitsy_m0 +date_added: 2019-04-13 12:00:00 +family: atmel-samd +layout: download +manufacturer: Max Holliday +name: KickSat Sprite +title: KickSat Sprite Download --- CircuitPython provides an approachable and logical means of conducting science with hardware. Paired with low-cost hardware shown to work in space, we can enable an new generation to question and explore the unknown. With the necessary “satellite stuff” already baked in, students can spend their time trying something new rather than reinventing the wheel (similar philosophy to early Arduino efforts and the microcontroller movement in general). diff --git a/_board/lilygo_t_display_rp2040.md b/_board/lilygo_t_display_rp2040.md index b5b6ebeae2..104a533f80 100644 --- a/_board/lilygo_t_display_rp2040.md +++ b/_board/lilygo_t_display_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "lilygo_t_display_rp2040" -title: "T-Display RP2040 Download" -name: "T-Display RP2040" -manufacturer: "LILYGO" +board_id: lilygo_t_display_rp2040 +board_image: lilygo_t_display_rp2040.jpg board_url: - - "https://www.lilygo.cc/products/t-display-rp2040" -board_image: "lilygo_t_display_rp2040.jpg" -date_added: 2023-5-15 +- https://www.lilygo.cc/products/t-display-rp2040 +date_added: 2023-05-15 12:00:00 family: raspberrypi features: - - Battery Charging - - USB-C - - Breadboard-Friendly +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: LILYGO +name: T-Display RP2040 +title: T-Display RP2040 Download --- The LILYGO T-Display RP2040 is a mid-size (52 mm x 25 mm) development board. It features a ST7789V 1.14 inch display and supprt for dual power supply (USB and battery). diff --git a/_board/lilygo_tdeck.md b/_board/lilygo_tdeck.md index 23e3124875..18d212e788 100644 --- a/_board/lilygo_tdeck.md +++ b/_board/lilygo_tdeck.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "lilygo_tdeck" -title: "T-Deck Download" -name: "T-Deck" -manufacturer: "LILYGO" +board_id: lilygo_tdeck +board_image: lilygo_tdeck.jpg board_url: - - "https://www.lilygo.cc/products/t-deck" -board_image: "lilygo_tdeck.jpg" -date_added: 2023-11-15 +- https://www.lilygo.cc/products/t-deck +date_added: 2023-11-15 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Display - - USB-C - - Speaker +- Wi-Fi +- Bluetooth/BTLE +- Display +- USB-C +- Speaker +layout: download +manufacturer: LILYGO +name: T-Deck +title: T-Deck Download --- T-Deck is a pocket-sized gadget with a 2.8-inch, 320 x 240 pixel IPS LCD display, a mini keyboard, and an ESP32 dual-core processor. While it's not exactly a smartphone, you can use your programming knowledge to turn it into a standalone messaging device, or coding software. diff --git a/_board/lilygo_tdisplay_s3.md b/_board/lilygo_tdisplay_s3.md index ed3599832c..c18ffc1195 100644 --- a/_board/lilygo_tdisplay_s3.md +++ b/_board/lilygo_tdisplay_s3.md @@ -1,44 +1,44 @@ ---- -layout: download -board_id: "lilygo_tdisplay_s3" -title: "T-Display S3 Download" -name: "T-Display S3" -manufacturer: "LILYGO" -board_url: - - "https://www.lilygo.cc/products/t-display-s3" -board_image: "lilygo_tdisplay_s3.jpg" -date_added: 2024-3-09 -family: esp32s3 -features: - - Wi-Fi - - Bluetooth/BTLE - - Battery Charging - - USB-C - - Display - - Breadboard-Friendly - - STEMMA QT/QWIIC ---- - -The LILYGO T-Display S3 is a compact development board based on the ESP32-S3 chip. It features a 1.9-inch ST7789 LCD display using a parallel bus, with an optional CST816 touchscreen. - -## Technical details - -* ESP32-S3 Dual-core 32-bit LX7 microprocessor -* 16 MB Flash memory -* 8 MB PSRAM -* 1.9 inch ST7789 LCD display, optional CST816 touchscreen -* Wi-Fi 802.11 b/g/n, BLE 5.0 + BT mesh -* 2 user buttons (`IO0` for Boot and `IO14` for custom functions), 1 reset button -* Battery charging circuit (JST connector for Li-Po battery) -* USB-C for programming and power -* Onboard LED - -## Schematic - -- [LILYGO Github repository](https://github.com/Xinyuan-LilyGO/T-Display-S3) - -## Purchase - -* [LILYGO Own Store - Non-Touch Variant](https://www.lilygo.cc/products/t-display-s3?variant=42351558590645) -* [LILYGO Own Store - Touch Variant](https://www.lilygo.cc/products/t-display-s3?variant=42589373268149) -* [LILYGO Aliexpress Store](https://lilygo.aliexpress.com/store/2090076) \ No newline at end of file +--- +board_id: lilygo_tdisplay_s3 +board_image: lilygo_tdisplay_s3.jpg +board_url: +- https://www.lilygo.cc/products/t-display-s3 +date_added: 2024-03-09 12:00:00 +family: esp32s3 +features: +- Wi-Fi +- Bluetooth/BTLE +- Battery Charging +- USB-C +- Display +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: LILYGO +name: T-Display S3 +title: T-Display S3 Download +--- + +The LILYGO T-Display S3 is a compact development board based on the ESP32-S3 chip. It features a 1.9-inch ST7789 LCD display using a parallel bus, with an optional CST816 touchscreen. + +## Technical details + +* ESP32-S3 Dual-core 32-bit LX7 microprocessor +* 16 MB Flash memory +* 8 MB PSRAM +* 1.9 inch ST7789 LCD display, optional CST816 touchscreen +* Wi-Fi 802.11 b/g/n, BLE 5.0 + BT mesh +* 2 user buttons (`IO0` for Boot and `IO14` for custom functions), 1 reset button +* Battery charging circuit (JST connector for Li-Po battery) +* USB-C for programming and power +* Onboard LED + +## Schematic + +- [LILYGO Github repository](https://github.com/Xinyuan-LilyGO/T-Display-S3) + +## Purchase + +* [LILYGO Own Store - Non-Touch Variant](https://www.lilygo.cc/products/t-display-s3?variant=42351558590645) +* [LILYGO Own Store - Touch Variant](https://www.lilygo.cc/products/t-display-s3?variant=42589373268149) +* [LILYGO Aliexpress Store](https://lilygo.aliexpress.com/store/2090076) diff --git a/_board/lilygo_tembed_esp32s3.md b/_board/lilygo_tembed_esp32s3.md index fe5c383157..d188bd39df 100644 --- a/_board/lilygo_tembed_esp32s3.md +++ b/_board/lilygo_tembed_esp32s3.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "lilygo_tembed_esp32s3" -title: "T-Embed Download" -name: "T-Embed" -manufacturer: "LILYGO" +board_id: lilygo_tembed_esp32s3 +board_image: lilygo_tembed_esp32s3.jpg board_url: - - "https://www.lilygo.cc/products/t-embed" -board_image: "lilygo_tembed_esp32s3.jpg" -date_added: 2023-3-1 +- https://www.lilygo.cc/products/t-embed +date_added: 2023-03-01 12:00:00 family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - Display - - USB-C - - Speaker +- Wi-Fi +- Bluetooth/BTLE +- Display +- USB-C +- Speaker +layout: download +manufacturer: LILYGO +name: T-Embed +title: T-Embed Download --- - T-Embed is an IoT embedded panel designed for programmable development. ABS+PC material (optional translucent version) panel + circuit board integrated standardized design, providing product 3D drawings and reference design drawings. Easy design to embed on your product. +T-Embed is an IoT embedded panel designed for programmable development. ABS+PC material (optional translucent version) panel + circuit board integrated standardized design, providing product 3D drawings and reference design drawings. Easy design to embed on your product. ## Features & Specifications @@ -29,4 +29,4 @@ features: ## Purchase -* [AliExpress - LILYGO store](https://www.aliexpress.us/item/3256804730566839.html) \ No newline at end of file +* [AliExpress - LILYGO store](https://www.aliexpress.us/item/3256804730566839.html) diff --git a/_board/lilygo_ttgo_t-01c3.md b/_board/lilygo_ttgo_t-01c3.md index e8380b5134..1b71331f14 100644 --- a/_board/lilygo_ttgo_t-01c3.md +++ b/_board/lilygo_ttgo_t-01c3.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "lilygo_ttgo_t-01c3" -title: "TTGO T-01C3 ESP32-C3 Download" -name: "TTGO T-01C3 ESP32-C3" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_t-01c3 +board_image: lilygo_ttgo_t-01c3.jpg board_url: - - "https://www.aliexpress.com/item/1005003538055090.html" -board_image: "lilygo_ttgo_t-01c3.jpg" -date_added: 2022-4-1 +- https://www.aliexpress.com/item/1005003538055090.html +date_added: 2022-04-01 12:00:00 family: esp32c3 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: LILYGO +name: TTGO T-01C3 ESP32-C3 +title: TTGO T-01C3 ESP32-C3 Download --- ESP32-C3 is a safe, stable, low-power, low-cost IoT chip, equipped with a RISC-V 32-bit single-core processor supporting 2.4 GHz WiFi and Bluetooth 5 (LE). diff --git a/_board/lilygo_ttgo_t-oi-plus.md b/_board/lilygo_ttgo_t-oi-plus.md index 194f9d06bc..93c719414c 100644 --- a/_board/lilygo_ttgo_t-oi-plus.md +++ b/_board/lilygo_ttgo_t-oi-plus.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "lilygo_ttgo_t-oi-plus" -title: "TTGO T-OI Plus Download" -name: "TTGO T-OI Plus" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_t-oi-plus +board_image: lilygo_ttgo_t-oi-plus.jpg board_url: - - "https://www.tindie.com/products/lilygo/lilygo-ttgo-t-oi-plus-risc-v-esp32-c3/" -board_image: "lilygo_ttgo_t-oi-plus.jpg" -date_added: 2022-5-16 +- https://www.tindie.com/products/lilygo/lilygo-ttgo-t-oi-plus-risc-v-esp32-c3/ +date_added: 2022-05-16 12:00:00 family: esp32c3 features: - - Wi-Fi - - Bluetooth/BTLE - - USB-C +- Wi-Fi +- Bluetooth/BTLE +- USB-C +layout: download +manufacturer: LILYGO +name: TTGO T-OI Plus +title: TTGO T-OI Plus Download --- LILYGO® TTGO T-OI PLUS RISC-V ESP32-C3 Chip Module Rechargeable 16340 Battery Holder Support Wi-Fi BLE Development Board diff --git a/_board/lilygo_ttgo_t8_esp32_s2_wroom.md b/_board/lilygo_ttgo_t8_esp32_s2_wroom.md index 852d0d9dde..7ad362b5d9 100644 --- a/_board/lilygo_ttgo_t8_esp32_s2_wroom.md +++ b/_board/lilygo_ttgo_t8_esp32_s2_wroom.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "lilygo_ttgo_t8_esp32_s2_wroom" -title: "TTGO T8 ESP32-S2-WROOM Download" -name: "TTGO T8 ESP32-S2-WROOM" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_t8_esp32_s2_wroom +board_image: lilygo_ttgo_t8_esp32_s2_wroom.jpg board_url: - - "http://www.lilygo.cn/prod_view.aspx?TypeId=50063&Id=1320&FId=t3:50063:3" -board_image: "lilygo_ttgo_t8_esp32_s2_wroom.jpg" -bootloader_id: "lilygo_ttgo_t8_s2_wroom" -date_added: 2022-3-1 +- http://www.lilygo.cn/prod_view.aspx?TypeId=50063&Id=1320&FId=t3:50063:3 +bootloader_id: lilygo_ttgo_t8_s2_wroom +date_added: 2022-03-01 12:00:00 downloads_display: true family: esp32s2 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: LILYGO +name: TTGO T8 ESP32-S2-WROOM +title: TTGO T8 ESP32-S2-WROOM Download --- The LILYGO TTGO T8 ESP32-S2 ESP32-S2-WROOM is a basic development board. diff --git a/_board/lilygo_ttgo_t8_s2.md b/_board/lilygo_ttgo_t8_s2.md index d877791be7..88b81bf40c 100644 --- a/_board/lilygo_ttgo_t8_s2.md +++ b/_board/lilygo_ttgo_t8_s2.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "lilygo_ttgo_t8_s2" -title: "TTGO T8 ESP32-S2 Download" -name: "TTGO T8 ESP32-S2" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_t8_s2 +board_image: lilygo_ttgo_t8_s2.jpg board_url: - - "http://www.lilygo.cn/prod_view.aspx?TypeId=50033&Id=1321" -board_image: "lilygo_ttgo_t8_s2.jpg" -date_added: 2022-03-09 -family: esp32s2 +- http://www.lilygo.cn/prod_view.aspx?TypeId=50033&Id=1321 bootloader_id: lilygo_ttgo_t8_s2 +date_added: 2022-03-09 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Battery Charging - - USB-C - - Breadboard-Friendly +- Wi-Fi +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: LILYGO +name: TTGO T8 ESP32-S2 +title: TTGO T8 ESP32-S2 Download --- The TTGO T8 ESP32-S2 development board has useful features like the microSD card slot or the option to run the board with battery power. This board is very similar to the TTGO T8 ESP32-S2 ST7789 just without the display. diff --git a/_board/lilygo_ttgo_t8_s2_st7789.md b/_board/lilygo_ttgo_t8_s2_st7789.md index 4cfdfbea53..7e7c4af13a 100644 --- a/_board/lilygo_ttgo_t8_s2_st7789.md +++ b/_board/lilygo_ttgo_t8_s2_st7789.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "lilygo_ttgo_t8_s2_st7789" -title: "TTGO T8 ESP32-S2 ST7789 Download" -name: "TTGO T8 ESP32-S2 ST7789" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_t8_s2_st7789 +board_image: lilygo_ttgo_t8_s2_st7789.jpg board_url: - - "http://www.lilygo.cn/prod_view.aspx?TypeId=50033&Id=1321" -board_image: "lilygo_ttgo_t8_s2_st7789.jpg" -date_added: 2021-02-14 -family: esp32s2 +- http://www.lilygo.cn/prod_view.aspx?TypeId=50033&Id=1321 bootloader_id: lilygo_ttgo_t8_s2_st7789 +date_added: 2021-02-14 12:00:00 +family: esp32s2 features: - - Wi-Fi - - Display - - Battery Charging - - USB-C - - Breadboard-Friendly +- Wi-Fi +- Display +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: LILYGO +name: TTGO T8 ESP32-S2 ST7789 +title: TTGO T8 ESP32-S2 ST7789 Download --- The TTGO T8 ESP32-S2 development board has a ST7789 display and other useful features which allows one to create a variety of projects. diff --git a/_board/lilygo_ttgo_tdisplay_esp32_16m.md b/_board/lilygo_ttgo_tdisplay_esp32_16m.md index f863c6fd15..0fbc2e64d0 100644 --- a/_board/lilygo_ttgo_tdisplay_esp32_16m.md +++ b/_board/lilygo_ttgo_tdisplay_esp32_16m.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "lilygo_ttgo_tdisplay_esp32_16m" -title: "TTGO T-Display ESP32 16M Download" -name: "TTGO T-Display ESP32 16M" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_tdisplay_esp32_16m +board_image: lilygo_ttgo_tdisplay_esp32_16m.jpg board_url: - - "https://www.lilygo.cc/products/lilygo%C2%AE-ttgo-t-display-1-14-inch-lcd-esp32-control-board?variant=42159376466101" -board_image: "lilygo_ttgo_tdisplay_esp32_16m.jpg" -date_added: 2023-5-3 +- https://www.lilygo.cc/products/lilygo%C2%AE-ttgo-t-display-1-14-inch-lcd-esp32-control-board?variant=42159376466101 +date_added: 2023-05-03 12:00:00 family: esp32 features: - - Wi-Fi - - Display - - Battery Charging - - USB-C - - Breadboard-Friendly +- Wi-Fi +- Display +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: LILYGO +name: TTGO T-Display ESP32 16M +title: TTGO T-Display ESP32 16M Download --- A basic development board with LCD, and a built-in ESP32 chip as master control, supports daily entry-level programming. diff --git a/_board/lilygo_ttgo_tdisplay_esp32_4m.md b/_board/lilygo_ttgo_tdisplay_esp32_4m.md index ffb7f6a0b3..1f6c7ca94e 100644 --- a/_board/lilygo_ttgo_tdisplay_esp32_4m.md +++ b/_board/lilygo_ttgo_tdisplay_esp32_4m.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "lilygo_ttgo_tdisplay_esp32_4m" -title: "TTGO T-Display ESP32 4M Download" -name: "TTGO T-Display ESP32 4M" -manufacturer: "LILYGO" +board_id: lilygo_ttgo_tdisplay_esp32_4m +board_image: lilygo_ttgo_tdisplay_esp32_4m.jpg board_url: - - "https://www.lilygo.cc/products/lilygo%C2%AE-ttgo-t-display-1-14-inch-lcd-esp32-control-board?variant=42159376433333" -board_image: "lilygo_ttgo_tdisplay_esp32_4m.jpg" -date_added: 2024-1-18 +- https://www.lilygo.cc/products/lilygo%C2%AE-ttgo-t-display-1-14-inch-lcd-esp32-control-board?variant=42159376433333 +date_added: 2024-01-18 12:00:00 family: esp32 features: - - Wi-Fi - - Display - - Battery Charging - - USB-C - - Breadboard-Friendly +- Wi-Fi +- Display +- Battery Charging +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: LILYGO +name: TTGO T-Display ESP32 4M +title: TTGO T-Display ESP32 4M Download --- A basic development board with LCD, and a built-in ESP32 chip as master control, supports daily entry-level programming. diff --git a/_board/lilygo_twatch_2020_v3.md b/_board/lilygo_twatch_2020_v3.md index 09d7a9b9fe..bf8c516dba 100644 --- a/_board/lilygo_twatch_2020_v3.md +++ b/_board/lilygo_twatch_2020_v3.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "lilygo_twatch_2020_v3" -title: "T-Watch 2020 V3 Download" -name: "T-Watch 2020 V3" -manufacturer: "LILYGO" +board_id: lilygo_twatch_2020_v3 +board_image: lilygo_twatch_2020_v3.jpg board_url: - - "https://www.lilygo.cc/products/t-watch-2020-v3" -board_image: "lilygo_twatch_2020_v3.jpg" -date_added: 2023-5-3 +- https://www.lilygo.cc/products/t-watch-2020-v3 +date_added: 2023-05-03 12:00:00 family: esp32 features: - - Display - - Bluetooth/BTLE - - Battery Charging +- Display +- Bluetooth/BTLE +- Battery Charging +layout: download +manufacturer: LILYGO +name: T-Watch 2020 V3 +title: T-Watch 2020 V3 Download --- LILYGO T-Watch 2020 V3 is based on the hardware function of T-WATCH-2020 and adds the PDM microphone function, which makes the product functions richer and more interesting. The MAX98357 I2S speaker is connected to the cloud and can be used to make intelligent voice control. diff --git a/_board/loc_ber_m4_base_board.md b/_board/loc_ber_m4_base_board.md index 1d3b39fed7..c45ab89053 100644 --- a/_board/loc_ber_m4_base_board.md +++ b/_board/loc_ber_m4_base_board.md @@ -1,15 +1,13 @@ --- -layout: download -board_id: "loc_ber_m4_base_board" -title: "LoC BeR M4 Download" -name: "LoC BeR M4" -manufacturer: "Florin Trutiu" -board_url: -board_image: "unknown.jpg" +board_id: loc_ber_m4_base_board +board_image: unknown.jpg +board_url: null +date_added: 2020-06-14 12:00:00 downloads_display: false -date_added: 2020-6-14 family: atmel-samd -features: +features: null +layout: download +manufacturer: Florin Trutiu +name: LoC BeR M4 +title: LoC BeR M4 Download --- - - diff --git a/_board/lolin_c3_mini.md b/_board/lolin_c3_mini.md index f1c07b946b..7f1097a198 100644 --- a/_board/lolin_c3_mini.md +++ b/_board/lolin_c3_mini.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "lolin_c3_mini" -title: "LOLIN C3 Mini Download" -name: "LOLIN C3 Mini" -manufacturer: "Wemos" +board_id: lolin_c3_mini +board_image: lolin_c3_mini.png board_url: - - "https://www.wemos.cc/en/latest/c3/c3_mini.html" -board_image: "lolin_c3_mini.png" -date_added: 2021-11-2 -family: esp32c3 +- https://www.wemos.cc/en/latest/c3/c3_mini.html bootloader_id: lolin_c3_mini +date_added: 2021-11-02 12:00:00 +family: esp32c3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Breadboard-Friendly - +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Wemos +name: LOLIN C3 Mini +title: LOLIN C3 Mini Download --- A mini Wi-Fi & Bluetooth LE board based on ESP32-C3FH4. diff --git a/_board/lolin_c3_pico.md b/_board/lolin_c3_pico.md index 5add090bfa..2593257e90 100644 --- a/_board/lolin_c3_pico.md +++ b/_board/lolin_c3_pico.md @@ -1,22 +1,21 @@ --- -layout: download -board_id: "lolin_c3_pico" -title: "LOLIN C3 Pico Download" -name: "LOLIN C3 Pico" -manufacturer: "Wemos" +board_id: lolin_c3_pico +board_image: lolin_c3_pico.jpg board_url: - - "https://www.wemos.cc/en/latest/c3/c3_pico.html" -board_image: "lolin_c3_pico.jpg" -date_added: 2023-5-24 -family: esp32c3 +- https://www.wemos.cc/en/latest/c3/c3_pico.html bootloader_id: lolin_c3_pico +date_added: 2023-05-24 12:00:00 +family: esp32c3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Breadboard-Friendly - - Battery Charging - +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Breadboard-Friendly +- Battery Charging +layout: download +manufacturer: Wemos +name: LOLIN C3 Pico +title: LOLIN C3 Pico Download --- A mini Wi-Fi & Bluetooth LE board based on ESP32-C3FH4. diff --git a/_board/lolin_s2_mini.md b/_board/lolin_s2_mini.md index a19e09ea89..19a3381c70 100644 --- a/_board/lolin_s2_mini.md +++ b/_board/lolin_s2_mini.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "lolin_s2_mini" -title: "LOLIN S2 Mini Download" -name: "LOLIN S2 Mini" -manufacturer: "Wemos" +board_id: lolin_s2_mini +board_image: lolin_s2_mini.jpg board_url: - - "https://www.wemos.cc/en/latest/s2/s2_mini.html" -board_image: "lolin_s2_mini.jpg" -date_added: 2021-9-3 -family: esp32s2 +- https://www.wemos.cc/en/latest/s2/s2_mini.html bootloader_id: lolin_s2_mini +date_added: 2021-09-03 12:00:00 +family: esp32s2 features: - - Wi-Fi - - USB-C +- Wi-Fi +- USB-C +layout: download +manufacturer: Wemos +name: LOLIN S2 Mini +title: LOLIN S2 Mini Download --- The LOLIN S2 Mini is a small (33.4 mm x 25.4 mm) development board. The form factor is almost the same as the well-known LOLIN D1 mini. This means that there is a high chance that the [D1 Mini Shields](https://www.wemos.cc/en/latest/d1_mini_shield/index.html) could also be uses with this board. diff --git a/_board/lolin_s2_pico.md b/_board/lolin_s2_pico.md index 6c34ba8efd..a4749e205e 100644 --- a/_board/lolin_s2_pico.md +++ b/_board/lolin_s2_pico.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "lolin_s2_pico" -title: "LOLIN S2 Pico Download" -name: "LOLIN S2 Pico" -manufacturer: "Wemos" +board_id: lolin_s2_pico +board_image: lolin_s2_pico.jpg board_url: - - "https://www.wemos.cc/en/latest/s2/s2_pico.html" -board_image: "lolin_s2_pico.jpg" -date_added: 2021-11-2 -family: esp32s2 +- https://www.wemos.cc/en/latest/s2/s2_pico.html bootloader_id: lolin_s2_pico +date_added: 2021-11-02 12:00:00 +family: esp32s2 features: - - Wi-Fi - - USB-C - - Display - - Breadboard-Friendly - +- Wi-Fi +- USB-C +- Display +- Breadboard-Friendly +layout: download +manufacturer: Wemos +name: LOLIN S2 Pico +title: LOLIN S2 Pico Download --- A development boards with an OLED and a small form factor. diff --git a/_board/lolin_s3.md b/_board/lolin_s3.md index 7d12b7107c..4d29b030c1 100644 --- a/_board/lolin_s3.md +++ b/_board/lolin_s3.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "lolin_s3" -title: "LOLIN S3 Download" -name: "LOLIN S3" -manufacturer: "Wemos" +board_id: lolin_s3 +board_image: lolin_s3.png board_url: - - "https://www.wemos.cc/en/latest/s3/s3.html" -board_image: "lolin_s3.png" -date_added: 2022-9-5 -family: esp32s3 +- https://www.wemos.cc/en/latest/s3/s3.html bootloader_id: lolin_s3 +date_added: 2022-09-05 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly - +- Wi-Fi +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Wemos +name: LOLIN S3 +title: LOLIN S3 Download --- WiFi & Bluetooth 5 (LE) development boards based ESP32-S3-WROOM-1. @@ -45,4 +44,3 @@ WiFi & Bluetooth 5 (LE) development boards based ESP32-S3-WROOM-1. * [Manufacturer Specifications](https://www.wemos.cc/en/latest/s3/s3.html) * [Schematic](https://www.wemos.cc/en/latest/_static/files/sch_s3_v1.0.0.pdf) * [Dimension](https://www.wemos.cc/en/latest/_static/files/dim_s3_v1.0.0.pdf) - diff --git a/_board/lolin_s3_mini.md b/_board/lolin_s3_mini.md index 300b21ef0a..f0e8c9fd59 100644 --- a/_board/lolin_s3_mini.md +++ b/_board/lolin_s3_mini.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "lolin_s3_mini" -title: "LOLIN S3 MINI Download" -name: "LOLIN S3 MINI" -manufacturer: "Wemos" +board_id: lolin_s3_mini +board_image: lolin_s3_mini.jpg board_url: - - "https://www.wemos.cc/en/latest/s3/s3_mini.html" -board_image: "lolin_s3_mini.jpg" -date_added: 2023-5-23 -family: esp32s3 +- https://www.wemos.cc/en/latest/s3/s3_mini.html bootloader_id: lolin_s3_mini +date_added: 2023-05-23 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - USB-C - +- Wi-Fi +- Bluetooth/BTLE +- USB-C +layout: download +manufacturer: Wemos +name: LOLIN S3 MINI +title: LOLIN S3 MINI Download --- WiFi & Bluetooth 5 (LE) development boards based ESP32-S3FH4R2. @@ -43,4 +42,3 @@ WiFi & Bluetooth 5 (LE) development boards based ESP32-S3FH4R2. * [Manufacturer Specifications](https://www.wemos.cc/en/latest/s3/s3_mini.html) * [Schematic](https://www.wemos.cc/en/latest/_static/files/sch_s3_mini_v1.0.0.pdf) * [Dimension](https://www.wemos.cc/en/latest/_static/files/dim_s3_mini_v1.0.0.pdf) - diff --git a/_board/lolin_s3_pro.md b/_board/lolin_s3_pro.md index be54ac7ad6..8f5fb9e905 100644 --- a/_board/lolin_s3_pro.md +++ b/_board/lolin_s3_pro.md @@ -1,24 +1,23 @@ --- -layout: download -board_id: "lolin_s3_pro" -title: "LOLIN S3 Pro Download" -name: "LOLIN S3 Pro" -manufacturer: "Wemos" +board_id: lolin_s3_pro +board_image: lolin_s3_pro.jpg board_url: - - "https://www.wemos.cc/en/latest/s3/s3.html" -board_image: "lolin_s3_pro.jpg" -date_added: 2024-3-18 -family: esp32s3 +- https://www.wemos.cc/en/latest/s3/s3.html bootloader_id: lolin_s3_pro +date_added: 2024-03-18 12:00:00 +family: esp32s3 features: - - Wi-Fi - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly - - External Display - - STEMMA QT/QWIIC - - Battery Charging - +- Wi-Fi +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +- External Display +- STEMMA QT/QWIIC +- Battery Charging +layout: download +manufacturer: Wemos +name: LOLIN S3 Pro +title: LOLIN S3 Pro Download --- WiFi & Bluetooth 5 (LE) boards based ESP32-S3-WROOM-1. diff --git a/_board/luatos_core_esp32c3.md b/_board/luatos_core_esp32c3.md index 623f3cf672..244ffc7245 100644 --- a/_board/luatos_core_esp32c3.md +++ b/_board/luatos_core_esp32c3.md @@ -1,50 +1,49 @@ ---- -layout: download -board_id: "luatos_core_esp32c3" -title: "Luatos Core ESP32C3 Download" -name: "Luatos Core ESP32C3" -manufacturer: "Luatos" -board_url: - - "https://wiki.luatos.com/chips/esp32c3/index.html" -board_image: "luatos_core_esp32c3.jpg" -date_added: 2022-12-20 -family: esp32c3 -bootloader_id: luatos_core_esp32c3 -features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Breadboard-Friendly - ---- - -A low-cost WiFi/BLE board based on ESP32-C3. - -## Features - -- Based on the ESP32-C3 WIFI & Bluetooth LE RISC-V Single-Core CPU -- Type-C USB -- Castellated pads -- 4MB Flash -- Clock speed: 160 Mhz -- 15x Digital IO -- ADC(5 channel, 12-bit), I2C, SPI, UARTx2 -- Size: 21mm x 51mm -- Default firmware: LuatOS -- 2 red status LEDs - -## Note - -There are 2 versions of this board, differing in the inclusion of a CH343 UART to USB component. This board definition targets the -version without the CH343 which connects the built-in USB-CDC/JTAG to the USB-C connector. - -Onboard LDO can be disabled by grounding the PWB pin (15). - -GPIO11 can only be used by setting the EFUSE_VDD_SPI_AS_GPIO efuse and building a custom Circuitpython image. - -## Learn More - -* [Manufacturer Specifications](https://wiki.luatos.com/chips/esp32c3/board.html) -* [ESP32-C3 Datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf) -* [Schematic](https://cdn.openluat-luatcommunity.openluat.com/attachment/20220609213416069_CORE-ESP32-A12.pdf) -* [Dimension](https://cdn.openluat-luatcommunity.openluat.com/attachment/CORE-ESP32-C3%E5%8F%82%E8%80%83%E5%B0%BA%E5%AF%B8_V1.2.pdf) +--- +board_id: luatos_core_esp32c3 +board_image: luatos_core_esp32c3.jpg +board_url: +- https://wiki.luatos.com/chips/esp32c3/index.html +bootloader_id: luatos_core_esp32c3 +date_added: 2022-12-20 12:00:00 +family: esp32c3 +features: +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Luatos +name: Luatos Core ESP32C3 +title: Luatos Core ESP32C3 Download +--- + +A low-cost WiFi/BLE board based on ESP32-C3. + +## Features + +- Based on the ESP32-C3 WIFI & Bluetooth LE RISC-V Single-Core CPU +- Type-C USB +- Castellated pads +- 4MB Flash +- Clock speed: 160 Mhz +- 15x Digital IO +- ADC(5 channel, 12-bit), I2C, SPI, UARTx2 +- Size: 21mm x 51mm +- Default firmware: LuatOS +- 2 red status LEDs + +## Note + +There are 2 versions of this board, differing in the inclusion of a CH343 UART to USB component. This board definition targets the +version without the CH343 which connects the built-in USB-CDC/JTAG to the USB-C connector. + +Onboard LDO can be disabled by grounding the PWB pin (15). + +GPIO11 can only be used by setting the EFUSE_VDD_SPI_AS_GPIO efuse and building a custom Circuitpython image. + +## Learn More + +* [Manufacturer Specifications](https://wiki.luatos.com/chips/esp32c3/board.html) +* [ESP32-C3 Datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf) +* [Schematic](https://cdn.openluat-luatcommunity.openluat.com/attachment/20220609213416069_CORE-ESP32-A12.pdf) +* [Dimension](https://cdn.openluat-luatcommunity.openluat.com/attachment/CORE-ESP32-C3%E5%8F%82%E8%80%83%E5%B0%BA%E5%AF%B8_V1.2.pdf) diff --git a/_board/luatos_core_esp32c3_ch343.md b/_board/luatos_core_esp32c3_ch343.md index fba5efe399..62553a5c21 100644 --- a/_board/luatos_core_esp32c3_ch343.md +++ b/_board/luatos_core_esp32c3_ch343.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "luatos_core_esp32c3_ch343" -title: "Luatos ESP32-C3 Core Board – CH343 USB UART Download" -name: "Luatos ESP32-C3 Core Board – CH343 USB UART" -manufacturer: "Luatos" +board_id: luatos_core_esp32c3_ch343 +board_image: luatos_core_esp32c3_ch343.jpg board_url: - - "https://universal-solder.ca/product/luatos-esp32-c3-core-board-ch343-4mb/" -board_image: "luatos_core_esp32c3_ch343.jpg" -date_added: 2023-10-27 -family: esp32c3 +- https://universal-solder.ca/product/luatos-esp32-c3-core-board-ch343-4mb/ bootloader_id: luatos_core_esp32c3_ch343 +date_added: 2023-10-27 12:00:00 +family: esp32c3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Breadboard-Friendly - +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Luatos +name: Luatos ESP32-C3 Core Board – CH343 USB UART +title: Luatos ESP32-C3 Core Board – CH343 USB UART Download --- The LuatOS ESP32-C3 core board is a type of development board based on the ESP32-C3 chip, which is a highly integrated Wi-Fi and Bluetooth system-on-chip (SoC) designed for low-power Internet of Things (IoT) applications. diff --git a/_board/m5stack_atom_echo.md b/_board/m5stack_atom_echo.md index 4519fcb76e..ca68366f70 100644 --- a/_board/m5stack_atom_echo.md +++ b/_board/m5stack_atom_echo.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "m5stack_atom_echo" -title: "ATOM Echo Smart Speaker Download" -name: "ATOM Echo Smart Speaker" -manufacturer: "M5Stack" +board_id: m5stack_atom_echo +board_image: m5stack_atom_echo.jpg board_url: - - "https://docs.m5stack.com/en/atom/atomecho" -board_image: "m5stack_atom_echo.jpg" -date_added: 2023-1-31 +- https://docs.m5stack.com/en/atom/atomecho +date_added: 2023-01-31 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Speaker +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Speaker +layout: download +manufacturer: M5Stack +name: ATOM Echo Smart Speaker +title: ATOM Echo Smart Speaker Download --- ATOM ECHO is a Programmable Smart Speaker based on the M5ATOM design. Its form factor is very small, its dimensions are only 24 * 24 * 17 mm. Music can be played using the BT capabilities of the ESP32 from a mobile phone or tablet. The device could be programmed to access AWS, Baidu and other cloud platforms, using the built-in microphone and speaker for voice interaction, so that ATOM ECHO has certain AI capabilities, realizing voice control, story telling, Internet of things and other functions. The speaker is embedded with an RGB LED (SK6812), which can visually display the connection status. In addition to being used as a BT speaker, it still has the control ability of Atom series.Screw hole on the back is convenient for users to fix. @@ -35,4 +35,4 @@ ATOM ECHO is a Programmable Smart Speaker based on the M5ATOM design. Its form f ## Purchase -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atom-echo-smart-speaker-dev-kit) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atom-echo-smart-speaker-dev-kit) diff --git a/_board/m5stack_atom_lite.md b/_board/m5stack_atom_lite.md index fc274d1028..f113d2c4ed 100644 --- a/_board/m5stack_atom_lite.md +++ b/_board/m5stack_atom_lite.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "m5stack_atom_lite" -title: "ATOM Lite ESP32 IoT Download" -name: "ATOM Lite ESP32 IoT" -manufacturer: "M5Stack" +board_id: m5stack_atom_lite +board_image: m5stack_atom_lite.jpg board_url: - - "https://docs.m5stack.com/en/core/atom_lite" -board_image: "m5stack_atom_lite.jpg" -date_added: 2022-11-1 +- https://docs.m5stack.com/en/core/atom_lite +date_added: 2022-11-01 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE +- Wi-Fi +- USB-C +- Bluetooth/BTLE +layout: download +manufacturer: M5Stack +name: ATOM Lite ESP32 IoT +title: ATOM Lite ESP32 IoT Download --- Atom Lite, which has a size of only 24*24mm, is a very compact development board in the M5Stack development kit series. It provides more GPIOs for user customization which is very suitable for embedded smart home devices and in making smart toys. The main control adopts the ESP32-PICO chip which comes integrated with Wi-Fi technologies and has a 4MB of integrated SPI flash memory. Atom Lite board provides an Infra-Red LED, a RGB LED, buttons, and a HY2.0 interface. In addition, it can connect to external sensors and actuators through 6 GPIOs. The on-board Type-C USB interface enables rapid program upload and execution. @@ -30,4 +30,4 @@ Atom Lite, which has a size of only 24*24mm, is a very compact development board ## Purchase -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atom-lite-esp32-development-kit) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atom-lite-esp32-development-kit) diff --git a/_board/m5stack_atom_matrix.md b/_board/m5stack_atom_matrix.md index f259e83d9f..16db0c0450 100644 --- a/_board/m5stack_atom_matrix.md +++ b/_board/m5stack_atom_matrix.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "m5stack_atom_matrix" -title: "ATOM Matrix ESP32 Download" -name: "ATOM Matrix ESP32" -manufacturer: "M5Stack" +board_id: m5stack_atom_matrix +board_image: m5stack_atom_matrix.jpg board_url: - - "https://docs.m5stack.com/en/core/atom_matrix" - - "https://www.adafruit.com/product/4497" -board_image: "m5stack_atom_matrix.jpg" -date_added: 2023-1-31 +- https://docs.m5stack.com/en/core/atom_matrix +- https://www.adafruit.com/product/4497 +date_added: 2023-01-31 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +layout: download +manufacturer: M5Stack +name: ATOM Matrix ESP32 +title: ATOM Matrix ESP32 Download --- ATOM Matrix, which has a size of only 24 * 24mm, is the most compact development board in the M5Stack development kit series. It provides more GPIO pins and is very suitable for handy and miniature embedded device development. The main control adopts the ESP32-PICO-D4 chip, which comes integrated with Wi-Fi technologies and has 4MB of integrated SPI flash memory. The Atom board provides an Infra-Red LED along with the 5 * 5 RGB LED matrix on the panel, a built-in IMU sensor (MPU6886), and a HY2.0 interface. A general purpose programmable button is proved below the RGB Led matrix to enable users to add input support to their various projects. The on-board USB interface (Type-C) enables rapid program uploading and execution. One M2 screw hole is provided on the back for mounting the board. @@ -34,4 +34,4 @@ ATOM Matrix, which has a size of only 24 * 24mm, is the most compact development ## Purchase * [Adafruit](https://www.adafruit.com/product/4497) -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atom-matrix-esp32-development-kit) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atom-matrix-esp32-development-kit) diff --git a/_board/m5stack_atom_u.md b/_board/m5stack_atom_u.md index ff7494579c..502c7d51e6 100644 --- a/_board/m5stack_atom_u.md +++ b/_board/m5stack_atom_u.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "m5stack_atom_u" -title: "AtomU ESP32 Download" -name: "AtomU ESP32" -manufacturer: "M5Stack" +board_id: m5stack_atom_u +board_image: m5stack_atom_u.jpg board_url: - - "https://docs.m5stack.com/en/core/atom_u" -board_image: "m5stack_atom_u.jpg" -date_added: 2023-1-31 +- https://docs.m5stack.com/en/core/atom_u +date_added: 2023-01-31 12:00:00 family: esp32 -tags: - - Atom U features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE +- Wi-Fi +- USB-C +- Bluetooth/BTLE +layout: download +manufacturer: M5Stack +name: AtomU ESP32 +tags: +- Atom U +title: AtomU ESP32 Download --- ATOM U is a compact low-power consumption speech recognition IoT development kit. It adopts an ESP32 chipset, equipped with 2 low-power Xtensa 32-bit LX6 microprocessors with the main frequency of up to 240MHz. Built-in USB-A interface, IR emitter, programmable RGB LED. Plug-and-play, easy to upload and download programs. Integrated Wi-Fi and digital microphone SPM1423(I2S) for the clear sound record. suitable for HMI, Speech-to-Text (STT). @@ -32,4 +32,4 @@ ATOM U is a compact low-power consumption speech recognition IoT development kit ## Purchase -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atomu-esp32-development-kit-with-usb-a) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/atomu-esp32-development-kit-with-usb-a) diff --git a/_board/m5stack_atoms3.md b/_board/m5stack_atoms3.md index 623271c174..6417eb8ad3 100644 --- a/_board/m5stack_atoms3.md +++ b/_board/m5stack_atoms3.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "m5stack_atoms3" -title: "AtomS3 Dev Kit w/ 0.85-inch Screen Download" -name: "AtomS3 Dev Kit w/ 0.85-inch Screen" -manufacturer: "M5Stack" +board_id: m5stack_atoms3 +board_image: m5stack_atoms3.jpg board_url: - - "https://docs.m5stack.com/en/core/AtomS3" -board_image: "m5stack_atoms3.jpg" -date_added: 2023-10-27 -family: esp32s3 +- https://docs.m5stack.com/en/core/AtomS3 bootloader_id: m5stack_atoms3 +date_added: 2023-10-27 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +layout: download +manufacturer: M5Stack +name: AtomS3 Dev Kit w/ 0.85-inch Screen +title: AtomS3 Dev Kit w/ 0.85-inch Screen Download --- AtomS3 is a highly integrated programmable controller that harnesses the power of the ESP32-S3 chip. This compact controller boasts a range of features, including integrated WiFi functionality and 8MB of on-chip FLASH memory. With the ESP32-S3 chip, AtomS3 delivers exceptional performance and versatility for a variety of applications. @@ -41,4 +41,4 @@ AtomS3 is designed with compactness in mind, measuring at only 24 *24 *13mm in s ## Purchase -* [M5Stack](https://shop.m5stack.com/products/atoms3-dev-kit-w-0-85-inch-screen) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/products/atoms3-dev-kit-w-0-85-inch-screen) diff --git a/_board/m5stack_atoms3_lite.md b/_board/m5stack_atoms3_lite.md index dac2050510..f72c7b13b4 100644 --- a/_board/m5stack_atoms3_lite.md +++ b/_board/m5stack_atoms3_lite.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "m5stack_atoms3_lite" -title: "AtomS3 Lite ESP32S3 Dev Kit Download" -name: "AtomS3 Lite ESP32S3 Dev Kit" -manufacturer: "M5Stack" +board_id: m5stack_atoms3_lite +board_image: m5stack_atoms3_lite.png board_url: - - "https://docs.m5stack.com/en/core/AtomS3%20Lite" -board_image: "m5stack_atoms3_lite.png" -date_added: 2023-4-4 -family: esp32s3 +- https://docs.m5stack.com/en/core/AtomS3%20Lite bootloader_id: m5stack_atoms3_lite +date_added: 2023-04-04 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE +- Wi-Fi +- USB-C +- Bluetooth/BTLE +layout: download +manufacturer: M5Stack +name: AtomS3 Lite ESP32S3 Dev Kit +title: AtomS3 Lite ESP32S3 Dev Kit Download --- ATOMS3 Liteis anAtom Series Programmable Controllerin the M5Stack Development Kit series using ESP32-S3. @@ -49,4 +49,4 @@ The ESP32-S3 is a highly-integrated, low-power, 2.4 GHz Wi-Fi System-on-Chip (So ## Purchase -* [M5Stack](https://shop.m5stack.com/products/atoms3-lite-esp32s3-dev-kit) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/products/atoms3-lite-esp32s3-dev-kit) diff --git a/_board/m5stack_atoms3u.md b/_board/m5stack_atoms3u.md index 1c8407fc1e..d46e54d62b 100644 --- a/_board/m5stack_atoms3u.md +++ b/_board/m5stack_atoms3u.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "m5stack_atoms3u" -title: "AtomS3U ESP32S3 Dev Kit Download" -name: "AtomS3U ESP32S3 Dev Kit" -manufacturer: "M5Stack" +board_id: m5stack_atoms3u +board_image: m5stack_atoms3u.jpg board_url: - - "https://shop.m5stack.com/products/atoms3u" -board_image: "m5stack_atoms3u.jpg" -date_added: 2023-10-27 -family: esp32s3 +- https://shop.m5stack.com/products/atoms3u bootloader_id: m5stack_atoms3u +date_added: 2023-10-27 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE +- Wi-Fi +- USB-C +- Bluetooth/BTLE +layout: download +manufacturer: M5Stack +name: AtomS3U ESP32S3 Dev Kit +title: AtomS3U ESP32S3 Dev Kit Download --- `AtomS3U`is a`U disk`form`ESP32-S3`multi-function development board, using Espressif's ESP32S3 main control chip, dual-core Xtensa LX7 processor, main frequency 240MHz, built-in WiFi function. Its interfaces include USB-A port`(support OTG)`,1 Grove port, 6Pin@2.54mm header (including 4 GPIOs); peripherals include 1`PDM microphone`, 1`IR`tube, and 1 programmable`RGB-LED`. The product can be used in scenarios such as human-computer interaction, voice input/recognition (STT), and IO control. @@ -33,4 +33,4 @@ features: ## Purchase -* [M5Stack](https://shop.m5stack.com/products/atoms3u) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/products/atoms3u) diff --git a/_board/m5stack_cardputer.md b/_board/m5stack_cardputer.md index a118a2784d..01801740b1 100644 --- a/_board/m5stack_cardputer.md +++ b/_board/m5stack_cardputer.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "m5stack_cardputer" -title: "M5Stack CardPuter - M5StampS3 powered mini computer Download" -name: "M5Stack CardPuter - M5StampS3 powered mini computer" -manufacturer: "M5Stack" +board_id: m5stack_cardputer +board_image: m5stack_cardputer.jpg board_url: - - "https://docs.m5stack.com/en/core/Cardputer" -board_image: "m5stack_cardputer.jpg" -date_added: 2024-3-10 -family: esp32s3 +- https://docs.m5stack.com/en/core/Cardputer bootloader_id: adafruit_feather_esp32s3_nopsram +date_added: 2024-03-10 12:00:00 downloads_display: true +family: esp32s3 features: - - Speaker - - Battery Charging - - Display - - Wi-Fi - - USB-C - - Bluetooth/BTLE +- Speaker +- Battery Charging +- Display +- Wi-Fi +- USB-C +- Bluetooth/BTLE +layout: download +manufacturer: M5Stack +name: M5Stack CardPuter - M5StampS3 powered mini computer +title: M5Stack CardPuter - M5StampS3 powered mini computer Download --- Cardputer is a card-sized portable computer that is perfect for engineers. At the heart of Cardputer is the M5StampS3, a mini development board based on the ESP32-S3 chip. Cardputer features a powerful dual-core processor, supports Wi-Fi functionality and integrates various peripherals and sensors, making it ideal for rapid functional verification, industrial control and home automation systems. diff --git a/_board/m5stack_core2.md b/_board/m5stack_core2.md index 073bdd4f85..bb47f2d423 100644 --- a/_board/m5stack_core2.md +++ b/_board/m5stack_core2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "m5stack_core2" -title: "Core2 ESP32 IoT Download" -name: "Core2 ESP32 IoT" -manufacturer: "M5Stack" +board_id: m5stack_core2 +board_image: m5stack_core2.jpg board_url: - - "https://docs.m5stack.com/en/core/core2" -board_image: "m5stack_core2.jpg" -date_added: 2023-5-4 +- https://docs.m5stack.com/en/core/core2 +date_added: 2023-05-04 12:00:00 family: esp32 features: - - Speaker - - Battery Charging - - Display - - Wi-Fi - - Bluetooth/BTLE - - USB-C +- Speaker +- Battery Charging +- Display +- Wi-Fi +- Bluetooth/BTLE +- USB-C +layout: download +manufacturer: M5Stack +name: Core2 ESP32 IoT +title: Core2 ESP32 IoT Download --- **M5Core2** is the second generation core device in the M5Stack development kit series, which further enhances the functions of the original generation of cores. @@ -44,4 +44,4 @@ The 3 icons on the front of the screen are capacitive buttons which are programm ## Purchase -* [M5Stack](https://shop.m5stack.com/products/m5stack-core2-esp32-iot-development-kit) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/products/m5stack-core2-esp32-iot-development-kit) diff --git a/_board/m5stack_core_basic.md b/_board/m5stack_core_basic.md index 96563beb61..dec50e5efc 100644 --- a/_board/m5stack_core_basic.md +++ b/_board/m5stack_core_basic.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "m5stack_core_basic" -title: "ESP32 Basic Core IoT Download" -name: "ESP32 Basic Core IoT" -manufacturer: "M5Stack" +board_id: m5stack_core_basic +board_image: m5stack_core_basic.jpg board_url: - - "https://docs.m5stack.com/en/core/basic_v2.6" - - "https://www.adafruit.com/product/4178" -board_image: "m5stack_core_basic.jpg" -date_added: 2022-10-30 +- https://docs.m5stack.com/en/core/basic_v2.6 +- https://www.adafruit.com/product/4178 +date_added: 2022-10-30 12:00:00 family: esp32 features: - - Speaker - - Battery Charging - - Display - - Wi-Fi - - Bluetooth/BTLE - - USB-C +- Speaker +- Battery Charging +- Display +- Wi-Fi +- Bluetooth/BTLE +- USB-C +layout: download +manufacturer: M5Stack +name: ESP32 Basic Core IoT +title: ESP32 Basic Core IoT Download --- Get yourself a kit that can do it all! The M5Stack Basic Development Kit is a ESP32-based WiFi microcontroller that's compatible with MicroPython and Arduino. It comes jam-packed with Wi-Fi / Bluetooth capability, running at 240 MHz with the dual-core processor and 16MB of SPI Flash. @@ -43,4 +43,4 @@ Perfect for people who want to make advanced ESP32 projects with a display, user ## Purchase * [Adafruit](https://www.adafruit.com/product/4178) -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/esp32-basic-core-iot-development-kit-v2-6) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/esp32-basic-core-iot-development-kit-v2-6) diff --git a/_board/m5stack_core_fire.md b/_board/m5stack_core_fire.md index 484c3ef59a..783fa33d0d 100644 --- a/_board/m5stack_core_fire.md +++ b/_board/m5stack_core_fire.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "m5stack_core_fire" -title: "M5Stack FIRE IoT Download" -name: "M5Stack FIRE IoT" -manufacturer: "M5Stack" +board_id: m5stack_core_fire +board_image: m5stack_core_fire.jpg board_url: - - "https://docs.m5stack.com/en/core/fire_v2.6" -board_image: "m5stack_core_fire.jpg" -date_added: 2022-11-1 +- https://docs.m5stack.com/en/core/fire_v2.6 +date_added: 2022-11-01 12:00:00 family: esp32 -tags: - - Core Fire features: - - Speaker - - Battery Charging - - Display - - Wi-Fi - - Bluetooth/BTLE - - USB-C +- Speaker +- Battery Charging +- Display +- Wi-Fi +- Bluetooth/BTLE +- USB-C +layout: download +manufacturer: M5Stack +name: M5Stack FIRE IoT +tags: +- Core Fire +title: M5Stack FIRE IoT Download --- M5Stack FIRE is a cost-effective Wi-Fi IoT controller adopts Espressif ESP32 main control chip, equipped with two low-power Xtensa® 32-bit LX6 microprocessors, with main frequency up to 240MHz. With 8M PSRAM + 16M FLASH memory, 2.0-inch full-color HD IPS display panel, IMU, LED, microphone, speaker, TFCard slot and other peripherals. The full-coverage case ensures circuit stability even in complex industrial applications. The internal offers a wide range of common interface resources (ADC/DAC/I2C/UART/SPI, etc.) which is highly expandable. This functional and powerful IoT controller is very applicable to various product prototyping, industrial control and smart building applications. @@ -41,4 +41,4 @@ M5Stack FIRE is a cost-effective Wi-Fi IoT controller adopts Espressif ESP32 mai ## Purchase -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/m5stack-fire-iot-development-kit-psram-v2-6) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/m5stack-fire-iot-development-kit-psram-v2-6) diff --git a/_board/m5stack_dial.md b/_board/m5stack_dial.md index e46c7521ec..d4879bf532 100644 --- a/_board/m5stack_dial.md +++ b/_board/m5stack_dial.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "m5stack_dial" -title: "Dial - Smart Rotary Knob with Touch Screen Download" -name: "Dial - Smart Rotary Knob with Touch Screen" -manufacturer: "M5Stack" +board_id: m5stack_dial +board_image: m5stack_dial.jpg board_url: - - "https://docs.m5stack.com/en/core/M5Dial" -board_image: "m5stack_dial.jpg" -date_added: 2024-2-19 -family: esp32s3 +- https://docs.m5stack.com/en/core/M5Dial bootloader_id: m5stack_dial +date_added: 2024-02-19 12:00:00 downloads_display: true +family: esp32s3 features: - - Speaker - - Battery Charging - - Display - - Wi-Fi - - USB-C - - Bluetooth/BTLE +- Speaker +- Battery Charging +- Display +- Wi-Fi +- USB-C +- Bluetooth/BTLE +layout: download +manufacturer: M5Stack +name: Dial - Smart Rotary Knob with Touch Screen +title: Dial - Smart Rotary Knob with Touch Screen Download --- As a versatile embedded development board, **M5Dial** integrates the necessary features and sensors for various smart home control applications. It features a 1.28-inch round TFT touchscreen, a rotary encoder, an RFID detection module, an RTC circuit, a buzzer, and under-screen buttons, enabling users to easily implement a wide range of creative projects. diff --git a/_board/m5stack_m5paper.md b/_board/m5stack_m5paper.md index e3774e08ce..88ea4ac617 100644 --- a/_board/m5stack_m5paper.md +++ b/_board/m5stack_m5paper.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "m5stack_m5paper" -title: "M5Paper ESP32 Dev Kit Download" -name: "M5Paper ESP32 Dev Kit" -manufacturer: "M5Stack" +board_id: m5stack_m5paper +board_image: m5stack_m5paper.jpg board_url: - - "https://docs.m5stack.com/en/core/m5paper" -board_image: "m5stack_m5paper.jpg" -date_added: 2023-10-27 -family: esp32s3 +- https://docs.m5stack.com/en/core/m5paper bootloader_id: m5stack_m5paper +date_added: 2023-10-27 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +layout: download +manufacturer: M5Stack +name: M5Paper ESP32 Dev Kit +title: M5Paper ESP32 Dev Kit Download --- **M5Paper** is M5Stacks latest core device with a touch enabled E-ink display. Powered by the ESP32-D0WDQ6-V3 this is our first device to integrate a super sized 540*960 @4.7" E-ink display,which supports 16 gray scale levels. The display is a GT911 capacitive touch screen,which supports two point touch and a variety of gesture controls . Compared to a regular LCD,E-ink displays are easier on the eyes, which makes them a great choice for reading or viewing for longer periods. Other benefits are the low power consumption and the ability to retain the image even if power to the display is terminated. Integrated in the CoreInk are an multi-function button for operation, SHT30 temperature and moisture sensor, physical buttons and an TF-card(microSD) port for data storage. @@ -39,4 +39,4 @@ Additionally the FM24C02 internal eeprom chip provided 2K-bit(256x8)-EEPROM can ## Purchase -* [M5Stack](https://shop.m5stack.com/products/m5paper-esp32-development-kit-960x540-4-7-eink-display-235-ppi) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/products/m5paper-esp32-development-kit-960x540-4-7-eink-display-235-ppi) diff --git a/_board/m5stack_stamp_c3.md b/_board/m5stack_stamp_c3.md index 45f8a65e73..921254856d 100644 --- a/_board/m5stack_stamp_c3.md +++ b/_board/m5stack_stamp_c3.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "m5stack_stamp_c3" -title: "M5Stamp C3 Download" -name: "M5Stamp C3" -manufacturer: "M5Stack" +board_id: m5stack_stamp_c3 +board_image: m5stack_stamp_c3.jpg board_url: - - "https://docs.m5stack.com/en/core/stamp_c3" -board_image: "m5stack_stamp_c3.jpg" -date_added: 2022-11-1 +- https://docs.m5stack.com/en/core/stamp_c3 +date_added: 2022-11-01 12:00:00 family: esp32c3 features: - - Wi-Fi - - USB-C +- Wi-Fi +- USB-C +layout: download +manufacturer: M5Stack +name: M5Stamp C3 +title: M5Stamp C3 Download --- M5Stack just added a new family to its popular series of modules with the Stamp-C3. the new Stamp-C3 featuring ESPRESSIF ESP32-C3 RISC-V MCU with Wi-Fi connectivity for IoT edge devices such as home appliances and Industrial Automation. By combining RSA-3072-based secure boot and the AES-128-XTS-based flash encryption, while also make it optimal for industrial IoT equipment collecting sensor data within a factory or a building. @@ -24,4 +24,4 @@ The Stamp-C3 is based on 32-bit RISC-V microcontroller and operates at a maximum ## Purchase -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/m5stamp-c3-5pcs) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/m5stamp-c3-5pcs) diff --git a/_board/m5stack_stick_c.md b/_board/m5stack_stick_c.md index 9ba5a3088b..e1e45aa37b 100644 --- a/_board/m5stack_stick_c.md +++ b/_board/m5stack_stick_c.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "m5stack_stick_c" -title: "M5StickC ESP32-PICO Mini IoT Download" -name: "M5StickC ESP32-PICO Mini IoT" -manufacturer: "M5Stack" +board_id: m5stack_stick_c +board_image: m5stack_stick_c.jpg board_url: - - "https://docs.m5stack.com/en/core/m5stickc" -board_image: "m5stack_stick_c.jpg" -date_added: 2023-1-31 +- https://docs.m5stack.com/en/core/m5stickc +date_added: 2023-01-31 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display - - Battery Charging +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +- Battery Charging +layout: download +manufacturer: M5Stack +name: M5StickC ESP32-PICO Mini IoT +title: M5StickC ESP32-PICO Mini IoT Download --- M5StickC is a mini M5Stack, powered by ESP32. It is a portable, easy-to-use, open source, IoT development board. What it can do? This tiny block is able to realize your idea, enlighten your creativity, and help with your IoT prototyping in a very short time. It will take away a lot of pains from the development process.M5stickC is one of the core devices in M5Stack product series. @@ -38,4 +38,4 @@ It is built in a continually growing hardware and software ecosystem. It has a l ## Purchase -* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/stick-c) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/collections/m5-controllers/products/stick-c) diff --git a/_board/m5stack_stick_c_plus.md b/_board/m5stack_stick_c_plus.md index 8d60ea0fd9..73b389a179 100644 --- a/_board/m5stack_stick_c_plus.md +++ b/_board/m5stack_stick_c_plus.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "m5stack_stick_c_plus" -title: "M5StickC PLUS ESP32-PICO Mini IoT Download" -name: "M5StickC PLUS ESP32-PICO Mini IoT" -manufacturer: "M5Stack" +board_id: m5stack_stick_c_plus +board_image: m5stack_stick_c_plus.jpg board_url: - - "https://docs.m5stack.com/en/core/m5stickc_plus" - - "https://www.adafruit.com/product/4289" - - "https://www.adafruit.com/product/4290" -board_image: "m5stack_stick_c_plus.jpg" -date_added: 2023-1-31 +- https://docs.m5stack.com/en/core/m5stickc_plus +- https://www.adafruit.com/product/4289 +- https://www.adafruit.com/product/4290 +date_added: 2023-01-31 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display - - Battery Charging +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +- Battery Charging +layout: download +manufacturer: M5Stack +name: M5StickC PLUS ESP32-PICO Mini IoT +title: M5StickC PLUS ESP32-PICO Mini IoT Download --- **M5StickC PLUS** is powered by ESP32-PICO-D4 with Wi-Fi and is an upgrade of the original [M5StickC ](https://docs.m5stack.com/en/core/m5stickc)with a bigger screen .It is a portable, easy-to-use, open source, IoT development board. This tiny device will enable you to realize your ideas, enrich your creativity, and speed up your IoT prototyping. Developing with M5StickC PLUS takes away a lot of the pains from the development process. M5StickC Plus is one of the core devices in M5Stacks product series. The compact body is integrated with rich hardware resources, such as infrared, RTC, Microphone, LED, IMU, Buttons, PMU,etc. Improvements from the regular StickC are a buzzer, bigger screen (1.14-inch, 135 * 240 resolution LCD Screen) and more stable hardware design. This revision increases the display area by 18.7%, and the battery capacity from 95mAh to 120mAh. It also supports the HAT and Unit family of products. @@ -42,4 +42,4 @@ features: ## Purchase * [Adafruit](https://www.adafruit.com/product/4289) -* [M5Stack](https://shop.m5stack.com/products/m5stickc-plus-esp32-pico-mini-iot-development-kit) \ No newline at end of file +* [M5Stack](https://shop.m5stack.com/products/m5stickc-plus-esp32-pico-mini-iot-development-kit) diff --git a/_board/m5stack_timer_camera_x.md b/_board/m5stack_timer_camera_x.md index 5b1c71f009..57d7fea8b7 100644 --- a/_board/m5stack_timer_camera_x.md +++ b/_board/m5stack_timer_camera_x.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "m5stack_timer_camera_x" -title: "M5Stack Timer Camera X Download" -name: "M5Stack Timer Camera X" -manufacturer: "M5Stack" +board_id: m5stack_timer_camera_x +board_image: m5stack_timer_camera_x.jpg board_url: - - "https://docs.m5stack.com/en/unit/timercam_x" - - "https://www.adafruit.com/product/4959" -board_image: "m5stack_timer_camera_x.jpg" -date_added: 2023-5-22 +- https://docs.m5stack.com/en/unit/timercam_x +- https://www.adafruit.com/product/4959 +date_added: 2023-05-22 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Camera - - Battery Charging +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Camera +- Battery Charging +layout: download +manufacturer: M5Stack +name: M5Stack Timer Camera X +title: M5Stack Timer Camera X Download --- M5Stack's Timer Camera X is an all-in-one camera module based on ESP32, integrated with ESP32 chip and has 8M PSRAM. Why so much PSRAM? Well, the camera can shoot up to 2048x1536 resolution photos(!). The module also comes with a built-in 140mAh battery and LED status indicator. There is a reset button under the LED. diff --git a/_board/magiclick_s3_n4r2.md b/_board/magiclick_s3_n4r2.md index d2e884c137..c4b6164b8e 100644 --- a/_board/magiclick_s3_n4r2.md +++ b/_board/magiclick_s3_n4r2.md @@ -1,23 +1,22 @@ --- -layout: download -board_id: "magiclick_s3_n4r2" -title: "MagiClick S3 Download" -name: "MagiClick S3" -manufacturer: "MakerM0" +board_id: magiclick_s3_n4r2 +board_image: magiclick_s3.jpg board_url: - - "https://github.com/MakerM0/MagiClick-esp32s3" -board_image: "magiclick_s3.jpg" -date_added: 2023-9-30 -family: esp32s3 +- https://github.com/MakerM0/MagiClick-esp32s3 bootloader_id: magiclick_s3_n4r2 +date_added: 2023-09-30 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display - - Battery Charging - +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +- Battery Charging +layout: download +manufacturer: MakerM0 +name: MagiClick S3 +title: MagiClick S3 Download --- A single-button keyboard, based on ESP32-S3, with a color screen. diff --git a/_board/maker_badge.md b/_board/maker_badge.md index 6799de378f..f995d3863d 100644 --- a/_board/maker_badge.md +++ b/_board/maker_badge.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "maker_badge" -title: "Maker badge download" -name: "Maker badge" -manufacturer: "Czech maker & Make More" +board_id: maker_badge +board_image: maker_badge.jpg board_url: - - "https://github.com/dronecz/maker_badge" -board_image: "maker_badge.jpg" -date_added: 2022-11-13 +- https://github.com/dronecz/maker_badge +date_added: 2022-11-13 12:00:00 family: esp32s2 features: - - Wi-Fi - - USB-C - - Display - - Battery Charging +- Wi-Fi +- USB-C +- Display +- Battery Charging +layout: download +manufacturer: Czech maker & Make More +name: Maker badge +title: Maker badge download --- The Maker badge board is official badge board for Maker Faire´s in Czech republic. Main purpose is to show visitors/exhibitors name and/or project, but secondary goal is to have at each Maker Faire some interactive game so people can have more fun at the time of the visit. diff --git a/_board/makerdiary_m60_keyboard.md b/_board/makerdiary_m60_keyboard.md index 7c6bba49f1..d75bc992dd 100644 --- a/_board/makerdiary_m60_keyboard.md +++ b/_board/makerdiary_m60_keyboard.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "makerdiary_m60_keyboard" -title: "M60 Mechanical Keyboard Download" -name: "M60 Mechanical Keyboard" -manufacturer: "MakerDiary" +board_id: makerdiary_m60_keyboard +board_image: makerdiary_m60_keyboard.jpg board_url: - - "https://makerdiary.com/pages/m60-mechanical-keyboard" -board_image: "makerdiary_m60_keyboard.jpg" -date_added: 2020-07-27 -family: nrf52840 +- https://makerdiary.com/pages/m60-mechanical-keyboard bootloader_id: m60_keyboard +date_added: 2020-07-27 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - USB-C +- Bluetooth/BTLE +- USB-C +layout: download +manufacturer: MakerDiary +name: M60 Mechanical Keyboard +title: M60 Mechanical Keyboard Download --- The M60 Mechanical Keyboard a 60% keyboard which has USB and BLE 5.0 connectivity and is hot-swappable. diff --git a/_board/makerdiary_nrf52840_connectkit.md b/_board/makerdiary_nrf52840_connectkit.md index 16b0de0a14..8b6a0a6186 100644 --- a/_board/makerdiary_nrf52840_connectkit.md +++ b/_board/makerdiary_nrf52840_connectkit.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "makerdiary_nrf52840_connectkit" -title: "nRF52840 Connect Kit Download" -name: "nRF52840 Connect Kit" -manufacturer: "MakerDiary" +board_id: makerdiary_nrf52840_connectkit +board_image: makerdiary_nrf52840_connectkit.jpg board_url: - - "https://makerdiary.com/products/nrf52840-connectkit?variant=43255093035163" -board_image: "makerdiary_nrf52840_connectkit.jpg" -date_added: 2023-7-28 +- https://makerdiary.com/products/nrf52840-connectkit?variant=43255093035163 +date_added: 2023-07-28 12:00:00 family: nrf52840 features: - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: MakerDiary +name: nRF52840 Connect Kit +title: nRF52840 Connect Kit Download --- nRF52840 Connect Kit is an open-source prototyping kit designed for connected projects. It is built using the nRF52840 SoC, which has protocol support for Bluetooth LE, Bluetooth mesh, Thread, Zigbee, 802.15.4, ANT and 2.4 GHz proprietary stacks. It provides Arm TrustZone® CryptoCell cryptographic unit as well as numerous peripherals such as USB 2.0, NFC-A, GPIO, UART, SPI, TWI, PDM, I2S, QSPI, PWM, ADC, QDEC to support a wide range of applications. diff --git a/_board/makerdiary_nrf52840_m2_devkit.md b/_board/makerdiary_nrf52840_m2_devkit.md index 3c4b6f20f9..9924fc8f1e 100644 --- a/_board/makerdiary_nrf52840_m2_devkit.md +++ b/_board/makerdiary_nrf52840_m2_devkit.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "makerdiary_nrf52840_m2_devkit" -title: "nRF52840 M.2 Developer Kit Download" -name: "nRF52840 M.2 Developer Kit" -manufacturer: "MakerDiary" +board_id: makerdiary_nrf52840_m2_devkit +board_image: makerdiary_nrf52840_m2_devkit.jpg board_url: - - "https://makerdiary.com/collections/frontpage/products/nrf52840-m2-developer-kit" -board_image: "makerdiary_nrf52840_m2_devkit.jpg" -date_added: 2020-7-27 -family: nrf52840 +- https://makerdiary.com/collections/frontpage/products/nrf52840-m2-developer-kit bootloader_id: nrf52840_m2 +date_added: 2020-07-27 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Display - - Battery Charging - - USB-C - - Arduino Shield Compatible +- Bluetooth/BTLE +- Display +- Battery Charging +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: MakerDiary +name: nRF52840 M.2 Developer Kit +title: nRF52840 M.2 Developer Kit Download --- nRF52840 M.2 Developer Kit is a versatile IoT prototyping platform, including the nRF52840 M.2 Module and M.2 Dock. You can use the developer kit to prototype your IoT products and then scale to production faster using the nRF52840 M.2 Module combined with your custom PCB hardware. diff --git a/_board/makerdiary_nrf52840_mdk.md b/_board/makerdiary_nrf52840_mdk.md index 22b3753f5e..8c58339bc3 100644 --- a/_board/makerdiary_nrf52840_mdk.md +++ b/_board/makerdiary_nrf52840_mdk.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "makerdiary_nrf52840_mdk" -title: "nRF52840 Micro Dev Kit Download" -name: "nRF52840 Micro Dev Kit" -manufacturer: "MakerDiary" +board_id: makerdiary_nrf52840_mdk +board_image: nRF52840_micro_dev_kit.jpg board_url: - - "https://store.makerdiary.com/collections/frontpage/products/nrf52840-mdk-iot-development-kit" -board_image: "nRF52840_micro_dev_kit.jpg" -date_added: 2019-3-9 +- https://store.makerdiary.com/collections/frontpage/products/nrf52840-mdk-iot-development-kit +date_added: 2019-03-09 12:00:00 family: nrf52840 features: - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: MakerDiary +name: nRF52840 Micro Dev Kit +title: nRF52840 Micro Dev Kit Download --- The nRF52840-MDK is a versatile, easy-to-use IoT hardware platform for Bluetooth 5, Bluetooth Mesh, Thread, IEEE 802.15.4, ANT and 2.4GHz proprietary wireless applications using the nRF52840 SoC. diff --git a/_board/makerdiary_nrf52840_mdk_usb_dongle.md b/_board/makerdiary_nrf52840_mdk_usb_dongle.md index a0c05e22c2..5dace565fb 100644 --- a/_board/makerdiary_nrf52840_mdk_usb_dongle.md +++ b/_board/makerdiary_nrf52840_mdk_usb_dongle.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "makerdiary_nrf52840_mdk_usb_dongle" -title: "nRF52840 Micro Dev Kit USB Dongle Download" -name: "nRF52840 Micro Dev Kit USB Dongle" -manufacturer: "MakerDiary" +board_id: makerdiary_nrf52840_mdk_usb_dongle +board_image: nRF52840_micro_dev_kit_usb_dongle.jpg board_url: - - "https://store.makerdiary.com/collections/frontpage/products/nrf52840-mdk-usb-dongle" -board_image: "nRF52840_micro_dev_kit_usb_dongle.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://store.makerdiary.com/collections/frontpage/products/nrf52840-mdk-usb-dongle bootloader_id: mdk_nrf52840_dongle +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Breadboard-Friendly +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: MakerDiary +name: nRF52840 Micro Dev Kit USB Dongle +title: nRF52840 Micro Dev Kit USB Dongle Download --- The nRF52840 Micro Dev Kit USB Dongle is a small and low-cost development platform enabled by the nRF52840 multi-protocol SoC in a convenient USB dongle form factor. diff --git a/_board/makerfabs_tft7.md b/_board/makerfabs_tft7.md index a61b723da4..ab451ae394 100644 --- a/_board/makerfabs_tft7.md +++ b/_board/makerfabs_tft7.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "makerfabs_tft7" -title: "MaTouch ESP32-S3 Parallel TFT with Touch 7“ Download" -name: "MaTouch ESP32-S3 Parallel TFT with Touch 7“" -manufacturer: "Makerfabs" +board_id: makerfabs_tft7 +board_image: makerfabs_tft7.jpg board_url: - - "https://www.makerfabs.com/esp32-s3-parallel-tft-with-touch-7-inch.html" -board_image: "makerfabs_tft7.jpg" -date_added: 2023-10-27 +- https://www.makerfabs.com/esp32-s3-parallel-tft-with-touch-7-inch.html +date_added: 2023-10-27 12:00:00 family: esp32s3 features: - - Wi-Fi - - Display - - USB-C +- Wi-Fi +- Display +- USB-C +layout: download +manufacturer: Makerfabs +name: MaTouch ESP32-S3 Parallel TFT with Touch 7“ +title: MaTouch ESP32-S3 Parallel TFT with Touch 7“ Download --- This ESP32 S3 7-inch IPS display could be an ideal displayer& controller for IOT applications. It has 2 versions: High-resolution version 800*480, and Ultra High-resolution version 1024*600; Display on both versions is IPS, and the display effect is beautiful, together with 5 points capacitive touch, great for applications such as home automation; There on-board SD card, to make it possible to record/play filed data. Also, there 2 Mabee/ Grove connectors, so the users can connect kinds of sensors to this board, to create personal prototype projects instantly. diff --git a/_board/maple_elite_pi.md b/_board/maple_elite_pi.md index f010922892..9ad63f902d 100644 --- a/_board/maple_elite_pi.md +++ b/_board/maple_elite_pi.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "maple_elite_pi" -title: "Maple Elite-Pi Download" -name: "Maple Elite-Pi" -manufacturer: "Maple" +board_id: maple_elite_pi +board_image: maple_elite_pi.jpg board_url: - - "https://keeb.io/products/elite-pi-usb-c-pro-micro-replacement-rp2040" -board_image: "maple_elite_pi.jpg" -date_added: 2023-11-15 +- https://keeb.io/products/elite-pi-usb-c-pro-micro-replacement-rp2040 +date_added: 2023-11-15 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Maple +name: Maple Elite-Pi +title: Maple Elite-Pi Download --- The Elite-Pi is an RP2040-based controller with a Pro Micro/Elite-C compatible pinout that's primarily intended for use with keyboards. diff --git a/_board/matrixportal_m4.md b/_board/matrixportal_m4.md index 7daa4db009..c702a17501 100644 --- a/_board/matrixportal_m4.md +++ b/_board/matrixportal_m4.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "matrixportal_m4" -title: " MatrixPortal M4 Download" -name: "MatrixPortal M4" -manufacturer: "Adafruit" +board_id: matrixportal_m4 +board_image: matrixportal_m4.jpg board_url: - - "https://www.adafruit.com/product/4745" - - "https://www.adafruit.com/product/4812" -board_image: "matrixportal_m4.jpg" -date_added: 2020-9-16 -family: atmel-samd +- https://www.adafruit.com/product/4745 +- https://www.adafruit.com/product/4812 bootloader_id: matrixportal_m4 -tags: - - Matrix Portal +date_added: 2020-09-16 12:00:00 +family: atmel-samd features: - - External Display - - Wi-Fi - - STEMMA QT/QWIIC - - USB-C +- External Display +- Wi-Fi +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: Adafruit +name: MatrixPortal M4 +tags: +- Matrix Portal +title: ' MatrixPortal M4 Download' --- Folks love our [wide selection of RGB matrices](https://www.adafruit.com/category/327) and accessories, for making custom colorful LED displays... and our RGB Matrix Shields and FeatherWings can be quickly soldered together to make the wiring much easier. But what if we made it even easier than that? **Like, no solder, no wiring, just instant plug-and-play?** Dream no more - with the **Adafruit Matrix Portal add-on for RGB Matrices**, there's never been an easier way to create powerful Internet-connected LED displays. diff --git a/_board/melopero_shake_rp2040.md b/_board/melopero_shake_rp2040.md index 05e40e8488..d5bd1ab863 100644 --- a/_board/melopero_shake_rp2040.md +++ b/_board/melopero_shake_rp2040.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "melopero_shake_rp2040" -title: "Shake RP2040 Download" -name: "Shake RP2040" -manufacturer: "Melopero" +board_id: melopero_shake_rp2040 +board_image: melopero_shake_rp2040.jpg board_url: - - "https://www.melopero.com/melopero-shake-rp2040" -board_image: "melopero_shake_rp2040.jpg" -date_added: 2021-9-22 +- https://www.melopero.com/melopero-shake-rp2040 +date_added: 2021-09-22 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Melopero +name: Shake RP2040 +title: Shake RP2040 Download --- The **Melopero Shake RP2040** is a powerful development board based on the **Raspberry Pi RP2040** microcontroller, programmable in C/C++, MicroPython, CircuitPython and Arduino. diff --git a/_board/meowbit_v121.md b/_board/meowbit_v121.md index afe0544d7b..b726a3314f 100644 --- a/_board/meowbit_v121.md +++ b/_board/meowbit_v121.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "meowbit_v121" -title: "KittenBot Meowbit Download" -name: "Meowbit" -manufacturer: "KittenBot" +blinka: false +board_id: meowbit_v121 +board_image: meowbit_v121.jpg board_url: - - "https://www.adafruit.com/product/4324" -board_image: "meowbit_v121.jpg" +- https://www.adafruit.com/product/4324 +bootloader_id: meowbit_v121 +date_added: 2020-01-26 12:00:00 downloads_display: true -blinka: false -date_added: 2020-1-26 family: stm -bootloader_id: meowbit_v121 features: - - Speaker - - Solder-Free Alligator Clip - - Battery Charging - - Display +- Speaker +- Solder-Free Alligator Clip +- Battery Charging +- Display +layout: download +manufacturer: KittenBot +name: Meowbit +title: KittenBot Meowbit Download --- From the creative and cat-lovin' engineers at KittenBot comes the **Meowbit** - a handheld retro gaming computer for coding your own games with MakeCode Arcade and MicroPython. This design is really fun, with a GameBoy-like shape that can plug into micro:bit expansion boards. The built in display is a 160x128 color 1.8" TFT screen with the familiar ST7735 chipset over SPI. You also get 8 buttons (4-way D-Pad, A and B, menu and reset) to make games or interface with, and there's also a built-in speaker and SD card. For inputs there's a bunch of sensors including a light sensor, temperature sensor and even a 6-DoF gyroscope/accelerometer. diff --git a/_board/meowmeow.md b/_board/meowmeow.md index 5a69dd6f52..c12fd3b4d6 100644 --- a/_board/meowmeow.md +++ b/_board/meowmeow.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "meowmeow" -title: "Meow Meow Download" -name: "Meow Meow" -manufacturer: "Electronic Cats" +board_id: meowmeow +board_image: meowmeow.jpg board_url: - - "https://electroniccats.com/store/meowmeow/" -board_image: "meowmeow.jpg" -date_added: 2019-4-1 -family: atmel-samd +- https://electroniccats.com/store/meowmeow/ bootloader_id: meowmeow +date_added: 2019-04-01 12:00:00 +family: atmel-samd features: - - Solder-Free Alligator Clip +- Solder-Free Alligator Clip +layout: download +manufacturer: Electronic Cats +name: Meow Meow +title: Meow Meow Download --- Meow Meow is a electronic board that allows you to connect different objects to a computer and interact with it, since you can convert many everyday objects into touch panels that send signals to the computer, and allows you to use it as a conventional keyboard, you can even connect them to the internet. @@ -24,4 +24,4 @@ Meow Meow was designed by Electronic Cats and wants to encourage experimentation ## Learn more -* [GitHub](https://github.com/ElectronicCats/MeowMeow) \ No newline at end of file +* [GitHub](https://github.com/ElectronicCats/MeowMeow) diff --git a/_board/metro_m0_express.md b/_board/metro_m0_express.md index 16ebaffff9..0d9a34f756 100644 --- a/_board/metro_m0_express.md +++ b/_board/metro_m0_express.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "metro_m0_express" -title: "Metro M0 Express Download" -name: "Metro M0 Express" -manufacturer: "Adafruit" +board_id: metro_m0_express +board_image: metro_m0_express.jpg board_url: - - "https://www.adafruit.com/product/3505" -board_image: "metro_m0_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3505 bootloader_id: metro_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro M0 Express +title: Metro M0 Express Download --- This **Metro M0 Express** board looks a whole lot like the [original Metro 328](https://www.adafruit.com/product/2488), but with a huge upgrade. Instead of the ATmega328, this Metro features a ATSAMD21G18 chip, an ARM Cortex M0+. It's the first Adafruit Metro that is designed for use with CircuitPython! diff --git a/_board/metro_m4_airlift_lite.md b/_board/metro_m4_airlift_lite.md index f784f77058..f39c3553bc 100644 --- a/_board/metro_m4_airlift_lite.md +++ b/_board/metro_m4_airlift_lite.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "metro_m4_airlift_lite" -title: " Metro M4 AirLift Lite Download" -name: "Metro M4 AirLift Lite" -manufacturer: "Adafruit" +board_id: metro_m4_airlift_lite +board_image: metro_m4_airlift_lite.jpg board_url: - - "https://www.adafruit.com/product/4000" -board_image: "metro_m4_airlift_lite.jpg" -date_added: 2019-4-13 -family: atmel-samd +- https://www.adafruit.com/product/4000 bootloader_id: metro_m4_airlift +date_added: 2019-04-13 12:00:00 +family: atmel-samd features: - - Wi-Fi - - Arduino Shield Compatible +- Wi-Fi +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro M4 AirLift Lite +title: ' Metro M4 AirLift Lite Download' --- Give your next project a lift with _AirLift_ - Adafruit's witty name for the ESP32 co-processor that graces this Metro M4. diff --git a/_board/metro_m4_express.md b/_board/metro_m4_express.md index f4522bc5f3..e46db6f246 100644 --- a/_board/metro_m4_express.md +++ b/_board/metro_m4_express.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "metro_m4_express" -title: "Metro M4 Express Download" -name: "Metro M4 Express" -manufacturer: "Adafruit" +board_id: metro_m4_express +board_image: metro_m4_express.jpg board_url: - - "https://www.adafruit.com/product/3382" -board_image: "metro_m4_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3382 bootloader_id: metro_m4 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro M4 Express +title: Metro M4 Express Download --- The most powerful Metro at this time, the **Adafruit Metro M4** featuring the **Microchip ATSAMD51**. This Metro is like a bullet train, with it's 120 MHz Cortex M4 with floating point support. Your code will zig and zag and zoom, and with a bunch of extra peripherals for support, this will for sure be your favorite new chipset. diff --git a/_board/metro_m7_1011.md b/_board/metro_m7_1011.md index 5b0d3635f1..2c75ed6bd6 100644 --- a/_board/metro_m7_1011.md +++ b/_board/metro_m7_1011.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "metro_m7_1011" -title: "Metro M7 with AirLift Download" -name: "Metro M7 with AirLift" -manufacturer: "Adafruit" +board_id: metro_m7_1011 +board_image: metro_m7_1011.jpg board_url: - - "https://www.adafruit.com/product/4950" -board_image: "metro_m7_1011.jpg" -date_added: 2020-10-16 +- https://www.adafruit.com/product/4950 +date_added: 2020-10-16 12:00:00 family: mimxrt10xx features: - - Wi-Fi - - STEMMA QT/QWIIC - - USB-C - - Arduino Shield Compatible +- Wi-Fi +- STEMMA QT/QWIIC +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro M7 with AirLift +title: Metro M7 with AirLift Download --- Get ready for our fastest Metro ever - the NXP iMX RT1011 microcontroller powers this board with a 500 MHz ARM Cortex M7 processor. There's 8 MB of execute-in-place QSPI for firmware + disk storage and 128KB of SRAM in-chip, plus a WiFi co-processor using an on-board ESP32 module. diff --git a/_board/metro_nrf52840_express.md b/_board/metro_nrf52840_express.md index 1ec8272071..dbb41a0663 100644 --- a/_board/metro_nrf52840_express.md +++ b/_board/metro_nrf52840_express.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "metro_nrf52840_express" -title: "Metro nRF52840 Express Download" -name: "Metro nRF52840 Express" -manufacturer: "Adafruit" +board_id: metro_nrf52840_express +board_image: metro_nrf52840_express.png board_url: - - "https://www.adafruit.com/" -board_image: "metro_nrf52840_express.png" -date_added: 2019-8-30 -family: nrf52840 +- https://www.adafruit.com/ bootloader_id: metro_nrf52840_express +date_added: 2019-08-30 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - USB-C - - Arduino Shield Compatible +- Bluetooth/BTLE +- USB-C +- Arduino Shield Compatible +layout: download +manufacturer: Adafruit +name: Metro nRF52840 Express +title: Metro nRF52840 Express Download --- The **Adafruit Metro nRF52840 Express** is a new Metro family member with Bluetooth Low Energy and _native USB support_ featuring the nRF52840!  diff --git a/_board/microbit_v2.md b/_board/microbit_v2.md index 0eda2aaa39..3c8fe1a5ea 100644 --- a/_board/microbit_v2.md +++ b/_board/microbit_v2.md @@ -1,24 +1,23 @@ --- -layout: download -board_id: "microbit_v2" -title: "micro:bit v2 Download" -name: "micro:bit v2" -manufacturer: "BBC" +board_id: microbit_v2 +board_image: microbit_v2.jpg board_url: - - "https://microbit.org/new-microbit/" - - "https://www.adafruit.com/product/4781" - - "https://www.adafruit.com/product/4834" - - "https://www.adafruit.com/product/4833" - -board_image: "microbit_v2.jpg" -date_added: 2021-08-11 +- https://microbit.org/new-microbit/ +- https://www.adafruit.com/product/4781 +- https://www.adafruit.com/product/4834 +- https://www.adafruit.com/product/4833 +date_added: 2021-08-11 12:00:00 family: nrf52840 features: - - Bluetooth/BTLE - - Battery Charging - - Solder-Free Alligator Clip - - Speaker - - Display +- Bluetooth/BTLE +- Battery Charging +- Solder-Free Alligator Clip +- Speaker +- Display +layout: download +manufacturer: BBC +name: micro:bit v2 +title: micro:bit v2 Download --- Meet the new **BBC micro:bit v2** - Upgraded with a powerful new processor that has tons more capability and also adds more sensing with a new speaker and microphone! diff --git a/_board/microdev_micro_c3.md b/_board/microdev_micro_c3.md index 620418b734..6da19af146 100644 --- a/_board/microdev_micro_c3.md +++ b/_board/microdev_micro_c3.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "microdev_micro_c3" -title: "MicroDev microC3 Download" -name: "MicroDev microC3" -manufacturer: "MicroDev" +board_id: microdev_micro_c3 +board_image: microdev_micro_c3.jpg board_url: - - "https://microdev.systems/" -board_image: "microdev_micro_c3.jpg" -date_added: 2021-10-06 +- https://microdev.systems/ +date_added: 2021-10-06 12:00:00 family: esp32c3 features: - - Bluetooth/BTLE - - Breadboard-Friendly - - STEMMA QT/QWIIC - - USB-C - - Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Wi-Fi +layout: download +manufacturer: MicroDev +name: MicroDev microC3 +title: MicroDev microC3 Download --- Introducing MicroDev microC3 dev-board based on Espressif's ESP32-C3 SoC, which is equipped with a RISC-V 32-bit single-core processor, operating frequency up to 160 MHz, supports secondary development without using other microcontrollers or processors. The ESP32-C3 is an highly integrated low power Wi-Fi and Bluetooth system-level chip (SoC), designed for various applications such as internet of things (IoT), mobile devices, wearable electronics, smart home, etc. diff --git a/_board/microdev_micro_s2.md b/_board/microdev_micro_s2.md index bb6a0f0752..d89c2a956f 100644 --- a/_board/microdev_micro_s2.md +++ b/_board/microdev_micro_s2.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "microdev_micro_s2" -title: "MicroDev microS2 Download" -name: "MicroDev microS2" -manufacturer: "MicroDev" +board_id: microdev_micro_s2 +board_image: microdev_micro_s2.jpg board_url: - - "https://microdev.systems/" -board_image: "microdev_micro_s2.jpg" -date_added: 2020-08-26 -family: esp32s2 +- https://microdev.systems/ bootloader_id: microdev_micro_s2 +date_added: 2020-08-26 12:00:00 +family: esp32s2 features: - - Wi-Fi - - STEMMA QT/QWIIC +- Wi-Fi +- STEMMA QT/QWIIC +layout: download +manufacturer: MicroDev +name: MicroDev microS2 +title: MicroDev microS2 Download --- Introducing the **microS2** - _An ESP32-S2 based dev-board in the size of a tiny module!_ diff --git a/_board/mini_sam_m4.md b/_board/mini_sam_m4.md index 8934c4907e..44b2d97215 100644 --- a/_board/mini_sam_m4.md +++ b/_board/mini_sam_m4.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "mini_sam_m4" -title: "Mini SAM M4 Download" -name: "Mini SAM M4" -manufacturer: "Benjamin Shockley" +board_id: mini_sam_m4 +board_image: mini_sam_m4.jpg board_url: - - "www.minisam.cc" -board_image: "mini_sam_m4.jpg" -date_added: 2019-3-12 -family: atmel-samd +- www.minisam.cc bootloader_id: mini_sam_m4 - +date_added: 2019-03-12 12:00:00 +family: atmel-samd +layout: download +manufacturer: Benjamin Shockley +name: Mini SAM M4 +title: Mini SAM M4 Download --- Mini SAM is a LEGO® minifigure-sized development board based on the Microchip SAMD51G 48-Pin 32-Bit ARM® Cortex®-M4F MCU running at 48Mhz. diff --git a/_board/mixgo_ce_serial.md b/_board/mixgo_ce_serial.md index cd74e02ab8..69a74fbe46 100644 --- a/_board/mixgo_ce_serial.md +++ b/_board/mixgo_ce_serial.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "mixgo_ce_serial" -title: "MixGo CE Serial Download" -name: "MixGo CE Serial" -manufacturer: "Mixly" +board_id: mixgo_ce_serial +board_image: mixgo_ce_serial.jpg board_url: - - "https://mixly.org/" -board_image: "mixgo_ce_serial.jpg" -date_added: 2022-5-22 +- https://mixly.org/ +date_added: 2022-05-22 12:00:00 family: esp32s2 features: - - Display - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Display +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Mixly +name: MixGo CE Serial +title: MixGo CE Serial Download --- Mixgo CE Serial(Serial port loader) is designed by mixly team and can be programmed with mixly software (mixly2.0 version of graphic and graphic mixed programming platform) to facilitate information popularization and education diff --git a/_board/mixgo_ce_udisk.md b/_board/mixgo_ce_udisk.md index f06f978b2e..4e0c796f77 100644 --- a/_board/mixgo_ce_udisk.md +++ b/_board/mixgo_ce_udisk.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "mixgo_ce_udisk" -title: "MixGo CE UDisk Download" -name: "MixGo CE UDisk" -manufacturer: "Mixly" +board_id: mixgo_ce_udisk +board_image: mixgo_ce_udisk.jpg board_url: - - "https://mixly.org/" -board_image: "mixgo_ce_udisk.jpg" -date_added: 2022-5-1 +- https://mixly.org/ +date_added: 2022-05-01 12:00:00 family: esp32s2 features: - - Display - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Display +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Mixly +name: MixGo CE UDisk +title: MixGo CE UDisk Download --- Mixgo CE UDisk(USB disk loader) is designed by mixly team and can be programmed with mixly software (mixly2.0 version of graphic and graphic mixed programming platform) to facilitate information popularization and education diff --git a/_board/monster_m4sk.md b/_board/monster_m4sk.md index 1887fa912c..65e84c3c3f 100644 --- a/_board/monster_m4sk.md +++ b/_board/monster_m4sk.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "monster_m4sk" -title: "MONSTER M4SK Download" -name: "MONSTER M4SK" -manufacturer: "Adafruit" +board_id: monster_m4sk +board_image: monster_m4sk.jpg board_url: - - "https://www.adafruit.com/product/4343" - - "https://www.adafruit.com/product/4281" -board_image: "monster_m4sk.jpg" -date_added: 2019-8-30 -family: atmel-samd +- https://www.adafruit.com/product/4343 +- https://www.adafruit.com/product/4281 bootloader_id: hallowing_mask +date_added: 2019-08-30 12:00:00 +family: atmel-samd features: - - Display - - Battery Charging +- Display +- Battery Charging +layout: download +manufacturer: Adafruit +name: MONSTER M4SK +title: MONSTER M4SK Download --- Peep dis! Have you always wanted to have another pair of eyes on the back of your diff --git a/_board/morpheans_morphesp-240.md b/_board/morpheans_morphesp-240.md index 5cb02f519b..b048eb3a06 100644 --- a/_board/morpheans_morphesp-240.md +++ b/_board/morpheans_morphesp-240.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "morpheans_morphesp-240" -title: "MorphESP 240 Download" -name: "MorphESP 240" -manufacturer: "Morpheans" +board_id: morpheans_morphesp-240 +board_image: morpheans_morphesp-240.jpg board_url: - - "https://github.com/ccadic/ESP32-S2-DevBoardTFT" -board_image: "morpheans_morphesp-240.jpg" -date_added: 2021-8-24 -family: esp32s2 +- https://github.com/ccadic/ESP32-S2-DevBoardTFT bootloader_id: morpheans_morphesp-240 +date_added: 2021-08-24 12:00:00 +family: esp32s2 features: - - Display - - Wi-Fi +- Display +- Wi-Fi +layout: download +manufacturer: Morpheans +name: MorphESP 240 +title: MorphESP 240 Download --- While there are many ESP32 dev boards on the market, we here at [Morpheans](http://www.morpheans.com/) found ourselves lamenting the scarcity of such boards for the new ESP32-*S2*. So we decided to build one. **Introducing MorphESP 240, an easy-to-use, Arduino- and CircuitPython-compatible, open hardware ESP32-S2 dev board with a built-in high-resolution, IPS-color display.** diff --git a/_board/muselab_nanoesp32_s2_wroom.md b/_board/muselab_nanoesp32_s2_wroom.md index 4f297cf672..a76e6d399e 100644 --- a/_board/muselab_nanoesp32_s2_wroom.md +++ b/_board/muselab_nanoesp32_s2_wroom.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "muselab_nanoesp32_s2_wroom" -title: "NanoESP32 S2 w/WROOM Download" -name: "NanoESP32 S2 w/WROOM" -manufacturer: "Muselab" +board_id: muselab_nanoesp32_s2_wroom +board_image: muselab_nanoesp32_s2.jpg board_url: - - "https://www.muselab-tech.com/nanoesp32-s2kai-fa-ban/" -board_image: "muselab_nanoesp32_s2.jpg" -date_added: 2020-09-16 -family: esp32s2 +- https://www.muselab-tech.com/nanoesp32-s2kai-fa-ban/ bootloader_id: muselab_nanoesp32-s2_wroom +date_added: 2020-09-16 12:00:00 +family: esp32s2 features: - - USB-C - - Wi-Fi - - Breadboard-Friendly +- USB-C +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Muselab +name: NanoESP32 S2 w/WROOM +title: NanoESP32 S2 w/WROOM Download --- This is the nanoESP32-S2 board with a WROOM ESP32-S2 module. diff --git a/_board/muselab_nanoesp32_s2_wrover.md b/_board/muselab_nanoesp32_s2_wrover.md index ec7f75b11b..0da6fb78b4 100644 --- a/_board/muselab_nanoesp32_s2_wrover.md +++ b/_board/muselab_nanoesp32_s2_wrover.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "muselab_nanoesp32_s2_wrover" -title: "NanoESP32 S2 w/WROVER Download" -name: "NanoESP32 S2 w/WROVER" -manufacturer: "Muselab" +board_id: muselab_nanoesp32_s2_wrover +board_image: muselab_nanoesp32_s2.jpg board_url: - - "https://www.muselab-tech.com/nanoesp32-s2kai-fa-ban/" -board_image: "muselab_nanoesp32_s2.jpg" -date_added: 2020-09-16 -family: esp32s2 +- https://www.muselab-tech.com/nanoesp32-s2kai-fa-ban/ bootloader_id: muselab_nanoesp32-s2_wrover +date_added: 2020-09-16 12:00:00 +family: esp32s2 features: - - USB-C - - Wi-Fi - - Breadboard-Friendly +- USB-C +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Muselab +name: NanoESP32 S2 w/WROVER +title: NanoESP32 S2 w/WROVER Download --- This is the nanoESP32-S2 board with a WROVER ESP32-S2 module. diff --git a/_board/ndgarage_ndbit6.md b/_board/ndgarage_ndbit6.md index c4b5273212..655c24f38d 100644 --- a/_board/ndgarage_ndbit6.md +++ b/_board/ndgarage_ndbit6.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "ndgarage_ndbit6" -title: "FeatherSnow Download" -name: "FeatherSnow" -manufacturer: "n°Garage" +blinka: false +board_id: ndgarage_ndbit6 +board_image: ndgarage_ndbit6.jpg board_url: - - "https://hackaday.io/project/168684-feathersnow" -board_image: "ndgarage_ndbit6.jpg" -date_added: 2020-2-5 -family: atmel-samd +- https://hackaday.io/project/168684-feathersnow bootloader_id: ndbit6 +date_added: 2020-02-05 12:00:00 downloads_display: true -blinka: false -features: +family: atmel-samd +features: null +layout: download +manufacturer: n°Garage +name: FeatherSnow tags: - - Ndbit6 +- Ndbit6 +title: FeatherSnow Download --- FeatherSnow is a decoration easy to program. It works out of the box. @@ -27,4 +27,4 @@ Kudos to Adafruit for USB PID and easy CircuitPython. ## Learn More -* [Hackaday.io](https://hackaday.io/project/168684-feathersnow) \ No newline at end of file +* [Hackaday.io](https://hackaday.io/project/168684-feathersnow) diff --git a/_board/ndgarage_ndbit6_v2.md b/_board/ndgarage_ndbit6_v2.md index 6e2a3e7f99..a7736f4b20 100644 --- a/_board/ndgarage_ndbit6_v2.md +++ b/_board/ndgarage_ndbit6_v2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "ndgarage_ndbit6_v2" -title: "FeatherSnow V2 Download" -name: "FeatherSnow V2" -manufacturer: "n°Garage" +board_id: ndgarage_ndbit6_v2 +board_image: ndgarage_ndbit6_v2.jpg board_url: - - "https://hackaday.io/project/173537-feathersnow-v2" -board_image: "ndgarage_ndbit6_v2.jpg" -date_added: 2020-09-1 -family: atmel-samd +- https://hackaday.io/project/173537-feathersnow-v2 bootloader_id: ndbit7 +date_added: 2020-09-01 12:00:00 +family: atmel-samd +layout: download +manufacturer: n°Garage +name: FeatherSnow V2 tags: - - Ndbit V2 +- Ndbit V2 +title: FeatherSnow V2 Download --- FeatherSnow v2 is a decoration easy to program. FeatherSnow is powered by a SAMD21 from Microchip. There are 19 white LEDs that can be controlled independently. With a native USB and a built-in regulator, FeatherSnow comes with a UF2 bootloader and a small CircuitPython runtime. FeatherSnow works with CircuitPython, and Arduino. One small addition is one accelerometer of BMA253. ## Learn More -* [Hackaday.io](https://hackaday.io/project/173537-feathersnow-v2) \ No newline at end of file +* [Hackaday.io](https://hackaday.io/project/173537-feathersnow-v2) diff --git a/_board/neopixel_trinkey_m0.md b/_board/neopixel_trinkey_m0.md index 0b0ac131df..cafcfc2e98 100644 --- a/_board/neopixel_trinkey_m0.md +++ b/_board/neopixel_trinkey_m0.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "neopixel_trinkey_m0" -title: "Neo Trinkey - SAMD21 Download" -name: "Neo Trinkey - SAMD21" -manufacturer: "Adafruit" +board_id: neopixel_trinkey_m0 +board_image: neopixel_trinkey_m0.jpg board_url: - - "https://www.adafruit.com/product/4870" -board_image: "neopixel_trinkey_m0.jpg" -date_added: 2021-4-6 -family: atmel-samd +- https://www.adafruit.com/product/4870 bootloader_id: neopixel_trinkey_m0 -features: - +date_added: 2021-04-06 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: Neo Trinkey - SAMD21 +title: Neo Trinkey - SAMD21 Download --- It's half USB Key, half Adafruit Trinket*...*it's **Neo Trinkey**, the circuit board with a Trinket M0 heart and four RGB NeoPixels for customizable glow. We were inspired by some USB key flashlight boards that would turn any battery pack into an LED torch. So we thought, hey what if we made something like that but with fully programmable color NeoPixels? And this is what we came up with! diff --git a/_board/nfc_copy_cat.md b/_board/nfc_copy_cat.md index 33b42411c0..988e69453a 100644 --- a/_board/nfc_copy_cat.md +++ b/_board/nfc_copy_cat.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "nfc_copy_cat" -title: "NFC Copy Cat Download" -name: "NFC Copy Cat" -manufacturer: "Electronic Cats" +board_id: nfc_copy_cat +board_image: nfc_copy_cat.jpg board_url: - - "https://github.com/ElectronicCats/NFC-Copy-Cat" -board_image: "nfc_copy_cat.jpg" -date_added: 2020-4-9 +- https://github.com/ElectronicCats/NFC-Copy-Cat +date_added: 2020-04-09 12:00:00 family: atmel-samd features: - - Robotics +- Robotics +layout: download +manufacturer: Electronic Cats +name: NFC Copy Cat +title: NFC Copy Cat Download --- NFC Copy Cat, manufactured by Electronic Cats, is a small device that combines two powerful cybersecurity tools, NFCopy and MagSpoof. NFCopy works by reading or emulating a NFC card; depending on the necessities of the researcher. On the other hand, MagSpoof can wirelessly emulate/spoof any magnetic stripe card. So using NFC Copy Cat, the user will have a device capable of storing magnetic stripe data or NFC payment data to be replayed later — known in the cybersecurity world as a replay attack. diff --git a/_board/nice_nano.md b/_board/nice_nano.md index 02d67a63a5..ac07695583 100644 --- a/_board/nice_nano.md +++ b/_board/nice_nano.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "nice_nano" -title: "nice!nano Download" -name: "Nice!Nano" -manufacturer: "Nice Keyboards" +board_id: nice_nano +board_image: nice_nano.jpg board_url: - - "https://docs.nicekeyboards.com/#/nice!nano/" -board_image: "nice_nano.jpg" -date_added: 2020-06-05 -family: nrf52840 +- https://docs.nicekeyboards.com/#/nice!nano/ bootloader_id: nice_nano +date_added: 2020-06-05 12:00:00 +family: nrf52840 features: - - USB-C - - Breadboard-Friendly - - Battery Charging - - Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +- Battery Charging +- Bluetooth/BTLE +layout: download +manufacturer: Nice Keyboards +name: Nice!Nano +title: nice!nano Download --- The nice!nano is a Pro Micro replacement development board offering BLE using the nRF52840 chip. It has the same pinout as the Pro Micro meaning it will work with almost any Pro Micro keyboard. The nice!nano also has a 3.7 V lithium battery charger on board as well as a software level switch to cut off power to LEDs, which can eat 1 mA each even when off. diff --git a/_board/nucleo_f446re.md b/_board/nucleo_f446re.md index 728012f6a7..e701e5a405 100644 --- a/_board/nucleo_f446re.md +++ b/_board/nucleo_f446re.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "nucleo_f446re" -title: "STM32F446RE Nucleo Download" -name: "STM32F446RE Nucleo" -manufacturer: "ST" +board_id: nucleo_f446re +board_image: nucleo_f446re.jpg board_url: - - "https://www.st.com/en/evaluation-tools/nucleo-f446re.html" -board_image: "nucleo_f446re.jpg" -date_added: 2022-10-06 +- https://www.st.com/en/evaluation-tools/nucleo-f446re.html +date_added: 2022-10-06 12:00:00 family: stm features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: ST +name: STM32F446RE Nucleo +title: STM32F446RE Nucleo Download --- The STM32 Nucleo-64 board provides an affordable and flexible way for users to try out new concepts and build prototypes by choosing from the various combinations of performance and power consumption features, provided by the STM32 microcontroller. For the compatible boards, the external SMPS significantly reduces power consumption in Run mode. diff --git a/_board/nucleo_f746zg.md b/_board/nucleo_f746zg.md index 3b89e8ecbd..a4c63ce244 100644 --- a/_board/nucleo_f746zg.md +++ b/_board/nucleo_f746zg.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "nucleo_f746zg" -title: "STM32F746 Nucleo Download" -name: "STM32F746 Nucleo" -manufacturer: "ST" +board_id: nucleo_f746zg +board_image: nucleo_f746zg.jpg board_url: - - "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f746zg.html" -board_image: "nucleo_f746zg.jpg" -date_added: 2020-04-23 +- https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f746zg.html +date_added: 2020-04-23 12:00:00 family: stm -features: +features: null +layout: download +manufacturer: ST +name: STM32F746 Nucleo +title: STM32F746 Nucleo Download --- The STM32F746 Nucleo dev board from ST. diff --git a/_board/nucleo_f767zi.md b/_board/nucleo_f767zi.md index 0f2bd3058a..a9f3199b88 100644 --- a/_board/nucleo_f767zi.md +++ b/_board/nucleo_f767zi.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "nucleo_f767zi" -title: "STM32F767 Nucleo Download" -name: "STM32F767 Nucleo" -manufacturer: "ST" +board_id: nucleo_f767zi +board_image: nucleo_f767zi.jpg board_url: - - "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f767zi.html" -board_image: "nucleo_f767zi.jpg" -date_added: 2020-04-06 +- https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f767zi.html +date_added: 2020-04-06 12:00:00 family: stm -features: +features: null +layout: download +manufacturer: ST +name: STM32F767 Nucleo +title: STM32F767 Nucleo Download --- The STM32F767 Nucleo dev board from ST. diff --git a/_board/nucleo_h743zi_2.md b/_board/nucleo_h743zi_2.md index 0e446f9eff..fd586a2a06 100644 --- a/_board/nucleo_h743zi_2.md +++ b/_board/nucleo_h743zi_2.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "nucleo_h743zi_2" -title: "STM32H743 Nucleo Download" -name: "STM32H743 Nucleo" -manufacturer: "ST" +board_id: nucleo_h743zi_2 +board_image: nucleo_h743zi_2.jpg board_url: - - "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-h743zi.html" -board_image: "nucleo_h743zi_2.jpg" -date_added: 2020-04-01 +- https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-h743zi.html +date_added: 2020-04-01 12:00:00 family: stm -features: +features: null +layout: download +manufacturer: ST +name: STM32H743 Nucleo +title: STM32H743 Nucleo Download --- The STM32H743 Nucleo dev board from ST. diff --git a/_board/nullbits_bit_c_pro.md b/_board/nullbits_bit_c_pro.md index a9d40bb08b..d4b4eab906 100644 --- a/_board/nullbits_bit_c_pro.md +++ b/_board/nullbits_bit_c_pro.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "nullbits_bit_c_pro" -title: "nullbits Bit-C PRO Download" -name: "Bit-C PRO" -manufacturer: "nullbits" +board_id: nullbits_bit_c_pro +board_image: nullbits_bit_c_pro.jpg board_url: - - "https://nullbits.co/bit-c-pro/" -board_image: "nullbits_bit_c_pro.jpg" -date_added: "2023-1-31" +- https://nullbits.co/bit-c-pro/ +date_added: 2023-01-31 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: nullbits +name: Bit-C PRO +title: nullbits Bit-C PRO Download --- The Bit-C PRO is a microcontroller (MCU) featuring the Raspberry Pi RP2040, designed for DIY keyboards. It features a through-hole USB-C connector that is more rugged than a USB micro B. It's only 1mm thick, so it sits slim and low. The Bit-C PRO ships with the RP2040 UF2 bootloader, which enumerates as an external USB drive: flashing firmware is as simple as drag and drop, no driver installation required. 100% of Bit-C PRO units are tested before shipping, ensuring you're spending your time building, not debugging. Best of all, it comes in white! ## Purchase * [Amazon (Black Version)](https://amzn.to/3kW7My2) -* [Amazon (White Version)](https://amzn.to/3HKOzs4) \ No newline at end of file +* [Amazon (White Version)](https://amzn.to/3HKOzs4) diff --git a/_board/odt_bread_2040.md b/_board/odt_bread_2040.md index 73447ee596..d0c7021a7d 100644 --- a/_board/odt_bread_2040.md +++ b/_board/odt_bread_2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "odt_bread_2040" -title: "Bread 2040 Download" -name: "Bread 2040 Dev Board" -manufacturer: "Oak Development Technologies" +board_id: odt_bread_2040 +board_image: odt_bread_2040.jpg board_url: - - "https://www.tindie.com/products/24791/" -board_image: "odt_bread_2040.jpg" -date_added: 2021-10-17 +- https://www.tindie.com/products/24791/ +date_added: 2021-10-17 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Oak Development Technologies +name: Bread 2040 Dev Board +title: Bread 2040 Download --- BREAD 2040 is a compact and breadboard friendly development board which features the Raspberry Pi RP2040, a NeoPixel compatible SK6812mini, 2M B of QSPI Flash, Reset button, and all GPIO and SWD pins broken out to the side in an easily breadboard design. No weird pins on the ends! This board is also CircuitPython compatible meaning you can develop your projects faster with Python. diff --git a/_board/odt_cast_away_rp2040.md b/_board/odt_cast_away_rp2040.md index 745b92c984..17cc0594d3 100644 --- a/_board/odt_cast_away_rp2040.md +++ b/_board/odt_cast_away_rp2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "odt_cast_away_rp2040" -title: "CAST-AWAY RP2040 Download" -name: "CAST-AWAY RP2040" -manufacturer: "Oak Development Technologies" +board_id: odt_cast_away_rp2040 +board_image: odt_cast_away_rp2040.jpg board_url: - - "https://www.tindie.com/products/oakdevtech/cast-away-rp2040-a-castellated-rp2040-dev-board/" -board_image: "odt_cast_away_rp2040.jpg" -date_added: 2022-1-4 +- https://www.tindie.com/products/oakdevtech/cast-away-rp2040-a-castellated-rp2040-dev-board/ +date_added: 2022-01-04 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Oak Development Technologies +name: CAST-AWAY RP2040 +title: CAST-AWAY RP2040 Download --- Cast your project fears away with the Cast-Away RP2040, a small and easy to use RP2040 dev board designed to take your project to the beach. This board uses the popular Raspberry Pi RP2040, a dual core ARM Cortex M0 microcontroller. diff --git a/_board/odt_pixelwing_esp32_s2.md b/_board/odt_pixelwing_esp32_s2.md index 2d28cfa5e1..16891b17e0 100644 --- a/_board/odt_pixelwing_esp32_s2.md +++ b/_board/odt_pixelwing_esp32_s2.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "odt_pixelwing_esp32_s2" -title: "PixelWing ESP32-S2 RGB Matrix Download" -name: "PixelWing ESP32-S2 RGB Matrix" -manufacturer: "Oak Development Technologies" +board_id: odt_pixelwing_esp32_s2 +board_image: odt_pixelwing_esp32_s2.jpg board_url: - - "https://www.tindie.com/products/oakdevtech/pixelwing-esp32-s2-rgb-matrix/" -board_image: "odt_pixelwing_esp32_s2.jpg" -date_added: 2021-8-24 +- https://www.tindie.com/products/oakdevtech/pixelwing-esp32-s2-rgb-matrix/ +date_added: 2021-08-24 12:00:00 family: esp32s2 features: - - Wi-Fi - - STEMMA QT/QWIIC - - USB-C - - Display +- Wi-Fi +- STEMMA QT/QWIIC +- USB-C +- Display +layout: download +manufacturer: Oak Development Technologies +name: PixelWing ESP32-S2 RGB Matrix +title: PixelWing ESP32-S2 RGB Matrix Download --- The PixelWing Matrix is a powerful ESP32-S2 RGB Matrix Display board that allows you to make a simple connected display, data logger, or environmental indicator. The PixelWing features USB-C power, a 5x10 RGB Matrix Display using SK6812mini Addressable LEDs that are compatible with Adafruit NEOPIXEL Libraries! diff --git a/_board/ohs2020_badge.md b/_board/ohs2020_badge.md index 85dedf6341..a8544d373e 100644 --- a/_board/ohs2020_badge.md +++ b/_board/ohs2020_badge.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "ohs2020_badge" -title: "OHS2020 Badge Download" -name: "Open Hardware Summit 2020 Badge" -manufacturer: "OSHWA" +blinka: false +board_id: ohs2020_badge +board_image: ohs2020_badge.jpg board_url: - - "https://hackaday.io/project/168483-open-hardware-summit-2020-badge" -board_image: "ohs2020_badge.jpg" +- https://hackaday.io/project/168483-open-hardware-summit-2020-badge +bootloader_id: ohs2020_badge +date_added: 2020-01-16 12:00:00 downloads_display: true -blinka: false -date_added: 2020-1-16 family: nrf52840 -bootloader_id: ohs2020_badge features: - - Bluetooth/BTLE - - Display - - Battery Charging +- Bluetooth/BTLE +- Display +- Battery Charging +layout: download +manufacturer: OSHWA +name: Open Hardware Summit 2020 Badge +title: OHS2020 Badge Download --- This is the badge for the Open Hardware Summit in NYC on on March 13th. diff --git a/_board/openbook_m4.md b/_board/openbook_m4.md index fd135f2e06..2d566f6093 100644 --- a/_board/openbook_m4.md +++ b/_board/openbook_m4.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "openbook_m4" -title: "Open Book Download" -name: "The Open Book " -manufacturer: "Oddly Specific Objects" +board_id: openbook_m4 +board_image: openbook_m4.jpg board_url: - - "https://github.com/joeycastillo/The-Open-Book" -board_image: "openbook_m4.jpg" -date_added: 2020-1-16 -family: atmel-samd +- https://github.com/joeycastillo/The-Open-Book bootloader_id: openbook_m4 +date_added: 2020-01-16 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Display +- Feather-Compatible +- Battery Charging +- Display +layout: download +manufacturer: Oddly Specific Objects +name: 'The Open Book ' +title: Open Book Download --- The Open Book is an open-hardware device for reading books in all the languages of the world. It includes a large screen and buttons for navigation, as well as audio options for accessibility and ports to extend its functionality. Its detailed silkscreen, with the all the manic energy and quixotic ambition of a Dr. Bronner's bottle, aims to demystify the Open Book's own design, breaking down for the curious reader both how the book works, and how they can build one for themselves. diff --git a/_board/openmv_h7.md b/_board/openmv_h7.md index 12cb5638ef..caa9b7336f 100644 --- a/_board/openmv_h7.md +++ b/_board/openmv_h7.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "openmv_h7" -title: "OpenMV H7 Download" -name: "OpenMV H7" -manufacturer: "OpenMV" +board_id: openmv_h7 +board_image: openmv_h7.jpg board_url: - - "https://openmv.io/collections/products/products/openmv-cam-h7" - - "https://www.adafruit.com/product/4478" -board_image: "openmv_h7.jpg" -date_added: 2020-04-30 +- https://openmv.io/collections/products/products/openmv-cam-h7 +- https://www.adafruit.com/product/4478 +date_added: 2020-04-30 12:00:00 family: stm -features: +features: null +layout: download +manufacturer: OpenMV +name: OpenMV H7 +title: OpenMV H7 Download --- STM32H7 powered OpenMV camera board. diff --git a/_board/oxocard_artwork.md b/_board/oxocard_artwork.md index 259c54d300..50b870d660 100644 --- a/_board/oxocard_artwork.md +++ b/_board/oxocard_artwork.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "oxocard_artwork" -title: "Oxocard Artwork Card Download" -name: "Oxocard Artwork Card" -manufacturer: "Oxocard" +board_id: oxocard_artwork +board_image: oxocard_artwork.jpg board_url: - - "https://oxocard.ch/en/artwork/" -board_image: "oxocard_artwork.jpg" -date_added: 2023-11-15 +- https://oxocard.ch/en/artwork/ +date_added: 2023-11-15 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display - - Speaker +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +- Speaker +layout: download +manufacturer: Oxocard +name: Oxocard Artwork Card +title: Oxocard Artwork Card Download --- The Oxocard Artwork is an interactive, programmable minicomputer with powerful hardware in credit card format. @@ -29,4 +29,4 @@ Thanks to ready-made programs you can get started immediately even without progr ## Purchase -* [OXON](https://shop.oxon.ch/?shop=oxocard) \ No newline at end of file +* [OXON](https://shop.oxon.ch/?shop=oxocard) diff --git a/_board/oxocard_connect.md b/_board/oxocard_connect.md index a8a0a42e68..6cd3013818 100644 --- a/_board/oxocard_connect.md +++ b/_board/oxocard_connect.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "oxocard_connect" -title: "Oxocard Connect Card Download" -name: "Oxocard Connect Card" -manufacturer: "Oxocard" +board_id: oxocard_connect +board_image: oxocard_connect.jpg board_url: - - "https://oxocard.ch/en/connect/" -board_image: "oxocard_connect.jpg" -date_added: 2023-11-15 +- https://oxocard.ch/en/connect/ +date_added: 2023-11-15 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +layout: download +manufacturer: Oxocard +name: Oxocard Connect Card +title: Oxocard Connect Card Download --- The Oxocard Connect is a small experimental computer in which you can plug in ready-made or self-soldered circuit boards. As you know it from game consoles, it then goes off immediately. @@ -28,4 +28,4 @@ The circuit design of the cartridges is OPEN SOURCE and OPEN HARDWARE. Create yo ## Purchase -* [OXON](https://shop.oxon.ch/?shop=oxocard) \ No newline at end of file +* [OXON](https://shop.oxon.ch/?shop=oxocard) diff --git a/_board/oxocard_galaxy.md b/_board/oxocard_galaxy.md index 1c310a960d..7a95df04bd 100644 --- a/_board/oxocard_galaxy.md +++ b/_board/oxocard_galaxy.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "oxocard_galaxy" -title: "Oxocard Galaxy Card Download" -name: "Oxocard Galaxy Card" -manufacturer: "Oxocard" +board_id: oxocard_galaxy +board_image: oxocard_galaxy.jpg board_url: - - "https://oxocard.ch/en/galaxy/" -board_image: "oxocard_galaxy.jpg" -date_added: 2023-11-15 +- https://oxocard.ch/en/galaxy/ +date_added: 2023-11-15 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display - - Speaker +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +- Speaker +layout: download +manufacturer: Oxocard +name: Oxocard Galaxy Card +title: Oxocard Galaxy Card Download --- The new Oxocard-Galaxy consists of a high quality computer board, on which you see, what «inside» is. The powerful Dual-Core-Chip ESP32 with 2MB RAM and 8MB Flash provide you enough Power for your experiments. @@ -29,4 +29,4 @@ With the new pedagogical concept «Use-Modify-Create» we start with ready-made ## Purchase -* [OXON](https://shop.oxon.ch/?shop=oxocard) \ No newline at end of file +* [OXON](https://shop.oxon.ch/?shop=oxocard) diff --git a/_board/oxocard_science.md b/_board/oxocard_science.md index e69c5716d7..81cbb8f126 100644 --- a/_board/oxocard_science.md +++ b/_board/oxocard_science.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "oxocard_science" -title: "Oxocard Science Card Download" -name: "Oxocard Science Card" -manufacturer: "Oxocard" +board_id: oxocard_science +board_image: oxocard_science.jpg board_url: - - "https://oxocard.ch/en/science/" -board_image: "oxocard_science.jpg" -date_added: 2023-11-15 +- https://oxocard.ch/en/science/ +date_added: 2023-11-15 12:00:00 family: esp32 features: - - Wi-Fi - - USB-C - - Bluetooth/BTLE - - Display - - Speaker +- Wi-Fi +- USB-C +- Bluetooth/BTLE +- Display +- Speaker +layout: download +manufacturer: Oxocard +name: Oxocard Science Card +title: Oxocard Science Card Download --- This programmable multi-sensor board measures light/IR, temperature, noise, humidity, pressure and volatile compounds (VoC, eCO2 and ethanol). It comes with ready-to-use programs with documented source code, so you can start your own experiments right away. @@ -35,4 +35,4 @@ With the pedagogical concept «Use-Modify-Create» starten wir mit fixfertigen P ## Purchase -* [OXON](https://shop.oxon.ch/?shop=oxocard) \ No newline at end of file +* [OXON](https://shop.oxon.ch/?shop=oxocard) diff --git a/_board/p1am_200.md b/_board/p1am_200.md index d75dd69f10..617eca5bd3 100644 --- a/_board/p1am_200.md +++ b/_board/p1am_200.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "p1am_200" -title: "ProductivityOpen P1AM-200 Download" -name: "ProductivityOpen P1AM-200" -manufacturer: "AutomationDirect" +board_id: p1am_200 +board_image: p1am_200.jpg board_url: - - "https://facts-engineering.github.io/modules/P1AM-200/P1AM-200.html" -board_image: "p1am_200.jpg" -date_added: 2023-11-29 -family: atmel-samd +- https://facts-engineering.github.io/modules/P1AM-200/P1AM-200.html bootloader_id: p1am_200 +date_added: 2023-11-29 12:00:00 +family: atmel-samd features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: AutomationDirect +name: ProductivityOpen P1AM-200 +title: ProductivityOpen P1AM-200 Download --- The ProductivityOpen P1AM-200 is an automation platform compatible with Productivity1000 Series I/O modules, P1AM Series shields, and Arduino MKR format shields. It can be programmed using the Arduino IDE or with the CircuitPython language. The board uses the SAMD51P20 Microcontroller. diff --git a/_board/pajenicko_picopad.md b/_board/pajenicko_picopad.md index 750395e3eb..52de3c8014 100644 --- a/_board/pajenicko_picopad.md +++ b/_board/pajenicko_picopad.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "pajenicko_picopad" -title: "Pajenicko Picopad Download" -name: "Pajenicko Picopad" -manufacturer: "Pajenicko s.r.o." +board_id: pajenicko_picopad +board_image: pajenicko_picopad.jpg board_url: - - "https://github.com/Pajenicko/Picopad" -board_image: "pajenicko_picopad.jpg" -date_added: 2023-7-25 +- https://github.com/Pajenicko/Picopad +date_added: 2023-07-25 12:00:00 family: raspberrypi features: - - Display - - Speaker - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi - +- Display +- Speaker +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +layout: download +manufacturer: Pajenicko s.r.o. +name: Pajenicko Picopad +title: Pajenicko Picopad Download --- Picopad is an **open-source DIY gaming console kit** for young tech enthusiasts. It utilizes a Raspberry Pi Pico module and features a 2" 240x320 IPS display, speaker, LED, buttons, and a microSD slot. Picopad supports programming in C, MicroPython and CircuitPython, enabling users to learn coding skills. The kit contains all necessary components to assemble the console. Picopad promotes STEM education through electronics and programming. It has an external connector for expansions. The Picopad Wifi variant adds wireless connectivity with Wifi 802.11n 2.4GHz (WPA3 security) and Bluetooth 5.2. Games and software are open source to enable customization. Picopad enables hands-on learning of electronics and programming in an engaging gaming platform. There are 16 classic games including Pacman, Tetris, Snake, and more available in the [Picopad GitHub repository](https://github.com/Pajenicko/Picopad) that are programmed using the Picopad C SDK and their source codes are included. @@ -53,5 +52,3 @@ Picopad is an **open-source DIY gaming console kit** for young tech enthusiasts. ## Purchase * [Pajenicko](https://pajenicko.cz/picopad-wifi-open-source-herni-konzole) - - diff --git a/_board/particle_argon.md b/_board/particle_argon.md index 53bca95e25..f241bce9fc 100644 --- a/_board/particle_argon.md +++ b/_board/particle_argon.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "particle_argon" -title: "Argon Download" -name: "Argon" -manufacturer: "Particle" +board_id: particle_argon +board_image: particle_argon.jpg board_url: - - "https://docs.particle.io/datasheets/wi-fi/argon-datasheet/" - - "https://www.adafruit.com/product/3997" - - "https://www.adafruit.com/product/3993" -board_image: "particle_argon.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://docs.particle.io/datasheets/wi-fi/argon-datasheet/ +- https://www.adafruit.com/product/3997 +- https://www.adafruit.com/product/3993 bootloader_id: particle_argon +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Feather-Compatible - - Battery Charging - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Particle +name: Argon +title: Argon Download --- The Argon is a powerful Wi-Fi enabled development kit that can act as a standalone Wi-Fi endpoint. It is based on the Nordic nRF52840 and has built-in battery charging circuitry so it’s easy to connect a Li-Po and deploy your local network in minutes. diff --git a/_board/particle_boron.md b/_board/particle_boron.md index e9662d3a5b..b69a710468 100644 --- a/_board/particle_boron.md +++ b/_board/particle_boron.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "particle_boron" -title: "Boron Download" -name: "Boron" -manufacturer: "Particle" +board_id: particle_boron +board_image: particle_boron.jpg board_url: - - "https://docs.particle.io/datasheets/wi-fi/boron-datasheet/" - - "https://www.adafruit.com/product/3998" - - "https://www.adafruit.com/product/3994" -board_image: "particle_boron.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://docs.particle.io/datasheets/wi-fi/boron-datasheet/ +- https://www.adafruit.com/product/3998 +- https://www.adafruit.com/product/3994 bootloader_id: particle_boron +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Particle +name: Boron +title: Boron Download --- This board hasn't been fully documented yet. Please make a pull request adding more info to this file. diff --git a/_board/particle_xenon.md b/_board/particle_xenon.md index 7cdfef6ad5..dcf98da8b2 100644 --- a/_board/particle_xenon.md +++ b/_board/particle_xenon.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "particle_xenon" -title: "Xenon Download" -name: "Xenon" -manufacturer: "Particle" +board_id: particle_xenon +board_image: particle_xenon.jpg board_url: - - "https://docs.particle.io/datasheets/wi-fi/xenon-datasheet/" - - "https://www.adafruit.com/product/3999" - - "https://www.adafruit.com/product/3995" -board_image: "particle_xenon.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://docs.particle.io/datasheets/wi-fi/xenon-datasheet/ +- https://www.adafruit.com/product/3999 +- https://www.adafruit.com/product/3995 bootloader_id: particle_xenon +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Particle +name: Xenon +title: Xenon Download --- This board hasn't been fully documented yet. Please make a pull request adding more info to this file. diff --git a/_board/pca10056.md b/_board/pca10056.md index cbdf3dfd67..5e0a07b6c9 100644 --- a/_board/pca10056.md +++ b/_board/pca10056.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pca10056" -title: "nRF52840 DK (PCA10056) Download" -name: "nRF52840 DK (PCA10056)" -manufacturer: "Nordic Semiconductor" +board_id: pca10056 +board_image: nRF52840_dk.jpg board_url: - - "https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52840-DK" -board_image: "nRF52840_dk.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52840-DK bootloader_id: pca10056 +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Arduino Shield Compatible +- Bluetooth/BTLE +- Arduino Shield Compatible +layout: download +manufacturer: Nordic Semiconductor +name: nRF52840 DK (PCA10056) +title: nRF52840 DK (PCA10056) Download --- The Nordic nRF52840 kit is hardware compatible with the Arduino Uno Revision 3 standard for shields, making it possible to use 3rd-party shields that are compatible to this standard. An NFC antenna can be connected the kit to enable NFC tag functionality. The kit gives access to all I/O and interfaces via connectors and has 4 LEDs and 4 buttons which are user-programmable. It supports the standard Nordic Software Development Tool-chain using Segger Embedded Studio, Keil, IAR and GCC. Program/Debug options on the kit is Segger J-Link OB. diff --git a/_board/pca10059.md b/_board/pca10059.md index 1196fe4010..31123062bf 100644 --- a/_board/pca10059.md +++ b/_board/pca10059.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pca10059" -title: "nRF52840 Dongle (PCA10059) Download" -name: "nRF52840 Dongle (PCA10059)" -manufacturer: "Nordic Semiconductor" +board_id: pca10059 +board_image: nRF52840_dongle.jpg board_url: - - "https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52840-Dongle" -board_image: "nRF52840_dongle.jpg" -date_added: 2019-3-9 -family: nrf52840 +- https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52840-Dongle bootloader_id: pca10059 +date_added: 2019-03-09 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Breadboard-Friendly +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: Nordic Semiconductor +name: nRF52840 Dongle (PCA10059) +title: nRF52840 Dongle (PCA10059) Download --- The nRF52840 dongle from Nordic Semiconductor is a small, low-cost USB dongle for Bluetooth Low Energy, Bluetooth mesh, Thread, ZigBee, 802.15.4, ANT, and 2.4 GHz proprietary applications using the nRF52840 SoC. The dongle has been designed to be used as a wireless hardware device together with nRF Connect for Desktop. diff --git a/_board/pca10100.md b/_board/pca10100.md index 8efcf095a9..cd1b0fc3ca 100644 --- a/_board/pca10100.md +++ b/_board/pca10100.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pca10100" -title: "nRF52833 DK (PCA10100) Download" -name: "nRF52833 DK (PCA10100)" -manufacturer: "Nordic Semiconductor" +board_id: pca10100 +board_image: pca10100.jpg board_url: - - "https://www.nordicsemi.com/Software-and-tools/Development-Kits/nRF52833-DK" -board_image: "pca10100.jpg" -date_added: 2019-05-04 -family: nrf52840 +- https://www.nordicsemi.com/Software-and-tools/Development-Kits/nRF52833-DK bootloader_id: pca10100 +date_added: 2019-05-04 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - Arduino Shield Compatible +- Bluetooth/BTLE +- Arduino Shield Compatible +layout: download +manufacturer: Nordic Semiconductor +name: nRF52833 DK (PCA10100) +title: nRF52833 DK (PCA10100) Download --- Nordic Semiconductor nRF52833 DK is a single-board development kit for the development of Bluetooth Low Energy, Bluetooth mesh, NFC, Thread, and Zigbee applications on nRF52833 SoC. diff --git a/_board/pctel_wsc_1450.md b/_board/pctel_wsc_1450.md index 7f83d31ceb..a5508ed3cc 100644 --- a/_board/pctel_wsc_1450.md +++ b/_board/pctel_wsc_1450.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "pctel_wsc_1450" -title: "Wireless Sensor Core WSC-1450 Download" -name: "Wireless Sensor Core WSC-1450" -manufacturer: "PCTEL" +board_id: pctel_wsc_1450 +board_image: pctel_wsc_1450.jpg board_url: - - "https://www.pctel.com/products/industrial-iot/wireless-sensor-solutions/wireless-sensor-core/" -board_image: "pctel_wsc_1450.jpg" -date_added: 2023-12-14 +- https://www.pctel.com/products/industrial-iot/wireless-sensor-solutions/wireless-sensor-core/ +date_added: 2023-12-14 12:00:00 family: nrf52840 features: - - Bluetooth/BTLE +- Bluetooth/BTLE +layout: download +manufacturer: PCTEL +name: Wireless Sensor Core WSC-1450 +title: Wireless Sensor Core WSC-1450 Download --- The PCTEL Wireless Sensor Core (WSC) is a versatile Industrial IoT product line that offers multiple radio connectivity options including cellular, LoRa, Bluetooth® 5, NFC as well as 802.15.4 support. @@ -20,4 +20,4 @@ In addition to several radios, the PCTEL WSC includes several sensors to monitor ## Learn More -* [PCTEL](https://www.pctel.com/products/industrial-iot/wireless-sensor-solutions/wireless-sensor-core/) \ No newline at end of file +* [PCTEL](https://www.pctel.com/products/industrial-iot/wireless-sensor-solutions/wireless-sensor-core/) diff --git a/_board/pewpew10.md b/_board/pewpew10.md index c2e91adb8d..1ca03a268b 100644 --- a/_board/pewpew10.md +++ b/_board/pewpew10.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pewpew10" -title: "PewPew Download" -name: "PewPew" -manufacturer: "Radomir Dopieralski" +board_id: pewpew10 +board_image: pewpew_10.2.jpg board_url: - - "https://pewpew.rtfd.io" -board_image: "pewpew_10.2.jpg" -date_added: 2019-3-12 -family: atmel-samd +- https://pewpew.rtfd.io bootloader_id: trinket_m0 +date_added: 2019-03-12 12:00:00 +family: atmel-samd features: - - Display - - Breadboard-Friendly +- Display +- Breadboard-Friendly +layout: download +manufacturer: Radomir Dopieralski +name: PewPew +title: PewPew Download --- This board was designed to be an affordable device for teaching game diff --git a/_board/pewpew_lcd.md b/_board/pewpew_lcd.md index 40be11207f..7f33b0d0a8 100644 --- a/_board/pewpew_lcd.md +++ b/_board/pewpew_lcd.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pewpew_lcd" -title: "PewPew LCD Download" -name: "PewPew LCD" -manufacturer: "Radomir Dopieralski" +board_id: pewpew_lcd +board_image: pewpew_lcd.jpg board_url: - - "https://pewpew.rtfd.io" -board_image: "pewpew_lcd.jpg" -family: atmel-samd +- https://pewpew.rtfd.io bootloader_id: fluff_m0 -date_added: 2022-05-10 +date_added: 2022-05-10 12:00:00 +family: atmel-samd features: - - Display - - Breadboard-Friendly +- Display +- Breadboard-Friendly +layout: download +manufacturer: Radomir Dopieralski +name: PewPew LCD +title: PewPew LCD Download --- PewPew are a family of handheld game devices designed for running Python diff --git a/_board/pewpew_m4.md b/_board/pewpew_m4.md index 638ef8730e..1ec5170f88 100644 --- a/_board/pewpew_m4.md +++ b/_board/pewpew_m4.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "pewpew_m4" -title: "PewPew M4 Download" -name: "PewPew M4" -manufacturer: "Radomir Dopieralski" +board_id: pewpew_m4 +board_image: pewpew_m4.jpg board_url: - - "https://hackaday.io/project/165032-pewpew-m4" -board_image: "pewpew_m4.jpg" -date_added: 2019-9-16 -family: atmel-samd +- https://hackaday.io/project/165032-pewpew-m4 bootloader_id: pewpew_m4 +date_added: 2019-09-16 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Breadboard-Friendly +- Display +- Speaker +- Breadboard-Friendly +layout: download +manufacturer: Radomir Dopieralski +name: PewPew M4 +title: PewPew M4 Download --- This board was designed to get you to make games with CircuitPython with diff --git a/_board/picomo_v2.md b/_board/picomo_v2.md index 92b0e461ba..25b9a41678 100644 --- a/_board/picomo_v2.md +++ b/_board/picomo_v2.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "heiafr_picomo_v2" -title: "PicoMo V2 Download" -name: "PicoMo" -manufacturer: "HEIA-FR" -board_url: - - "https://go.heia-fr.ch/picomo" -board_image: "picomo_v2.jpg" -date_added: 2024-1-25 +board_id: heiafr_picomo_v2 +board_image: picomo_v2.jpg +board_url: +- https://go.heia-fr.ch/picomo +date_added: 2024-01-25 12:00:00 family: raspberrypi features: - - Speaker - - Display - - USB-C +- Speaker +- Display +- USB-C +layout: download +manufacturer: HEIA-FR +name: PicoMo +title: PicoMo V2 Download --- The [PicoMo](https://go.heia-fr.ch/picomo), based on a Raspberry Pi Pico microcontroller chip, has been developed by [HEIA-FR](https://www.heia-fr.ch/en/)'s [Electrical Engineering](https://www.heia-fr.ch/en/education/bachelor/electrical-engineering/) and [Computer Science and Communication Systems](https://www.heia-fr.ch/en/education/bachelor/computer-science-and-communication-systems/) departments. With its display, temperature and humidity sensor, multicolor LED and buzzer, it can be used in a variety of ways. diff --git a/_board/picoplanet.md b/_board/picoplanet.md index 92cdb4a94b..e3057fa841 100644 --- a/_board/picoplanet.md +++ b/_board/picoplanet.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "picoplanet" -title: "PicoPlanet Download" -name: "PicoPlanet" -manufacturer: "bleeptrack" +blinka: false +board_id: picoplanet +board_image: picoplanet.jpg board_url: - - "https://picoplanet.bleeptrack.de" -board_image: "picoplanet.jpg" -date_added: 2020-3-31 -family: atmel-samd +- https://picoplanet.bleeptrack.de +date_added: 2020-03-31 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" - +family: atmel-samd features: - - USB-C +- USB-C +layout: download +manufacturer: bleeptrack +name: PicoPlanet +title: PicoPlanet Download --- PicoPlanet is a procedurally generated series of PCBs. The three planets act as capacitive touch buttons. The board also has a RGB LED on top, a USB-C connector and 4 more pin pads on the bottom. The board's brain is a powerful SAMD21. The design also has stars that are not covered by copper or soldermask and are perfect spots to place more LEDs. diff --git a/_board/pillbug.md b/_board/pillbug.md index 9388098208..49bf067a04 100644 --- a/_board/pillbug.md +++ b/_board/pillbug.md @@ -1,24 +1,21 @@ --- -layout: download -board_id: "pillbug" -title: "PillBug Download" -name: "PillBug" -manufacturer: "MechWild" +board_id: pillbug +board_image: pillbug.jpg board_url: - - "https://mechwild.com/product/pillbug/" -board_image: "pillbug.jpg" -date_added: 2022-11-10 +- https://mechwild.com/product/pillbug/ +bootloader_id: pillbug +date_added: 2022-11-10 12:00:00 downloads_display: true family: nrf52840 -bootloader_id: pillbug -# Features are tags; they should be limited to the items in this list and spelled exactly the same. -# Include only the features your board supports, and remove these comment lines before committing. -# Breadboard-Friendly is a parallel pin layout with minimal non-critical perpendicular pins features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - USB-C +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: MechWild +name: PillBug +title: PillBug Download --- The PillBug is a BLE enabled development board powered by the nRF52840 that is designed to be a drop in replacement for the stm32f401/stm32f411 blackpill development board. This board was designed for compatibility with blackpill driven keyboards and will work as a simple replacement in most cases. The PillBug features 3.7V Li-Ion battery charger, a software controlled hardware cutoff for powering peripherals, a controllable status LED, and compatibility with blackpill's pinouts for I2C/SPI/UART. diff --git a/_board/pimoroni_badger2040.md b/_board/pimoroni_badger2040.md index 41f20f971e..cc1b977482 100644 --- a/_board/pimoroni_badger2040.md +++ b/_board/pimoroni_badger2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pimoroni_badger2040" -title: "Badger 2040 Download" -name: "Badger 2040" -manufacturer: "Pimoroni" +board_id: pimoroni_badger2040 +board_image: pimoroni_badger2040.jpg board_url: - - "https://shop.pimoroni.com/products/badger-2040" -board_image: "pimoroni_badger2040.jpg" -date_added: 2022-2-24 +- https://shop.pimoroni.com/products/badger-2040 +date_added: 2022-02-24 12:00:00 family: raspberrypi features: - - Display - - STEMMA QT/QWIIC - - USB-C +- Display +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: Pimoroni +name: Badger 2040 +title: Badger 2040 Download --- A hackable, programmable badge(r) with monochrome E Ink® display, powered by Raspberry Pi RP2040. It has a quintet of buttons (one for each claw), a slot so you can clip it onto a lanyard and a battery connector to keep things portable. You can even connect it up to Qwiic and STEMMA QT breakouts! diff --git a/_board/pimoroni_badger2040w.md b/_board/pimoroni_badger2040w.md index 970841620f..466cfb73eb 100644 --- a/_board/pimoroni_badger2040w.md +++ b/_board/pimoroni_badger2040w.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "pimoroni_badger2040w" -title: "Badger 2040 W Download" -name: "Badger 2040 W (Pico W Aboard)" -manufacturer: "Pimoroni" +board_id: pimoroni_badger2040w +board_image: pimoroni_badger2040w.jpg board_url: - - "https://shop.pimoroni.com/products/badger-2040-w" -board_image: "pimoroni_badger2040w.jpg" -date_added: 2023-5-9 +- https://shop.pimoroni.com/products/badger-2040-w +date_added: 2023-05-09 12:00:00 family: raspberrypi -tags: - - picow - - 🥧🐮 features: - - Bluetooth/BTLE - - Display - - STEMMA QT/QWIIC - - Wi-Fi +- Bluetooth/BTLE +- Display +- STEMMA QT/QWIIC +- Wi-Fi +layout: download +manufacturer: Pimoroni +name: Badger 2040 W (Pico W Aboard) +tags: +- picow +- "\U0001F967\U0001F42E" +title: Badger 2040 W Download --- A programmable badge with fast updating E Ink® display and wireless connectivity powered by the Raspberry Pi Pico W. On the front, you'll find the black and white 2.9" e-paper screen, a selection of buttons to poke at and a slot to clip it onto a lanyard. On the back, there's a battery connector, a reset button and a Qw/ST connector for plugging in Qwiic or STEMMA QT breakouts. And now that it's got a Raspberry Pi Pico W Aboard it can communicate wirelessly with other devices and retrieve tasty data from the internet, hoorah! diff --git a/_board/pimoroni_inky_frame_5_7.md b/_board/pimoroni_inky_frame_5_7.md index f72a82493a..4de71dcdba 100644 --- a/_board/pimoroni_inky_frame_5_7.md +++ b/_board/pimoroni_inky_frame_5_7.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "pimoroni_inky_frame_5_7" -title: "Inky Frame 5.7\" Download" -name: "Inky Frame 5.7\" (Pico W Aboard)" -manufacturer: "Pimoroni" +board_id: pimoroni_inky_frame_5_7 +board_image: pimoroni_inky_frame_5_7.jpg board_url: - - "https://shop.pimoroni.com/products/inky-frame-5-7" -board_image: "pimoroni_inky_frame_5_7.jpg" -date_added: 2023-6-5 +- https://shop.pimoroni.com/products/inky-frame-5-7 +date_added: 2023-06-05 12:00:00 family: raspberrypi -tags: - - picow - - 🥧🐮 features: - - Bluetooth/BTLE - - Display - - STEMMA QT/QWIIC - - Wi-Fi +- Bluetooth/BTLE +- Display +- STEMMA QT/QWIIC +- Wi-Fi +layout: download +manufacturer: Pimoroni +name: Inky Frame 5.7" (Pico W Aboard) +tags: +- picow +- "\U0001F967\U0001F42E" +title: Inky Frame 5.7" Download --- A large Pico W powered E Ink® photo frame / home dashboard / life organiser with glorious seven colour display and wireless connectivity. diff --git a/_board/pimoroni_inky_frame_7_3.md b/_board/pimoroni_inky_frame_7_3.md index d2972f4c4b..3090bd3dc2 100644 --- a/_board/pimoroni_inky_frame_7_3.md +++ b/_board/pimoroni_inky_frame_7_3.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "pimoroni_inky_frame_7_3" -title: "Inky Frame 7.3\" Download" -name: "Inky Frame 7.3\" (Pico W Aboard)" -manufacturer: "Pimoroni" +board_id: pimoroni_inky_frame_7_3 +board_image: pimoroni_inky_frame_7_3.jpg board_url: - - "https://shop.pimoroni.com/products/inky-frame-7-3" -board_image: "pimoroni_inky_frame_7_3.jpg" -date_added: 2024-3-13 +- https://shop.pimoroni.com/products/inky-frame-7-3 +date_added: 2024-03-13 12:00:00 family: raspberrypi -tags: - - picow - - 🥧🐮 features: - - Bluetooth/BTLE - - Display - - STEMMA QT/QWIIC - - Wi-Fi +- Bluetooth/BTLE +- Display +- STEMMA QT/QWIIC +- Wi-Fi +layout: download +manufacturer: Pimoroni +name: Inky Frame 7.3" (Pico W Aboard) +tags: +- picow +- "\U0001F967\U0001F42E" +title: Inky Frame 7.3" Download --- There's a new ePaper screen in town, and it's a biggie! Inky Frame 7.3" features a **super crisp E Ink display** with 800 x 480 pixels of seven colour goodness. We've added **five buttons with LED indicators** for interacting with the display, **two Qw/ST connectors** for plugging in breakouts and a **micro SD card slot** for storing photos of fond maritime adventures (or whatever floats your boat). diff --git a/_board/pimoroni_interstate75.md b/_board/pimoroni_interstate75.md index 41438bc462..c924d7ddac 100644 --- a/_board/pimoroni_interstate75.md +++ b/_board/pimoroni_interstate75.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "pimoroni_interstate75" -title: "Interstate 75 Download" -name: "Interstate 75" -manufacturer: "Pimoroni" +board_id: pimoroni_interstate75 +board_image: pimoroni_interstate75.jpg board_url: - - "https://shop.pimoroni.com/products/interstate-75" - - "https://www.adafruit.com/product/5342" -board_image: "pimoroni_interstate75.jpg" -date_added: 2021-12-02 +- https://shop.pimoroni.com/products/interstate-75 +- https://www.adafruit.com/product/5342 +date_added: 2021-12-02 12:00:00 family: raspberrypi features: - - External Display - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- External Display +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Interstate 75 +title: Interstate 75 Download --- Enter the (LED) matrix with Interstate 75 - a RP2040-powered driver board for HUB75-style RGB matrices, designed to plug neatly into the back of a LED panel. It provides a quick and easy way to whip up some scrolling signage or an eye-catching LED display for sensor outputs. diff --git a/_board/pimoroni_keybow2040.md b/_board/pimoroni_keybow2040.md index 6e2b22362e..e5d2c3b3e5 100644 --- a/_board/pimoroni_keybow2040.md +++ b/_board/pimoroni_keybow2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "pimoroni_keybow2040" -title: "Keybow 2040 Download" -name: "Keybow 2040" -manufacturer: "Pimoroni" +board_id: pimoroni_keybow2040 +board_image: pimoroni_keybow2040.jpg board_url: - - "https://shop.pimoroni.com/products/keybow-2040" - - "https://www.adafruit.com/product/4144" -board_image: "pimoroni_keybow2040.jpg" -date_added: 2021-2-24 +- https://shop.pimoroni.com/products/keybow-2040 +- https://www.adafruit.com/product/4144 +date_added: 2021-02-24 12:00:00 family: raspberrypi features: - - USB-C +- USB-C +layout: download +manufacturer: Pimoroni +name: Keybow 2040 +title: Keybow 2040 Download --- A luxe 16 key USB-C keyboard with tactile mechanical switches and fully customisable RGB lighting, ideal for custom macro pads, midi controllers and stream decks. RP2040 gives Keybow 2040 low latency input, zero boot time and a new, compact footprint. diff --git a/_board/pimoroni_motor2040.md b/_board/pimoroni_motor2040.md index 54f8f21709..d45748501d 100644 --- a/_board/pimoroni_motor2040.md +++ b/_board/pimoroni_motor2040.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "pimoroni_motor2040" -title: "Motor 2040 Download" -name: "Motor 2040" -manufacturer: "Pimoroni" +board_id: pimoroni_motor2040 +board_image: pimoroni_motor2040.jpg board_url: - - "https://shop.pimoroni.com/products/motor-2040" -board_image: "pimoroni_motor2040.jpg" -date_added: 2022-6-15 +- https://shop.pimoroni.com/products/motor-2040 +date_added: 2022-06-15 12:00:00 family: raspberrypi features: - - Robotics - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Robotics +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Motor 2040 +title: Motor 2040 Download --- A compact 4 channel motor+encoder controller, powered by RP2040. It has RGB and per-motor indicator LEDs plus built in voltage and current sensing. There's also a Qwiic/STEMMA QT connector for adding breakouts! diff --git a/_board/pimoroni_pga2040.md b/_board/pimoroni_pga2040.md index a31cf16fa5..58f0624c17 100644 --- a/_board/pimoroni_pga2040.md +++ b/_board/pimoroni_pga2040.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "pimoroni_pga2040" -title: "PGA2040 Download" -name: "PGA2040" -manufacturer: "Pimoroni" +board_id: pimoroni_pga2040 +board_image: pimoroni_pga2040.jpg board_url: - - "https://shop.pimoroni.com/products/pga2040" -board_image: "pimoroni_pga2040.jpg" -date_added: 2021-6-10 +- https://shop.pimoroni.com/products/pga2040 +date_added: 2021-06-10 12:00:00 family: raspberrypi +layout: download +manufacturer: Pimoroni +name: PGA2040 +title: PGA2040 Download --- A minimal RP2040 breakout board wrangled into a Pin Grid Array, with a maximal dash of retraux style. PGA2040 has no USB port, LED or buttons but it does have an embed-friendly 21mm square footprint, 8MB of flash and lots of exposed RP2040 pins to play with. diff --git a/_board/pimoroni_pico_dv_base.md b/_board/pimoroni_pico_dv_base.md index a8963d31f7..82faea019a 100644 --- a/_board/pimoroni_pico_dv_base.md +++ b/_board/pimoroni_pico_dv_base.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "pimoroni_pico_dv_base" -title: "Pimoroni Pico DV Demo Base for Pico Download" -name: "Pimoroni Pico DV Demo Base for Pico" -manufacturer: "Pimoroni" +board_id: pimoroni_pico_dv_base +board_image: pimoroni_pico_dv_base.jpg board_url: - - "https://shop.pimoroni.com/en-us/products/pimoroni-pico-dv-demo-base" - - "https://www.adafruit.com/product/5674" -board_image: "pimoroni_pico_dv_base.jpg" -date_added: 2023-5-4 +- https://shop.pimoroni.com/en-us/products/pimoroni-pico-dv-demo-base +- https://www.adafruit.com/product/5674 +date_added: 2023-05-04 12:00:00 family: raspberrypi +layout: download +manufacturer: Pimoroni +name: Pimoroni Pico DV Demo Base for Pico +title: Pimoroni Pico DV Demo Base for Pico Download --- A demo board for exploring the digital video and audio capabilities of Raspberry Pi Pico, with diff --git a/_board/pimoroni_pico_dv_base_w.md b/_board/pimoroni_pico_dv_base_w.md index bd3fd6ccc7..0f9e17960c 100644 --- a/_board/pimoroni_pico_dv_base_w.md +++ b/_board/pimoroni_pico_dv_base_w.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "pimoroni_pico_dv_base_w" -title: "Pimoroni Pico DV Demo Base for Pico W Download" -name: "Pimoroni Pico DV Demo Base for Pico W" -manufacturer: "Pimoroni" +board_id: pimoroni_pico_dv_base_w +board_image: pimoroni_pico_dv_base_w.jpg board_url: - - "https://shop.pimoroni.com/en-us/products/pimoroni-pico-dv-demo-base" - - "https://www.adafruit.com/product/5674" -board_image: "pimoroni_pico_dv_base_w.jpg" -date_added: 2023-8-29 +- https://shop.pimoroni.com/en-us/products/pimoroni-pico-dv-demo-base +- https://www.adafruit.com/product/5674 +date_added: 2023-08-29 12:00:00 family: raspberrypi +layout: download +manufacturer: Pimoroni +name: Pimoroni Pico DV Demo Base for Pico W +title: Pimoroni Pico DV Demo Base for Pico W Download --- A demo board for exploring the digital video and audio capabilities of Raspberry Pi Pico or Pico W, with diff --git a/_board/pimoroni_picolipo_16mb.md b/_board/pimoroni_picolipo_16mb.md index 5da2f6d565..894b009e83 100644 --- a/_board/pimoroni_picolipo_16mb.md +++ b/_board/pimoroni_picolipo_16mb.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "pimoroni_picolipo_16mb" -title: "Pimoroni Pico LiPo (16MB) Download" -name: "Pimoroni Pico LiPo (16MB)" -manufacturer: "Pimoroni" +board_id: pimoroni_picolipo_16mb +board_image: pimoroni_picolipo.jpg board_url: - - "https://shop.pimoroni.com/products/picolipo" -board_image: "pimoroni_picolipo.jpg" -date_added: 2021-5-12 +- https://shop.pimoroni.com/products/picolipo +date_added: 2021-05-12 12:00:00 family: raspberrypi features: - - Battery Charging - - USB-C - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Battery Charging +- USB-C +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Pimoroni Pico LiPo (16MB) +title: Pimoroni Pico LiPo (16MB) Download --- A top of the line Pirate-brand RP2040-powered microcontroller with all the extras - lots of flash memory, USB-C, STEMMA QT/Qwiic and debug connectors... and onboard LiPo charging! Pimoroni Pico boards add extra functionality whilst keeping to the Pico footprint, ensuring compatibility with existing Pico addons. diff --git a/_board/pimoroni_picolipo_4mb.md b/_board/pimoroni_picolipo_4mb.md index ee5b895222..5ad327f2cb 100644 --- a/_board/pimoroni_picolipo_4mb.md +++ b/_board/pimoroni_picolipo_4mb.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "pimoroni_picolipo_4mb" -title: "Pimoroni Pico LiPo (4MB) Download" -name: "Pimoroni Pico LiPo (4MB)" -manufacturer: "Pimoroni" +board_id: pimoroni_picolipo_4mb +board_image: pimoroni_picolipo.jpg board_url: - - "https://shop.pimoroni.com/products/picolipo" -board_image: "pimoroni_picolipo.jpg" -date_added: 2021-5-12 +- https://shop.pimoroni.com/products/picolipo +date_added: 2021-05-12 12:00:00 family: raspberrypi features: - - Battery Charging - - USB-C - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Battery Charging +- USB-C +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Pimoroni Pico LiPo (4MB) +title: Pimoroni Pico LiPo (4MB) Download --- A top of the line Pirate-brand RP2040-powered microcontroller with all the extras - lots of flash memory, USB-C, STEMMA QT/Qwiic and debug connectors... and onboard LiPo charging! Pimoroni Pico boards add extra functionality whilst keeping to the Pico footprint, ensuring compatibility with existing Pico addons. diff --git a/_board/pimoroni_picosystem.md b/_board/pimoroni_picosystem.md index 0a8f533666..a69ddc30d7 100644 --- a/_board/pimoroni_picosystem.md +++ b/_board/pimoroni_picosystem.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "pimoroni_picosystem" -title: "PicoSystem Download" -name: "PicoSystem" -manufacturer: "Pimoroni" +board_id: pimoroni_picosystem +board_image: pimoroni_picosystem.jpg board_url: - - "https://shop.pimoroni.com/products/picosystem" -board_image: "pimoroni_picosystem.jpg" -date_added: 2021-2-24 +- https://shop.pimoroni.com/products/picosystem +date_added: 2021-02-24 12:00:00 family: raspberrypi features: - - Speaker - - Battery Charging - - Display - - USB-C +- Speaker +- Battery Charging +- Display +- USB-C +layout: download +manufacturer: Pimoroni +name: PicoSystem +title: PicoSystem Download --- An all-in-one pocket sized games console with RP2040 at its heart, ready for filling up with all the most fun pixels! PicoSystem has a nice tactile joypad and buttons, a vibrant 240x240 screen and a lipo battery, neatly wrapped up in some shiny abstract PCB art. diff --git a/_board/pimoroni_plasma2040.md b/_board/pimoroni_plasma2040.md index 2edeeb32c8..a090173d41 100644 --- a/_board/pimoroni_plasma2040.md +++ b/_board/pimoroni_plasma2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "pimoroni_plasma2040" -title: "Plasma 2040 Download" -name: "Plasma 2040" -manufacturer: "Pimoroni" +board_id: pimoroni_plasma2040 +board_image: pimoroni_plasma2040.jpg board_url: - - "https://shop.pimoroni.com/products/plasma-2040" -board_image: "pimoroni_plasma2040.jpg" -date_added: 2021-08-11 +- https://shop.pimoroni.com/products/plasma-2040 +date_added: 2021-08-11 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Plasma 2040 +title: Plasma 2040 Download --- Swathe everything in rainbows with this all-in-one, USB-C powered controller for WS2812/Neopixel and APA102/Dotstar addressable LED strips, with RP2040 in the driving seat - just perfect for whipping up some custom mood lighting. @@ -42,4 +42,4 @@ One very exciting feature of RP2040 is the programmable IOs which allow you to e ## Purchase -* [Pimoroni](https://shop.pimoroni.com/products/plasma-2040) \ No newline at end of file +* [Pimoroni](https://shop.pimoroni.com/products/plasma-2040) diff --git a/_board/pimoroni_plasma2040w.md b/_board/pimoroni_plasma2040w.md index 8f7ea5e2cb..5d3c67b902 100644 --- a/_board/pimoroni_plasma2040w.md +++ b/_board/pimoroni_plasma2040w.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "pimoroni_plasma2040w" -title: "Plasma Stick 2040 W Download" -name: "Plasma Stick 2040 W (Pico W Aboard)" -manufacturer: "Pimoroni" +board_id: pimoroni_plasma2040w +board_image: pimoroni_plasma2040w.jpg board_url: - - "https://shop.pimoroni.com/products/plasma-stick-2040-w" -board_image: "pimoroni_plasma2040w.jpg" -date_added: 2023-5-9 +- https://shop.pimoroni.com/products/plasma-stick-2040-w +date_added: 2023-05-09 12:00:00 family: raspberrypi -tags: - - picow - - 🥧🐮 features: - - Bluetooth/BTLE - - STEMMA QT/QWIIC - - Wi-Fi +- Bluetooth/BTLE +- STEMMA QT/QWIIC +- Wi-Fi +layout: download +manufacturer: Pimoroni +name: Plasma Stick 2040 W (Pico W Aboard) +tags: +- picow +- "\U0001F967\U0001F42E" +title: Plasma Stick 2040 W Download --- This perky Pico W-powered controller for WS2812/Neopixel/SK6812 LEDs is perfect for coding up some wireless blinkenlight shenanigans. @@ -44,4 +44,4 @@ Our new Pico W Aboard products come with a built in Raspberry Pi Pico W. This me ## Purchase -* [Pimoroni](https://shop.pimoroni.com/products/plasma-stick-2040-w) \ No newline at end of file +* [Pimoroni](https://shop.pimoroni.com/products/plasma-stick-2040-w) diff --git a/_board/pimoroni_servo2040.md b/_board/pimoroni_servo2040.md index fdaa304fb1..04d061b84d 100644 --- a/_board/pimoroni_servo2040.md +++ b/_board/pimoroni_servo2040.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "pimoroni_servo2040" -title: "Servo 2040 Download" -name: "Servo 2040" -manufacturer: "Pimoroni" +board_id: pimoroni_servo2040 +board_image: pimoroni_servo2040.jpg board_url: - - "https://shop.pimoroni.com/products/servo-2040" - - "https://www.adafruit.com/product/5437" -board_image: "pimoroni_servo2040.jpg" -date_added: 2022-4-1 +- https://shop.pimoroni.com/products/servo-2040 +- https://www.adafruit.com/product/5437 +date_added: 2022-04-01 12:00:00 family: raspberrypi features: - - Robotics - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Robotics +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Servo 2040 +title: Servo 2040 Download --- A standalone, RP2040 powered servo controller - great for building hexapods, robot arms or other things with lots of moving parts. It has RGB LEDs/Neopixels for status updates, built in current monitoring and headers to add up to 6 analog sensors. There's also a Qwiic/STEMMA QT connector for adding breakouts! diff --git a/_board/pimoroni_tiny2040.md b/_board/pimoroni_tiny2040.md index f276a3c2de..16c4ca180c 100644 --- a/_board/pimoroni_tiny2040.md +++ b/_board/pimoroni_tiny2040.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "pimoroni_tiny2040" -title: "Tiny 2040 (8MB) Download" -name: "Tiny 2040 (8MB)" -manufacturer: "Pimoroni" +board_id: pimoroni_tiny2040 +board_image: pimoroni_tiny2040.jpg board_url: - - "https://shop.pimoroni.com/products/tiny-2040" -board_image: "pimoroni_tiny2040.jpg" -date_added: 2021-2-24 +- https://shop.pimoroni.com/products/tiny-2040 +date_added: 2021-02-24 12:00:00 family: raspberrypi - features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Tiny 2040 (8MB) +title: Tiny 2040 (8MB) Download --- A postage stamp sized RP2040 development board with a USB-C connection, perfect for portable projects, wearables, and embedding into devices. Tiny 2040 comes with 8MB of QSPI (XiP) flash on board so it can handle projects small and large with ease. diff --git a/_board/pimoroni_tiny2040_2mb.md b/_board/pimoroni_tiny2040_2mb.md index e780b70fc5..328ea7ccaa 100644 --- a/_board/pimoroni_tiny2040_2mb.md +++ b/_board/pimoroni_tiny2040_2mb.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "pimoroni_tiny2040_2mb" -title: "Tiny 2040 (2MB) Download" -name: "Tiny 2040 (2MB)" -manufacturer: "Pimoroni" +board_id: pimoroni_tiny2040_2mb +board_image: pimoroni_tiny2040_2mb.jpg board_url: - - "https://shop.pimoroni.com/products/tiny-2040" -board_image: "pimoroni_tiny2040_2mb.jpg" -date_added: 2021-12-02 +- https://shop.pimoroni.com/products/tiny-2040 +date_added: 2021-12-02 12:00:00 family: raspberrypi - features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Pimoroni +name: Tiny 2040 (2MB) +title: Tiny 2040 (2MB) Download --- A postage stamp sized RP2040 development board with a USB-C connection, perfect for portable projects, wearables, and embedding into devices. Tiny 2040 comes with 2MB of QSPI (XiP) flash on board so it can handle projects small and large with ease. diff --git a/_board/pirkey_m0.md b/_board/pirkey_m0.md index 0345674672..cc6541cc0c 100644 --- a/_board/pirkey_m0.md +++ b/_board/pirkey_m0.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "pirkey_m0" -title: "pIRkey Download" -name: "pIRkey" -manufacturer: "Adafruit" +board_id: pirkey_m0 +board_image: pirkey_m0.jpg board_url: - - "https://www.adafruit.com/product/3364" -board_image: "pirkey_m0.jpg" -date_added: 2019-3-11 -family: atmel-samd +- https://www.adafruit.com/product/3364 bootloader_id: pirkey +date_added: 2019-03-11 12:00:00 +family: atmel-samd +layout: download +manufacturer: Adafruit +name: pIRkey +title: pIRkey Download --- The pIRkey adds an IR remote receiver to any computer, laptop, tablet...any computer or device with a USB port that can use a keyboard. This little board slides into any USB A port, and shows up as an every-day USB keyboard. The onboard ATSAMD21 microcontroller listens for IR remote signals and converts them to keypresses, mouse movements, or even USB serial output. diff --git a/_board/pitaya_go.md b/_board/pitaya_go.md index 0b0272e296..e71a147d1e 100644 --- a/_board/pitaya_go.md +++ b/_board/pitaya_go.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "pitaya_go" -title: "Pitaya Go Download" -name: "Pitaya Go" -manufacturer: "MakerDiary" +board_id: pitaya_go +board_image: pitaya_go.jpg board_url: - - "https://store.makerdiary.com/products/pitaya-go" -board_image: "pitaya_go.jpg" -date_added: 2019-05-11 -family: nrf52840 +- https://store.makerdiary.com/products/pitaya-go bootloader_id: pitaya_go +date_added: 2019-05-11 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - - USB-C - - Battery Charging - - Breadboard-Friendly +- Bluetooth/BTLE +- USB-C +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: MakerDiary +name: Pitaya Go +title: Pitaya Go Download --- BLE and Wifi board in a small for factor. diff --git a/_board/pyb_nano_v2.md b/_board/pyb_nano_v2.md index f6b510cbcc..42224f872a 100644 --- a/_board/pyb_nano_v2.md +++ b/_board/pyb_nano_v2.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "pyb_nano_v2" -title: "PYB Nano v2 Download" -name: "PYB Nano v2" -manufacturer: "Elecrow" +board_id: pyb_nano_v2 +board_image: pyb_nano_v2.jpg board_url: - - "https://www.elecrow.com/micropython-development-board-pyb-nano-compatible-with-python.html" -board_image: "pyb_nano_v2.jpg" -date_added: 2019-12-10 -family: stm +- https://www.elecrow.com/micropython-development-board-pyb-nano-compatible-with-python.html bootloader_id: pyb_nano_v2 +date_added: 2019-12-10 12:00:00 +family: stm features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Elecrow +name: PYB Nano v2 +title: PYB Nano v2 Download --- DETAILS diff --git a/_board/pybadge.md b/_board/pybadge.md index 96070d82bd..47fb31eb4f 100644 --- a/_board/pybadge.md +++ b/_board/pybadge.md @@ -1,24 +1,24 @@ --- -layout: download -board_id: "pybadge" -title: "PyBadge Download" -name: "PyBadge" -manufacturer: "Adafruit" +board_id: pybadge +board_image: pybadge.jpg board_url: - - "https://www.adafruit.com/product/4200" - - "https://www.adafruit.com/product/3939" - - "https://www.adafruit.com/product/4623" - - "https://www.adafruit.com/product/4624" - - "https://www.adafruit.com/product/4317" -board_image: "pybadge.jpg" -date_added: 2019-3-19 -family: atmel-samd +- https://www.adafruit.com/product/4200 +- https://www.adafruit.com/product/3939 +- https://www.adafruit.com/product/4623 +- https://www.adafruit.com/product/4624 +- https://www.adafruit.com/product/4317 bootloader_id: arcade_pybadge +date_added: 2019-03-19 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging +- Display +- Speaker +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Adafruit +name: PyBadge +title: PyBadge Download --- The Adafruit PyBadge an all-in-one compact dev board programmable in CircuitPython. Full of features squeezed onto a 3 3⁄8 × 2 1⁄8 inch rounded credit card sized rectangle. It's a perfect wearable badge, but can be used for many projects. diff --git a/_board/pybadge_airlift.md b/_board/pybadge_airlift.md index 9ae2e177fd..416d342bc2 100644 --- a/_board/pybadge_airlift.md +++ b/_board/pybadge_airlift.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "pybadge_airlift" -title: "PyBadge AirLift Download" -name: "PyBadge AirLift" -manufacturer: "Adafruit" +board_id: pybadge_airlift +board_image: pybadge_airlift.jpg board_url: - - "https://www.adafruit.com/" -board_image: "pybadge_airlift.jpg" -date_added: 2019-7-1 -family: atmel-samd +- https://www.adafruit.com/ bootloader_id: arcade_pybadge +date_added: 2019-07-01 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging - - Wi-Fi +- Display +- Speaker +- Feather-Compatible +- Battery Charging +- Wi-Fi +layout: download +manufacturer: Adafruit +name: PyBadge AirLift +title: PyBadge AirLift Download --- The PyBadge AirLift is coming soon from Adafruit, check out the weekly "Top Secret" segment on ASK AN ENGINEER or the upcoming new product videos on [YouTube](https://www.youtube.com/adafruit). diff --git a/_board/pyboard_v11.md b/_board/pyboard_v11.md index 0b4144a781..ba7dcdd09a 100644 --- a/_board/pyboard_v11.md +++ b/_board/pyboard_v11.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "pyboard_v11" -title: "Pyboard Download" -name: "Pyboard" -manufacturer: "Damien George" +board_id: pyboard_v11 +board_image: pyboard_v11.jpg board_url: - - "https://www.adafruit.com/product/2390" -board_image: "pyboard_v11.jpg" -date_added: 2019-9-26 -family: stm +- https://www.adafruit.com/product/2390 bootloader_id: pyboard_v11 +date_added: 2019-09-26 12:00:00 +family: stm +layout: download +manufacturer: Damien George +name: Pyboard +title: Pyboard Download --- The pyboard is a compact and powerful electronics development board that runs MicroPython. It connects to your PC over USB, giving you a USB flash drive to save your Python scripts, and a serial Python prompt (a REPL) for instant programming. Requires a micro USB cable, and will work with Windows, Mac and Linux. diff --git a/_board/pycubed.md b/_board/pycubed.md index 841e3f4289..995f65454c 100644 --- a/_board/pycubed.md +++ b/_board/pycubed.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "pycubed" -title: "PyCubedv04 Download" -name: "PyCubedv04" -manufacturer: "PyCubed.org" +board_id: pycubed +board_image: pycubed.jpg board_url: - - "https://pycubed.org/" -board_image: "pycubed.jpg" -date_added: 2020-2-27 -family: atmel-samd +- https://pycubed.org/ bootloader_id: pycubed -features: +date_added: 2020-02-27 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: PyCubed.org +name: PyCubedv04 +title: PyCubedv04 Download --- ### ⭐ Double-check the your PyCubed board version before updating firmware. diff --git a/_board/pycubed_mram.md b/_board/pycubed_mram.md index 9223a60230..0df1bd7aa1 100644 --- a/_board/pycubed_mram.md +++ b/_board/pycubed_mram.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "pycubed_mram" -title: "PyCubedv04 w/MRAM Download" -name: "PyCubedv04 w/MRAM" -manufacturer: "PyCubed.org" +board_id: pycubed_mram +board_image: pycubed.jpg board_url: - - "https://pycubed.org/" -board_image: "pycubed.jpg" -date_added: 2020-4-07 +- https://pycubed.org/ +date_added: 2020-04-07 12:00:00 family: atmel-samd -features: +features: null +layout: download +manufacturer: PyCubed.org +name: PyCubedv04 w/MRAM +title: PyCubedv04 w/MRAM Download --- ### ⭐ Double-check the your PyCubed board version before updating firmware. diff --git a/_board/pycubed_mram_v05.md b/_board/pycubed_mram_v05.md index 203dc0eb44..300f11f4d8 100644 --- a/_board/pycubed_mram_v05.md +++ b/_board/pycubed_mram_v05.md @@ -1,27 +1,26 @@ ---- -layout: download -board_id: "pycubed_mram_v05" -title: "PyCubed v05 w/MRAM Download" -name: "PyCubedv05 w/MRAM" -manufacturer: "PyCubed.org" -board_url: - - "https://pycubed.org/" -board_image: "pycubed_v05.jpg" -date_added: 2021-9-12 -family: atmel-samd -features: - ---- - -### ⭐ Double-check the your PyCubed board version before updating firmware. - -PyCubed is an open-source, radiation-tested small satellite framework programmable entirely in CircuitPython. Capable of all standard operating functions a small satellite might need, the PyCubed mainboard provides University and hobbyist teams an entirely open-source and sate-of-the-art hardware and software avionics solution for their satellite missions without having to spend tens of thousands of dollars for antiquated commercial products. - -Yet PyCubed's greatest value is its ease of programming & immense documentation. With nearly 100 detailed write-ups and tutorials, PyCubed's online resources are available to everyone and even include a step-by-step guide that walks you from unboxing and LED blinking all the way through full-featured mission software examples. - -## Tutorials and Resources -* [About](https://pycubed.org) -* [Quick Start](https://pycubed.org/quickstart) -* [All PyCubed Resources](https://pycubed.org/resources) -* [Forums](https://pycubed.org/forums) -* [Github](https://github.com/PyCubed) +--- +board_id: pycubed_mram_v05 +board_image: pycubed_v05.jpg +board_url: +- https://pycubed.org/ +date_added: 2021-09-12 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: PyCubed.org +name: PyCubedv05 w/MRAM +title: PyCubed v05 w/MRAM Download +--- + +### ⭐ Double-check the your PyCubed board version before updating firmware. + +PyCubed is an open-source, radiation-tested small satellite framework programmable entirely in CircuitPython. Capable of all standard operating functions a small satellite might need, the PyCubed mainboard provides University and hobbyist teams an entirely open-source and sate-of-the-art hardware and software avionics solution for their satellite missions without having to spend tens of thousands of dollars for antiquated commercial products. + +Yet PyCubed's greatest value is its ease of programming & immense documentation. With nearly 100 detailed write-ups and tutorials, PyCubed's online resources are available to everyone and even include a step-by-step guide that walks you from unboxing and LED blinking all the way through full-featured mission software examples. + +## Tutorials and Resources +* [About](https://pycubed.org) +* [Quick Start](https://pycubed.org/quickstart) +* [All PyCubed Resources](https://pycubed.org/resources) +* [Forums](https://pycubed.org/forums) +* [Github](https://github.com/PyCubed) diff --git a/_board/pycubed_v05.md b/_board/pycubed_v05.md index 27dd172c67..88aa7407b8 100644 --- a/_board/pycubed_v05.md +++ b/_board/pycubed_v05.md @@ -1,27 +1,26 @@ ---- -layout: download -board_id: "pycubed_v05" -title: "PyCubed v05 Download" -name: "PyCubedv05" -manufacturer: "PyCubed.org" -board_url: - - "https://pycubed.org/" -board_image: "pycubed_v05.jpg" -date_added: 2021-9-12 -family: atmel-samd -features: - ---- - -### ⭐ Double-check the your PyCubed board version before updating firmware. - -PyCubed is an open-source, radiation-tested small satellite framework programmable entirely in CircuitPython. Capable of all standard operating functions a small satellite might need, the PyCubed mainboard provides University and hobbyist teams an entirely open-source and sate-of-the-art hardware and software avionics solution for their satellite missions without having to spend tens of thousands of dollars for antiquated commercial products. - -Yet PyCubed's greatest value is its ease of programming & immense documentation. With nearly 100 detailed write-ups and tutorials, PyCubed's online resources are available to everyone and even include a step-by-step guide that walks you from unboxing and LED blinking all the way through full-featured mission software examples. - -## Tutorials and Resources -* [About](https://pycubed.org) -* [Quick Start](https://pycubed.org/quickstart) -* [All PyCubed Resources](https://pycubed.org/resources) -* [Forums](https://pycubed.org/forums) -* [Github](https://github.com/PyCubed) +--- +board_id: pycubed_v05 +board_image: pycubed_v05.jpg +board_url: +- https://pycubed.org/ +date_added: 2021-09-12 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: PyCubed.org +name: PyCubedv05 +title: PyCubed v05 Download +--- + +### ⭐ Double-check the your PyCubed board version before updating firmware. + +PyCubed is an open-source, radiation-tested small satellite framework programmable entirely in CircuitPython. Capable of all standard operating functions a small satellite might need, the PyCubed mainboard provides University and hobbyist teams an entirely open-source and sate-of-the-art hardware and software avionics solution for their satellite missions without having to spend tens of thousands of dollars for antiquated commercial products. + +Yet PyCubed's greatest value is its ease of programming & immense documentation. With nearly 100 detailed write-ups and tutorials, PyCubed's online resources are available to everyone and even include a step-by-step guide that walks you from unboxing and LED blinking all the way through full-featured mission software examples. + +## Tutorials and Resources +* [About](https://pycubed.org) +* [Quick Start](https://pycubed.org/quickstart) +* [All PyCubed Resources](https://pycubed.org/resources) +* [Forums](https://pycubed.org/forums) +* [Github](https://github.com/PyCubed) diff --git a/_board/pygamer.md b/_board/pygamer.md index 626c2e9f85..fa54da2891 100644 --- a/_board/pygamer.md +++ b/_board/pygamer.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "pygamer" -title: "PyGamer Download" -name: "PyGamer" -manufacturer: "Adafruit" +board_id: pygamer +board_image: pygamer.jpg board_url: - - "https://www.adafruit.com/product/4242" - - "https://www.adafruit.com/product/4185" - - "https://www.adafruit.com/product/4277" -board_image: "pygamer.jpg" -date_added: 2019-5-25 -family: atmel-samd +- https://www.adafruit.com/product/4242 +- https://www.adafruit.com/product/4185 +- https://www.adafruit.com/product/4277 bootloader_id: arcade_pygamer +date_added: 2019-05-25 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging +- Display +- Speaker +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Adafruit +name: PyGamer +title: PyGamer Download --- The Adafruit PyGamer is an entry-level gaming handheld for DIY gaming and maybe a little retro-emulation, all in one compact dev board. diff --git a/_board/pygamer_advance.md b/_board/pygamer_advance.md index 61fa9b48cb..e7a37e3ed0 100644 --- a/_board/pygamer_advance.md +++ b/_board/pygamer_advance.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "pygamer_advance" -title: "PyGamer Advance Download" -name: "PyGamer Advance" -manufacturer: "Adafruit" +board_id: pygamer_advance +board_image: pygamer_advance.jpg board_url: - - "https://www.adafruit.com/" -board_image: "pygamer_advance.jpg" -date_added: 2019-7-1 -family: atmel-samd +- https://www.adafruit.com/ bootloader_id: arcade_pygamer +date_added: 2019-07-01 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Feather-Compatible - - Battery Charging +- Display +- Speaker +- Feather-Compatible +- Battery Charging +layout: download +manufacturer: Adafruit +name: PyGamer Advance +title: PyGamer Advance Download --- The PyGamer Advance is coming soon from Adafruit, check out the weekly "Top Secret" segment on ASK AN ENGINEER or the upcoming new product videos on [YouTube](https://www.youtube.com/adafruit). diff --git a/_board/pyportal.md b/_board/pyportal.md index 7fc5eb9b57..6ce54693f2 100644 --- a/_board/pyportal.md +++ b/_board/pyportal.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "pyportal" -title: "PyPortal Download" -name: "PyPortal" -manufacturer: "Adafruit" +board_id: pyportal +board_image: pyportal.jpg board_url: - - "https://www.adafruit.com/product/4116" - - "https://www.adafruit.com/product/4061" -board_image: "pyportal.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/4116 +- https://www.adafruit.com/product/4061 bootloader_id: pyportal_m4 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Wi-Fi +- Display +- Speaker +- Wi-Fi +layout: download +manufacturer: Adafruit +name: PyPortal +title: PyPortal Download --- **PyPortal**, is Adafruit's easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Make custom touch screen interface GUIs, all open-source, and Python-powered using tinyJSON / APIs to get news, stock, weather, cat photos, and more – all over Wi-Fi with the latest technologies. Create little pocket universes of joy that connect to something good. Rotate it 90 degrees, it’s a web-connected conference badge #badgelife. diff --git a/_board/pyportal_pynt.md b/_board/pyportal_pynt.md index 5a5ff38e77..6f58c581db 100644 --- a/_board/pyportal_pynt.md +++ b/_board/pyportal_pynt.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "pyportal_pynt" -title: "PyPortal Pynt Download" -name: "PyPortal Pynt" -manufacturer: "Adafruit" +board_id: pyportal_pynt +board_image: pyportal_pynt.jpg board_url: - - "https://www.adafruit.com/product/4465" -board_image: "pyportal_pynt.jpg" -date_added: 2019-12-11 -family: atmel-samd +- https://www.adafruit.com/product/4465 bootloader_id: pyportal_m4 +date_added: 2019-12-11 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Wi-Fi +- Display +- Speaker +- Wi-Fi +layout: download +manufacturer: Adafruit +name: PyPortal Pynt +title: PyPortal Pynt Download --- The **PyPortal Pynt** is the little sister to our [popular PyPortal](https://www.adafruit.com/product/4116) - zapped with a shink ray to take the design from a 3.2" diagonal down to 2.4" diagonal screen - but otherwise the same! The PyPortal is our easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Make custom touch screen interface GUIs, all open-source, and Python-powered using tinyJSON / APIs to get news, stock, weather, cat photos, and more – all over Wi-Fi with the latest technologies. Create little pocket universes of joy that connect to something good. Rotate it 90 degrees, it’s a web-connected conference badge #badgelife. diff --git a/_board/pyportal_titano.md b/_board/pyportal_titano.md index 5ff5675b26..6092e8362d 100644 --- a/_board/pyportal_titano.md +++ b/_board/pyportal_titano.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "pyportal_titano" -title: "PyPortal Titano Download" -name: "PyPortal Titano" -manufacturer: "Adafruit" +board_id: pyportal_titano +board_image: pyportal_titano.jpg board_url: - - "https://www.adafruit.com/product/4444" -board_image: "pyportal_titano.jpg" -date_added: 2019-8-30 -family: atmel-samd +- https://www.adafruit.com/product/4444 bootloader_id: pyportal_m4 +date_added: 2019-08-30 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Wi-Fi - - USB-C +- Display +- Speaker +- Wi-Fi +- USB-C +layout: download +manufacturer: Adafruit +name: PyPortal Titano +title: PyPortal Titano Download --- The **PyPortal Titano** is the big sister to our [popular PyPortal](https://www.adafruit.com/product/4116) now with _twice as many pixels!_ The PyPortal is our easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Make custom touch screen interface GUIs, all open-source, and Python-powered using tinyJSON / APIs to get news, stock, weather, cat photos, and more – all over Wi-Fi with the latest technologies. Create little pocket universes of joy that connect to something good. Rotate it 90 degrees, it’s a web-connected conference badge #badgelife. diff --git a/_board/pyruler.md b/_board/pyruler.md index e570edc873..74fafa0476 100644 --- a/_board/pyruler.md +++ b/_board/pyruler.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "pyruler" -title: "PyRuler Download" -name: "PyRuler" -manufacturer: "Adafruit" +board_id: pyruler +board_image: pyruler.jpg board_url: - - "https://www.adafruit.com/product/4319" -board_image: "pyruler.jpg" -date_added: 2019-7-15 -family: atmel-samd +- https://www.adafruit.com/product/4319 bootloader_id: trinket_m0 +date_added: 2019-07-15 12:00:00 +family: atmel-samd +layout: download +manufacturer: Adafruit +name: PyRuler +title: PyRuler Download --- CircuitPython rules! The PyRuler is the first ruler to be able to run CircuitPython. It features an embedded Adafruit Trinket M0, which is a tiny microcontroller board, built around the Atmel ATSAMD21E18 powerhouse. @@ -24,4 +24,4 @@ While you can use the PyRuler with the Arduino IDE, it ships with CircuitPython ## Purchase -* [Adafruit](https://www.adafruit.com/product/4319) \ No newline at end of file +* [Adafruit](https://www.adafruit.com/product/4319) diff --git a/_board/qtpy_m0.md b/_board/qtpy_m0.md index 42fb20cef3..3bed9c1d70 100644 --- a/_board/qtpy_m0.md +++ b/_board/qtpy_m0.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "qtpy_m0" -title: "QT Py Download" -name: "QT Py" -manufacturer: "Adafruit" +board_id: qtpy_m0 +board_image: qtpy_m0.jpg board_url: - - "https://www.adafruit.com/product/4600" -board_image: "qtpy_m0.jpg" -date_added: 2020-9-28 -family: atmel-samd +- https://www.adafruit.com/product/4600 bootloader_id: QTPy_m0 +date_added: 2020-09-28 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Xiao / QTPy Form Factor +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Xiao / QTPy Form Factor +layout: download +manufacturer: Adafruit +name: QT Py +title: QT Py Download --- > **Note:** If you soldered the [optional SOIC-8 SPI Flash chip](https://www.adafruit.com/product/4763) on to your QT Py, see the ["QT Py Haxpress"](../qtpy_m0_haxpress/) page to make use of the extra space! diff --git a/_board/qtpy_m0_haxpress.md b/_board/qtpy_m0_haxpress.md index 693ae9feb5..7038eed294 100644 --- a/_board/qtpy_m0_haxpress.md +++ b/_board/qtpy_m0_haxpress.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "qtpy_m0_haxpress" -title: "QT Py Haxpress Download" -name: "QT Py Haxpress" -manufacturer: "Adafruit" +board_id: qtpy_m0_haxpress +board_image: qtpy_m0_haxpress.jpg board_url: - - "https://www.adafruit.com/product/4600" -board_image: "qtpy_m0_haxpress.jpg" -date_added: 2020-9-28 -family: atmel-samd +- https://www.adafruit.com/product/4600 bootloader_id: QTPy_m0 +date_added: 2020-09-28 12:00:00 +family: atmel-samd features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly - - Xiao / QTPy Form Factor +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +- Xiao / QTPy Form Factor +layout: download +manufacturer: Adafruit +name: QT Py Haxpress +title: QT Py Haxpress Download --- This is the [QT Py board](https://www.adafruit.com/product/4600) with [the SOIC-8 2MB Flash chip](https://www.adafruit.com/product/4763) soldered on. Both are in the [Adafruit shop](https://adafruit.com). diff --git a/_board/raspberry_pi_pico.md b/_board/raspberry_pi_pico.md index 0e11c17462..a04c646f3a 100644 --- a/_board/raspberry_pi_pico.md +++ b/_board/raspberry_pi_pico.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "raspberry_pi_pico" -title: "Pico Download" -name: "Pico" -manufacturer: "Raspberry Pi" +board_id: raspberry_pi_pico +board_image: raspberry_pi_pico.jpg board_url: - - "https://www.adafruit.com/product/4864" - - "https://www.adafruit.com/product/4883" - - "https://www.adafruit.com/product/5525" -board_image: "raspberry_pi_pico.jpg" -date_added: 2021-1-21 +- https://www.adafruit.com/product/4864 +- https://www.adafruit.com/product/4883 +- https://www.adafruit.com/product/5525 +date_added: 2021-01-21 12:00:00 family: raspberrypi features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Raspberry Pi +name: Pico +title: Pico Download --- The Raspberry Pi foundation changed single-board computing when they released the Raspberry Pi computer, now they're ready to do the same for microcontrollers with the release of the brand new **Raspberry Pi Pico**. This low-cost microcontroller board features a powerful new chip, the **RP2040**, and all the fixin's to get started with embedded electronics projects at a stress-free price. diff --git a/_board/raspberry_pi_pico_w.md b/_board/raspberry_pi_pico_w.md index be2614387c..cb19ec4bfd 100644 --- a/_board/raspberry_pi_pico_w.md +++ b/_board/raspberry_pi_pico_w.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "raspberry_pi_pico_w" -title: "Pico W Download" -name: "Pico W" -manufacturer: "Raspberry Pi" +board_id: raspberry_pi_pico_w +board_image: raspberry_pi_pico_w.jpg board_url: - - "https://www.adafruit.com/product/5526" - - "https://www.adafruit.com/product/5544" -board_image: "raspberry_pi_pico_w.jpg" -date_added: 2022-10-2 +- https://www.adafruit.com/product/5526 +- https://www.adafruit.com/product/5544 +date_added: 2022-10-02 12:00:00 family: raspberrypi -tags: - - picow - - 🥧🐮 features: - - Breadboard-Friendly - - Wi-Fi +- Breadboard-Friendly +- Wi-Fi +layout: download +manufacturer: Raspberry Pi +name: Pico W +tags: +- picow +- "\U0001F967\U0001F42E" +title: Pico W Download --- The Raspberry Pi foundation changed single-board computing [when they released the Raspberry Pi computer](https://www.raspberrypi.org/archives/723), now they're ready to do the same for microcontrollers with the release of the brand new **Raspberry Pi Pico W**. This low-cost microcontroller board features their powerful new chip, the **RP2040**, and all the fixin's to get started with IoT embedded electronics projects at a stress-free price. diff --git a/_board/raspberrypi_cm4.md b/_board/raspberrypi_cm4.md index 6cda050f1c..a6be432801 100644 --- a/_board/raspberrypi_cm4.md +++ b/_board/raspberrypi_cm4.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "raspberrypi_cm4" -title: "Raspberry Pi CM4 Download" -name: "Compute Module 4" -manufacturer: "Raspberry Pi" +board_id: raspberrypi_cm4 +board_image: raspberry_pi_cm4.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-4/" - - "https://www.adafruit.com/product/4782" - - "https://www.adafruit.com/product/4788" - - "https://www.adafruit.com/product/4790" - - "https://www.adafruit.com/product/4791" - - "https://www.adafruit.com/product/4982" -board_image: "raspberry_pi_cm4.jpg" -date_added: 2022-1-4 +- https://www.raspberrypi.com/products/compute-module-4/ +- https://www.adafruit.com/product/4782 +- https://www.adafruit.com/product/4788 +- https://www.adafruit.com/product/4790 +- https://www.adafruit.com/product/4791 +- https://www.adafruit.com/product/4982 +date_added: 2022-01-04 12:00:00 family: broadcom - +layout: download +manufacturer: Raspberry Pi +name: Compute Module 4 +title: Raspberry Pi CM4 Download --- **NOTE**: This build is alpha quality and is for experimental use. It is [missing features and has known issues](https://github.com/adafruit/circuitpython/labels/broadcom). diff --git a/_board/raspberrypi_cm4io.md b/_board/raspberrypi_cm4io.md index a2974c5ec0..8eb7f78efc 100644 --- a/_board/raspberrypi_cm4io.md +++ b/_board/raspberrypi_cm4io.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "raspberrypi_cm4io" -title: "Raspberry Pi CM4 IO Download" -name: "Compute Module 4 IO Board" -manufacturer: "Raspberry Pi" +board_id: raspberrypi_cm4io +board_image: raspberrypi_cm4io.jpg board_url: - - "https://www.raspberrypi.com/products/compute-module-4-io-board/" - - "https://www.adafruit.com/product/4787" -board_image: "raspberrypi_cm4io.jpg" -date_added: 2021-11-29 +- https://www.raspberrypi.com/products/compute-module-4-io-board/ +- https://www.adafruit.com/product/4787 +date_added: 2021-11-29 12:00:00 family: broadcom - +layout: download +manufacturer: Raspberry Pi +name: Compute Module 4 IO Board +title: Raspberry Pi CM4 IO Download --- **NOTE**: This build is alpha quality and is for experimental use. It is [missing features and has known issues](https://github.com/adafruit/circuitpython/labels/broadcom). diff --git a/_board/raspberrypi_pi4b.md b/_board/raspberrypi_pi4b.md index 9c3e27cd0f..9b8570fe8b 100644 --- a/_board/raspberrypi_pi4b.md +++ b/_board/raspberrypi_pi4b.md @@ -1,21 +1,19 @@ --- -layout: download -board_id: "raspberrypi_pi4b" -title: "Raspberry Pi 4 Model B Download" -name: "Pi 4 Model B" -manufacturer: "Raspberry Pi" +board_id: raspberrypi_pi4b +board_image: raspberry_pi_4b.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-4-model-b/" - - "https://www.adafruit.com/product/4295" - - "https://www.adafruit.com/product/4292" - - "https://www.adafruit.com/product/4296" - - "https://www.adafruit.com/product/4564" - - "https://www.adafruit.com/product/4297" - -board_image: "raspberry_pi_4b.jpg" -date_added: 2021-11-29 +- https://www.raspberrypi.com/products/raspberry-pi-4-model-b/ +- https://www.adafruit.com/product/4295 +- https://www.adafruit.com/product/4292 +- https://www.adafruit.com/product/4296 +- https://www.adafruit.com/product/4564 +- https://www.adafruit.com/product/4297 +date_added: 2021-11-29 12:00:00 family: broadcom - +layout: download +manufacturer: Raspberry Pi +name: Pi 4 Model B +title: Raspberry Pi 4 Model B Download --- **NOTE**: This build is alpha quality and is for experimental use. It is [missing features and has known issues](https://github.com/adafruit/circuitpython/labels/broadcom). diff --git a/_board/raspberrypi_zero.md b/_board/raspberrypi_zero.md index 50869b682b..edb61f60de 100644 --- a/_board/raspberrypi_zero.md +++ b/_board/raspberrypi_zero.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "raspberrypi_zero" -title: "Raspberry Pi Zero Download" -name: "Zero" -manufacturer: "Raspberry Pi" +board_id: raspberrypi_zero +board_image: raspberry_pi_zero.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-zero/" - - "https://www.adafruit.com/product/2885" - - "https://www.adafruit.com/product/3644" -board_image: "raspberry_pi_zero.jpg" -date_added: 2022-2-14 +- https://www.raspberrypi.com/products/raspberry-pi-zero/ +- https://www.adafruit.com/product/2885 +- https://www.adafruit.com/product/3644 +date_added: 2022-02-14 12:00:00 family: broadcom -features: - +features: null +layout: download +manufacturer: Raspberry Pi +name: Zero +title: Raspberry Pi Zero Download --- **NOTE**: This build is alpha quality and is for experimental use. It is [missing features and has known issues](https://github.com/adafruit/circuitpython/labels/broadcom). diff --git a/_board/raspberrypi_zero2w.md b/_board/raspberrypi_zero2w.md index 8c3277eeb6..27cb01b67e 100644 --- a/_board/raspberrypi_zero2w.md +++ b/_board/raspberrypi_zero2w.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "raspberrypi_zero2w" -title: "Raspberry Pi Zero 2 W Download" -name: "Zero 2 W" -manufacturer: "Raspberry Pi" +board_id: raspberrypi_zero2w +board_image: raspberry_pi_zero_2_w.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-zero-2-w/" - - "https://www.adafruit.com/product/5291" -board_image: "raspberry_pi_zero_2_w.jpg" -date_added: 2021-11-29 +- https://www.raspberrypi.com/products/raspberry-pi-zero-2-w/ +- https://www.adafruit.com/product/5291 +date_added: 2021-11-29 12:00:00 family: broadcom - +layout: download +manufacturer: Raspberry Pi +name: Zero 2 W +title: Raspberry Pi Zero 2 W Download --- **NOTE**: This build is alpha quality and is for experimental use. It is [missing features and has known issues](https://github.com/adafruit/circuitpython/labels/broadcom). diff --git a/_board/raspberrypi_zero_w.md b/_board/raspberrypi_zero_w.md index 95660eee8a..bf6050db35 100644 --- a/_board/raspberrypi_zero_w.md +++ b/_board/raspberrypi_zero_w.md @@ -1,22 +1,21 @@ --- -layout: download -board_id: "raspberrypi_zero_w" -title: "Raspberry Pi Zero W Download" -name: "Zero W" -manufacturer: "Raspberry Pi" +board_id: raspberrypi_zero_w +board_image: raspberry_pi_zero_w.jpg board_url: - - "https://www.raspberrypi.com/products/raspberry-pi-zero-w/" - - "https://www.adafruit.com/product/3400" - - "https://www.adafruit.com/product/3408" - - "https://www.adafruit.com/product/3409" - - "https://www.adafruit.com/product/3410" - - "https://www.adafruit.com/product/3411" - - "https://www.adafruit.com/product/3414" - - "https://www.adafruit.com/product/3415" -board_image: "raspberry_pi_zero_w.jpg" -date_added: 2022-01-07 +- https://www.raspberrypi.com/products/raspberry-pi-zero-w/ +- https://www.adafruit.com/product/3400 +- https://www.adafruit.com/product/3408 +- https://www.adafruit.com/product/3409 +- https://www.adafruit.com/product/3410 +- https://www.adafruit.com/product/3411 +- https://www.adafruit.com/product/3414 +- https://www.adafruit.com/product/3415 +date_added: 2022-01-07 12:00:00 family: broadcom - +layout: download +manufacturer: Raspberry Pi +name: Zero W +title: Raspberry Pi Zero W Download --- **NOTE**: This build is alpha quality and is for experimental use. It is [missing features and has known issues](https://github.com/adafruit/circuitpython/labels/broadcom). diff --git a/_board/raytac_mdbt50q-db-40.md b/_board/raytac_mdbt50q-db-40.md index 18595a6181..2cea2be5c4 100644 --- a/_board/raytac_mdbt50q-db-40.md +++ b/_board/raytac_mdbt50q-db-40.md @@ -1,18 +1,17 @@ --- -layout: download -board_id: "raytac_mdbt50q-db-40" -title: "MDBT50Q-DB-40 Download" -name: "MDBT50Q-DB-40" -manufacturer: "Raytac Corporation" +board_id: raytac_mdbt50q-db-40 +board_image: raytac_mdbt50q-db-40.jpg board_url: - - "https://www.raytac.com/product/ins.php?index_id=81" -board_image: "raytac_mdbt50q-db-40.jpg" -date_added: 2020-07-27 -family: nrf52840 +- https://www.raytac.com/product/ins.php?index_id=81 bootloader_id: raytac_mdbt50q_db_40 +date_added: 2020-07-27 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - +- Bluetooth/BTLE +layout: download +manufacturer: Raytac Corporation +name: MDBT50Q-DB-40 +title: MDBT50Q-DB-40 Download --- MDBT50Q-DB demo board is designed for quick testing and debugging without building your own board. The board is only available with MDBT50Q-1MV2 (Chip Antenna) module. diff --git a/_board/raytac_mdbt50q-rx.md b/_board/raytac_mdbt50q-rx.md index 065e6f9dee..04a2cfa516 100644 --- a/_board/raytac_mdbt50q-rx.md +++ b/_board/raytac_mdbt50q-rx.md @@ -1,19 +1,18 @@ --- -layout: download -board_id: "raytac_mdbt50q-rx" -title: "MDBT50Q-RX Download" -name: "MDBT50Q-RX" -manufacturer: "Raytac Corporation" +board_id: raytac_mdbt50q-rx +board_image: raytac_mdbt50q-rx.jpg board_url: - - "https://www.raytac.com/product/ins.php?index_id=89" - - "https://www.adafruit.com/product/5199" -board_image: "raytac_mdbt50q-rx.jpg" -date_added: 2021-08-13 -family: nrf52840 +- https://www.raytac.com/product/ins.php?index_id=89 +- https://www.adafruit.com/product/5199 bootloader_id: raytac_mdbt50q_rx +date_added: 2021-08-13 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE - +- Bluetooth/BTLE +layout: download +manufacturer: Raytac Corporation +name: MDBT50Q-RX +title: MDBT50Q-RX Download --- This USB dongle/key type thing is a little unusual - it *isn't* a BLE adapter that you plug into a computer to add wireless capability. (If you do want something like that, our [Bluetooth 4.0 USB Module](https://www.adafruit.com/products/1327) will do the job nicely.) Instead, this is basically a minimal nRF52840 wireless microcontroller dev board on a stick. You can program it in Arduino or CircuitPython and it's completely standalone. This could be useful for some situations where you want to have a standalone BLE device that communicates with a USB host *but without dealing with the operating system's BLE stack*. diff --git a/_board/robohatmm1_m4.md b/_board/robohatmm1_m4.md index d467732d4e..ffe5319872 100644 --- a/_board/robohatmm1_m4.md +++ b/_board/robohatmm1_m4.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "robohatmm1_m4" -title: "Robo HAT MM1 Download" -name: "Robo HAT MM1 M4" -manufacturer: "Robotics Masters" +board_id: robohatmm1_m4 +board_image: robohatmm1.jpg board_url: - - "https://www.crowdsupply.com/robotics-masters/robo-hat-mm1" -board_image: "robohatmm1.jpg" -date_added: 2019-7-27 -family: atmel-samd +- https://www.crowdsupply.com/robotics-masters/robo-hat-mm1 bootloader_id: robohatmm1_m4 +date_added: 2019-07-27 12:00:00 +family: atmel-samd features: - - Robotics +- Robotics +layout: download +manufacturer: Robotics Masters +name: Robo HAT MM1 M4 +title: Robo HAT MM1 Download --- The Robotics Masters Robo HAT MM1 is an open source robotics controller board for Raspberry Pi. It is education focused but works in many applications. The Robo HAT provides all the hardware you need in one simple, easy-to-use form factor. It removes the initial barriers to starting any robotics project. diff --git a/_board/sam32.md b/_board/sam32.md index 60fa931a83..e9a2eaf06e 100644 --- a/_board/sam32.md +++ b/_board/sam32.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "sam32" -title: "SAM32 Download" -name: "SAM32" -manufacturer: "Max Holliday" +board_id: sam32 +board_image: sam32.jpg board_url: - - "https://github.com/maholli/SAM32" -board_image: "sam32.jpg" -date_added: 2019-4-5 -family: atmel-samd +- https://github.com/maholli/SAM32 bootloader_id: sam32 +date_added: 2019-04-05 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - Wi-Fi - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Wi-Fi +- Breadboard-Friendly +layout: download +manufacturer: Max Holliday +name: SAM32 +title: SAM32 Download --- An open source "swiss army knife" for hardware and IoT applications. This board is designed for quickly prototyping a wide range of makerspace, university, and science-related projects. diff --git a/_board/same54_xplained.md b/_board/same54_xplained.md index 4307e679aa..ae15e54211 100644 --- a/_board/same54_xplained.md +++ b/_board/same54_xplained.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "same54_xplained" -title: "SAM E54 Xplained Pro Download" -name: "SAM E54 Xplained Pro" -manufacturer: "Microchip" +board_id: same54_xplained +board_image: same54_xplained.jpg board_url: - - "https://www.microchip.com/DevelopmentTools/ProductDetails/ATSAME54-XPRO" -board_image: "same54_xplained.jpg" -date_added: 2020-6-28 -family: atmel-samd +- https://www.microchip.com/DevelopmentTools/ProductDetails/ATSAME54-XPRO bootloader_id: same54_xplained +date_added: 2020-06-28 12:00:00 +family: atmel-samd +layout: download +manufacturer: Microchip +name: SAM E54 Xplained Pro +title: SAM E54 Xplained Pro Download --- The SAM E54 Xplained Pro evaluation kit is a hardware platform for evaluating the ATSAME54P20A microcontroller (MCU). Supported by the Studio integrated development platform, the kit provides easy access to the features of the ATSAME54P20A and explains how to integrate the device into a custom design. diff --git a/_board/seeed_xiao_esp32c3.md b/_board/seeed_xiao_esp32c3.md index a0fd2c5051..b7b2f1297c 100644 --- a/_board/seeed_xiao_esp32c3.md +++ b/_board/seeed_xiao_esp32c3.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "seeed_xiao_esp32c3" -title: "Seeed Studio XIAO ESP32C3 Download" -name: "Seeed Studio XIAO ESP32C3" -manufacturer: "Seeed Studio" +board_id: seeed_xiao_esp32c3 +board_image: seeed_xiao_esp32c3.jpg board_url: - - "https://www.seeedstudio.com/Seeed-XIAO-ESP32C3-p-5431.html" -board_image: "seeed_xiao_esp32c3.jpg" -date_added: 2022-8-22 +- https://www.seeedstudio.com/Seeed-XIAO-ESP32C3-p-5431.html +date_added: 2022-08-22 12:00:00 family: esp32c3 features: - - Breadboard-Friendly - - Xiao / QTPy Form Factor - - USB-C - - Wi-Fi - - Battery Charging +- Breadboard-Friendly +- Xiao / QTPy Form Factor +- USB-C +- Wi-Fi +- Battery Charging +layout: download +manufacturer: Seeed Studio +name: Seeed Studio XIAO ESP32C3 +title: Seeed Studio XIAO ESP32C3 Download --- Seeed Studio XIAO ESP32C3 featuring **ESP32C3** carries a complete Wi-Fi system along with Bluetooth Low Energy function. With its exquisite design and **WiFi+BT** ability, it's perfect for various **IoT controlling scenarios** and **complex carriable applications**. @@ -44,4 +44,3 @@ Being a number to the Seeed Studio XIAO family, the board deservedly maintains t ## Getting Started Since the ESP32C3 chip does not have support for native USB, you won't see a CIRCUITPY drive appear when you plug it into your computer. [Here is a complete guide](https://learn.adafruit.com/circuitpython-with-esp32-quick-start/overview) for getting Circuitpython installed onto an ESP32C3 device, and for enabling [Web Workflow](https://docs.circuitpython.org/en/latest/docs/workflows.html#web) so you can load your Python code onto it. - diff --git a/_board/seeeduino_wio_terminal.md b/_board/seeeduino_wio_terminal.md index a7570c2cb6..85d83e1f1b 100644 --- a/_board/seeeduino_wio_terminal.md +++ b/_board/seeeduino_wio_terminal.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "seeeduino_wio_terminal" -title: "Seeeduino Wio Terminal Download" -name: "Seeeduino Wio Terminal" -manufacturer: "Seeed Studio" +board_id: seeeduino_wio_terminal +board_image: seeeduino_wio_terminal.jpg board_url: - - "https://www.seeedstudio.com/Wio-Terminal-p-4509.html" - - "https://www.adafruit.com/product/4707" -board_image: "seeeduino_wio_terminal.jpg" -date_added: 2020-7-3 +- https://www.seeedstudio.com/Wio-Terminal-p-4509.html +- https://www.adafruit.com/product/4707 +date_added: 2020-07-03 12:00:00 family: atmel-samd features: - - Display - - USB-C +- Display +- USB-C +layout: download +manufacturer: Seeed Studio +name: Seeeduino Wio Terminal +title: Seeeduino Wio Terminal Download --- Instead of being a single embedded functional module, **Wio Terminal** is more of a complete system equipped with Screen + Development Board + Input/Output Interface + Enclosure. Because it uses the SAMD51, it is compatible with Arduino and CircuitPython - using the same Arduino & CircuitPython core we have developed here at Adafruit! diff --git a/_board/seeeduino_xiao.md b/_board/seeeduino_xiao.md index 9ce6c9b8f3..b86d7a2aae 100644 --- a/_board/seeeduino_xiao.md +++ b/_board/seeeduino_xiao.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "seeeduino_xiao" -title: "Seeed Studio XIAO SAMD21 Download" -name: "Seeed Studio XIAO SAMD21" -manufacturer: "Seeed Studio" +board_id: seeeduino_xiao +board_image: seeeduino_xiao.jpg board_url: - - "https://wiki.seeedstudio.com/Seeeduino-XIAO/" -board_image: "seeeduino_xiao.jpg" -date_added: 2020-1-17 -family: atmel-samd +- https://wiki.seeedstudio.com/Seeeduino-XIAO/ bootloader_id: XIAO_m0 - +date_added: 2020-01-17 12:00:00 +family: atmel-samd features: - - USB-C - - Breadboard-Friendly - - Xiao / QTPy Form Factor +- USB-C +- Breadboard-Friendly +- Xiao / QTPy Form Factor +layout: download +manufacturer: Seeed Studio +name: Seeed Studio XIAO SAMD21 +title: Seeed Studio XIAO SAMD21 Download --- Seeed Studio XIAO SAMD21 is a minimal, low-cost board that uses the Atmel ATSAMD21G18, a powerful 32-bit ARM Cortex®-M0+ processor running at 48MHz with 256 KB Flash and 32 KB SRAM. The board is 20 mm x 17.5 mm in size which is perfect for wearable devices and small projects. It has multiple interfaces including DAC output, SWD Bonding pad interface, I2C, UART and SPI interfaces. It's compatible with both Arduino IDE and CircuitPython and uses a USB-C connector. diff --git a/_board/seeeduino_xiao_kb.md b/_board/seeeduino_xiao_kb.md index dfb214f386..f909fd185a 100644 --- a/_board/seeeduino_xiao_kb.md +++ b/_board/seeeduino_xiao_kb.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "seeeduino_xiao_kb" -title: "Seeeduino XIAO Download" -name: "Seeeduino XIAO - Keyboard Optimized" -manufacturer: "Seeed Studio" +board_id: seeeduino_xiao_kb +board_image: seeeduino_xiao.jpg board_url: - - "https://wiki.seeedstudio.com/Seeeduino-XIAO/" -board_image: "seeeduino_xiao.jpg" -date_added: 2021-10-08 -family: atmel-samd +- https://wiki.seeedstudio.com/Seeeduino-XIAO/ bootloader_id: XIAO_m0 - +date_added: 2021-10-08 12:00:00 +family: atmel-samd features: - - USB-C - - Breadboard-Friendly - - Xiao / QTPy Form Factor +- USB-C +- Breadboard-Friendly +- Xiao / QTPy Form Factor +layout: download +manufacturer: Seeed Studio +name: Seeeduino XIAO - Keyboard Optimized +title: Seeeduino XIAO Download --- # Keyboard Optimized diff --git a/_board/seeeduino_xiao_rp2040.md b/_board/seeeduino_xiao_rp2040.md index 547598150b..a581312f8e 100644 --- a/_board/seeeduino_xiao_rp2040.md +++ b/_board/seeeduino_xiao_rp2040.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "seeeduino_xiao_rp2040" -title: "Seeed Studio XIAO RP2040 Download" -name: "Seeed Studio XIAO RP2040" -manufacturer: "Seeed Studio" +board_id: seeeduino_xiao_rp2040 +board_image: seeeduino_xiao_rp2040.jpg board_url: - - "https://www.seeedstudio.com/XIAO-RP2040-v1-0-p-5026.html" -board_image: "seeeduino_xiao_rp2040.jpg" -date_added: 2022-1-4 +- https://www.seeedstudio.com/XIAO-RP2040-v1-0-p-5026.html +date_added: 2022-01-04 12:00:00 family: raspberrypi features: - - Breadboard-Friendly - - Xiao / QTPy Form Factor - - USB-C +- Breadboard-Friendly +- Xiao / QTPy Form Factor +- USB-C +layout: download +manufacturer: Seeed Studio +name: Seeed Studio XIAO RP2040 +title: Seeed Studio XIAO RP2040 Download --- Seeed Studio XIAO RP2040 is a microcontroller using the Raspberry RP2040 chip. It runs at up to 133 MHz, is built with rich interfaces in a tiny thumb size, and fully supports Arduino, MicroPython, and CircuitPython. diff --git a/_board/sensebox_mcu.md b/_board/sensebox_mcu.md index 832f27dbce..aee781a3d2 100644 --- a/_board/sensebox_mcu.md +++ b/_board/sensebox_mcu.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "sensebox_mcu" -title: "senseBox MCU Download" -name: "senseBox MCU" -manufacturer: "senseBox" +board_id: sensebox_mcu +board_image: sensebox_mcu.jpg board_url: - - "https://docs.sensebox.de/hardware/allgemein-sensebox-mcu/" -board_image: "sensebox_mcu.jpg" -date_added: 2021-4-12 -family: atmel-samd +- https://docs.sensebox.de/hardware/allgemein-sensebox-mcu/ bootloader_id: sensebox-mcu +date_added: 2021-04-12 12:00:00 +family: atmel-samd features: - - USB-C +- USB-C +layout: download +manufacturer: senseBox +name: senseBox MCU +title: senseBox MCU Download --- The senseBox-microcontroller (MCU) is specially designed and developed for the [senseBox project](https://sensebox.de/en/). The three main advantages and characteristics of the microcontroller are: expandability, speed, and efficiency. diff --git a/_board/sensebox_mcu_esp32s2.md b/_board/sensebox_mcu_esp32s2.md index 9ea0cbef71..c87c078fb0 100644 --- a/_board/sensebox_mcu_esp32s2.md +++ b/_board/sensebox_mcu_esp32s2.md @@ -1,26 +1,23 @@ --- -layout: download -board_id: "sensebox_mcu_esp32s2" -title: "senseBox MCU-S2 Download" -name: "senseBox MCU-S2" -manufacturer: "senseBox" -board_url: - - "https://sensebox.de/de/products-boards" -board_image: "sensebox_mcu_esp32s2.jpg" -date_added: 2024-2-21 -downloads_display: true blinka: false -download_instructions: "" -# Features are tags; they should be limited to the items in this list and spelled exactly the same. -# Include only the features your board supports, and remove these comment lines before committing. -# Breadboard-Friendly is a parallel pin layout with minimal non-critical perpendicular pins -family: esp32s2 # See _data/bootloaders.json +board_id: sensebox_mcu_esp32s2 +board_image: sensebox_mcu_esp32s2.jpg +board_url: +- https://sensebox.de/de/products-boards bootloader_id: sensebox_mcu_esp32s2 +date_added: 2024-02-21 12:00:00 +download_instructions: '' +downloads_display: true +family: esp32s2 features: - - Battery Charging - - STEMMA QT/QWIIC - - Wi-Fi - - USB-C +- Battery Charging +- STEMMA QT/QWIIC +- Wi-Fi +- USB-C +layout: download +manufacturer: senseBox +name: senseBox MCU-S2 +title: senseBox MCU-S2 Download --- The new senseBox MCU-S2 with ESP32S2 core! diff --git a/_board/serpente.md b/_board/serpente.md index c0efbeb5c0..b69fef4510 100644 --- a/_board/serpente.md +++ b/_board/serpente.md @@ -1,23 +1,22 @@ --- -layout: download -board_id: "serpente" -title: "Serpente Download" -name: "Serpente" -manufacturer: "arturo182" +blinka: false +board_id: serpente +board_image: serpente.jpg board_url: - - "https://serpente.solder.party/" - - "https://www.adafruit.com/product/4513" - - "https://www.adafruit.com/product/4514" -board_image: "serpente.jpg" -date_added: 2019-9-17 -family: atmel-samd +- https://serpente.solder.party/ +- https://www.adafruit.com/product/4513 +- https://www.adafruit.com/product/4514 bootloader_id: serpente +date_added: 2019-09-17 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" - +family: atmel-samd features: - - USB-C +- USB-C +layout: download +manufacturer: arturo182 +name: Serpente +title: Serpente Download --- There are two Serpente boards, they are both virtually the same, except for the USB connector. The standard Serpente board contains a USB-C connector, and the Serpente Plug uses the board itself as a Type-A USB plug. diff --git a/_board/shirtty.md b/_board/shirtty.md index aa6901e43f..88b371a93d 100644 --- a/_board/shirtty.md +++ b/_board/shirtty.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "shirtty" -title: "shIRtty Board Download" -name: "shIRtty Board" -manufacturer: "Sarfata" +board_id: shirtty +board_image: shirtty.jpg board_url: - - "https://github.com/sarfata/shirtty-addon" -board_image: "shirtty.jpg" -date_added: 2019-12-11 -family: atmel-samd +- https://github.com/sarfata/shirtty-addon bootloader_id: shirtty +date_added: 2019-12-11 12:00:00 +family: atmel-samd +layout: download +manufacturer: Sarfata +name: shIRtty Board +title: shIRtty Board Download --- A CircuitPython compatible, SAMD21 shitty addon with IR transmit/receive and RGB LED. diff --git a/_board/silabs_devkit_xg24_brd2601b.md b/_board/silabs_devkit_xg24_brd2601b.md index c2bfbd3d77..10331384f2 100644 --- a/_board/silabs_devkit_xg24_brd2601b.md +++ b/_board/silabs_devkit_xg24_brd2601b.md @@ -1,20 +1,21 @@ --- -layout: download -board_id: "devkit_xg24_brd2601b" -title: "EFR32xG24 Dev Kit Download" -name: "EFR32xG24 Dev Kit" -manufacturer: "Silicon Labs" +board_id: devkit_xg24_brd2601b +board_image: silabs_devkit_xg24_brd2601b.jpg board_url: - - "https://www.silabs.com/development-tools/wireless/efr32xg24-dev-kit?tab=overview" -board_image: "silabs_devkit_xg24_brd2601b.jpg" -date_added: 2023-04-20 +- https://www.silabs.com/development-tools/wireless/efr32xg24-dev-kit?tab=overview +date_added: 2023-04-20 12:00:00 family: silabs features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - STEMMA QT/QWIIC +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- STEMMA QT/QWIIC +layout: download +manufacturer: Silicon Labs +name: EFR32xG24 Dev Kit +title: EFR32xG24 Dev Kit Download --- + The xG24 Dev Kit is a low-cost, small form factor development and evaluation platform for the EFR32MG24 Wireless Gecko System-on-Chip diff --git a/_board/silabs_explorerkit_xg24_brd2703a.md b/_board/silabs_explorerkit_xg24_brd2703a.md index de719276c1..7f6e2975b1 100644 --- a/_board/silabs_explorerkit_xg24_brd2703a.md +++ b/_board/silabs_explorerkit_xg24_brd2703a.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "explorerkit_xg24_brd2703a" -title: "EFR32xG24 Explorer Kit Download" -name: "EFR32xG24 Explorer Kit" -manufacturer: "Silicon Labs" +board_id: explorerkit_xg24_brd2703a +board_image: silabs_explorerkit_xg24_brd2703a.jpg board_url: - - "https://www.silabs.com/development-tools/wireless/efr32xg24-explorer-kit?tab=overview" -board_image: "silabs_explorerkit_xg24_brd2703a.jpg" -date_added: 2023-04-20 +- https://www.silabs.com/development-tools/wireless/efr32xg24-explorer-kit?tab=overview +date_added: 2023-04-20 12:00:00 family: silabs - features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - STEMMA QT/QWIIC - - USB-C +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: Silicon Labs +name: EFR32xG24 Explorer Kit +title: EFR32xG24 Explorer Kit Download --- + The EFR32xG24 Explorer Kit is an ultra-low-cost, small form factor development and evaluation platform for the EFR32MG24 Wireless Gecko System-on-Chip. diff --git a/_board/silicognition-m4-shim.md b/_board/silicognition-m4-shim.md index 757e1a2cea..9d448635d2 100644 --- a/_board/silicognition-m4-shim.md +++ b/_board/silicognition-m4-shim.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "silicognition-m4-shim" -title: "M4-Shim Download" -name: "M4-Shim" -manufacturer: "Silicognition LLC" +board_id: silicognition-m4-shim +board_image: silicognition-m4-shim.jpg board_url: - - "https://github.com/xorbit/M4-Shim" -board_image: "silicognition-m4-shim.jpg" -date_added: 2021-2-19 -family: atmel-samd +- https://github.com/xorbit/M4-Shim bootloader_id: silicognition-m4-shim +date_added: 2021-02-19 12:00:00 +family: atmel-samd features: - - Feather-Compatible - - Breadboard-Friendly +- Feather-Compatible +- Breadboard-Friendly +layout: download +manufacturer: Silicognition LLC +name: M4-Shim +title: M4-Shim Download --- This board is a electrically a clone of the [Adafruit Feather M4 Express](https://www.adafruit.com/product/3857), but physically optimized to fit on top of the [PoE-FeatherWing](https://www.crowdsupply.com/silicognition/poe-featherwing), filling the empty space around the RJ45 and flyback transformer and allowing the creation of extremely compact Power over Ethernet systems. @@ -25,4 +25,4 @@ Just like the original Feather M4 Express, it is powered by the ATSAMD51J19 - wi ## Purchase * [Amazon](https://www.amazon.com/M4-Shim-Feather-PoE-FeatherWing-Ultra-Compact-Vertical/dp/B0971PKDV7/) -* [Tindie](https://www.tindie.com/products/silicognition/m4-shim/) \ No newline at end of file +* [Tindie](https://www.tindie.com/products/silicognition/m4-shim/) diff --git a/_board/silicognition_rp2040_shim.md b/_board/silicognition_rp2040_shim.md index dd3b657ba3..35260ed20f 100644 --- a/_board/silicognition_rp2040_shim.md +++ b/_board/silicognition_rp2040_shim.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "silicognition_rp2040_shim" -title: "RP2040-Shim Download" -name: "RP2040-Shim" -manufacturer: "Silicognition LLC" +board_id: silicognition_rp2040_shim +board_image: silicognition-rp2040-shim.jpg board_url: - - "https://github.com/xorbit/RP2040-Shim" -board_image: "silicognition-rp2040-shim.jpg" -date_added: 2022-7-1 +- https://github.com/xorbit/RP2040-Shim +date_added: 2022-07-01 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Breadboard-Friendly +- Feather-Compatible +- Breadboard-Friendly +layout: download +manufacturer: Silicognition LLC +name: RP2040-Shim +title: RP2040-Shim Download --- This board is an alternative to the [Silicognition M4-Shim](https://www.amazon.com/M4-Shim-Feather-PoE-FeatherWing-Ultra-Compact-Vertical/dp/B0971PKDV7/), and just like that board it is specifically made to fit on top of the [PoE-FeatherWing](https://www.amazon.com/Silicognition-PoE-FeatherWing-Ethernet-802-3at-Feather/dp/B08KTVD7BR/), filling the empty space around the RJ45 and flyback transformer and allowing the creation of extremely compact Power over Ethernet systems. diff --git a/_board/simmel.md b/_board/simmel.md index 79ea9cc2c4..693f6937a0 100644 --- a/_board/simmel.md +++ b/_board/simmel.md @@ -1,17 +1,16 @@ --- -layout: download -board_id: "simmel" -title: "Simmel Download" -name: "Simmel Board" -manufacturer: "Simmel Project" +board_id: simmel +board_image: simmel.jpg board_url: - - "https://github.com/simmel-project/frontpage" -board_image: "simmel.jpg" -date_added: 2020-04-29 +- https://github.com/simmel-project/frontpage +date_added: 2020-04-29 12:00:00 family: nrf52840 - features: - - USB-C +- USB-C +layout: download +manufacturer: Simmel Project +name: Simmel Board +title: Simmel Download --- Simmel is a platform that enables COVID-19 contact tracing while preserving user privacy. It is a wearable hardware beacon and scanner which can broadcast and record randomized user IDs. Contacts are stored within the wearable device, so you retain full control of your trace history until you choose to share it. diff --git a/_board/smartbeedesigns_bee_data_logger.md b/_board/smartbeedesigns_bee_data_logger.md index 892199bcc7..62d48af210 100644 --- a/_board/smartbeedesigns_bee_data_logger.md +++ b/_board/smartbeedesigns_bee_data_logger.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "smartbeedesigns_bee_data_logger" -title: "Bee Data Logger Download" -name: "Bee Data Logger" -manufacturer: "Smart Bee Designs" +board_id: smartbeedesigns_bee_data_logger +board_image: smartbeedesigns_bee-data-logger.jpg board_url: - - "https://github.com/strid3r21/Bee-Data-Logger" -board_image: "smartbeedesigns_bee-data-logger.jpg" -date_added: 2023-06-13 +- https://github.com/strid3r21/Bee-Data-Logger +date_added: 2023-06-13 12:00:00 family: esp32s3 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Smart Bee Designs +name: Bee Data Logger +title: Bee Data Logger Download --- This is a ESP32-S3 data logger board with built in RTC and SD card reader as well as two QWIIC connectors, RGB LED, lipo charging circuit and voltage dividers. diff --git a/_board/smartbeedesigns_bee_motion_s3.md b/_board/smartbeedesigns_bee_motion_s3.md index ece8f6885b..287c63c584 100644 --- a/_board/smartbeedesigns_bee_motion_s3.md +++ b/_board/smartbeedesigns_bee_motion_s3.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "smartbeedesigns_bee_motion_s3" -title: "Bee Motion S3 Download" -name: "Bee Motion S3" -manufacturer: "Smart Bee Designs" +board_id: smartbeedesigns_bee_motion_s3 +board_image: smartbeedesigns_bee_motion_s3.jpg board_url: - - "http://github.com/strid3r21/BeeMotionS3/" -board_image: "smartbeedesigns_bee_motion_s3.jpg" -date_added: 2022-08-22 +- http://github.com/strid3r21/BeeMotionS3/ +date_added: 2022-08-22 12:00:00 family: esp32s3 features: - - Wi-Fi - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Wi-Fi +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Smart Bee Designs +name: Bee Motion S3 +title: Bee Motion S3 Download --- This is a ESP32-S3 with a built in PIR motion sensor, RGB LED, lipo charging circuit and voltage dividers. diff --git a/_board/smartbeedesigns_bee_s3.md b/_board/smartbeedesigns_bee_s3.md index 482731bd52..aa22c2165c 100644 --- a/_board/smartbeedesigns_bee_s3.md +++ b/_board/smartbeedesigns_bee_s3.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "smartbeedesigns_bee_s3" -title: "Bee S3 Download" -name: "Bee S3" -manufacturer: "Smart Bee Designs" +board_id: smartbeedesigns_bee_s3 +board_image: smartbeedesigns_bee_s3.jpg board_url: - - "http://github.com/strid3r21/BeeS3/" -board_image: "smartbeedesigns_bee_s3.jpg" -date_added: 2022-8-22 +- http://github.com/strid3r21/BeeS3/ +date_added: 2022-08-22 12:00:00 family: esp32s3 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Smart Bee Designs +name: Bee S3 +title: Bee S3 Download --- The Bee S3 is a ultra low powered deepsleep ESP32-S3 development board @@ -26,4 +26,4 @@ The Bee S3 is a ultra low powered deepsleep ESP32-S3 development board ## Purchase * [Tindie](https://www.tindie.com/products/smartbee/bee-s3-esp32-s3/) -* [Lectronz](https://www.lectronz.com/products/bee-s3-esp32-s3) \ No newline at end of file +* [Lectronz](https://www.lectronz.com/products/bee-s3-esp32-s3) diff --git a/_board/snekboard.md b/_board/snekboard.md index 6b225d45a2..d38ce0ee80 100644 --- a/_board/snekboard.md +++ b/_board/snekboard.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "snekboard" -title: "Snekboard Download" -name: "Snekboard" -manufacturer: "keithp.com" +board_id: snekboard +board_image: snekboard.jpg board_url: - - "https://keithp.com/snek/snekboard" -board_image: "snekboard.jpg" -date_added: 2019-7-30 -family: atmel-samd +- https://keithp.com/snek/snekboard bootloader_id: snekboard +date_added: 2019-07-30 12:00:00 +family: atmel-samd features: - - Battery Charging +- Battery Charging +layout: download +manufacturer: keithp.com +name: Snekboard +title: Snekboard Download --- Snekboard is designed to hook up to Lego Power Functions motors and diff --git a/_board/solderparty_bbq20kbd.md b/_board/solderparty_bbq20kbd.md index 38fcdcdf35..8b7697087e 100644 --- a/_board/solderparty_bbq20kbd.md +++ b/_board/solderparty_bbq20kbd.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "solderparty_bbq20kbd" -title: "BB Q20 Keyboard with trackpad Download" -name: "BB Q20 Keyboard with trackpad" -manufacturer: "Solder Party" +blinka: false +board_id: solderparty_bbq20kbd +board_image: solderparty_bbq20kbd.jpg board_url: - - "https://www.solder.party/docs/bbq20kbd/" -board_image: "solderparty_bbq20kbd.jpg" -date_added: 2022-08-20 -family: raspberrypi +- https://www.solder.party/docs/bbq20kbd/ bootloader_id: solderparty__bbq20kbd +date_added: 2022-08-20 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" +family: raspberrypi features: - - USB-C - - STEMMA QT/QWIIC +- USB-C +- STEMMA QT/QWIIC +layout: download +manufacturer: Solder Party +name: BB Q20 Keyboard with trackpad +title: BB Q20 Keyboard with trackpad Download --- A BB Q20 Keyboard in USB/PMOD/Qwiic format with a injection molded clear plastic case. diff --git a/_board/solderparty_rp2040_stamp.md b/_board/solderparty_rp2040_stamp.md index fcfbbee8ff..dac596b1a2 100644 --- a/_board/solderparty_rp2040_stamp.md +++ b/_board/solderparty_rp2040_stamp.md @@ -1,21 +1,20 @@ --- -layout: download -board_id: "solderparty_rp2040_stamp" -title: "RP2040 Stamp Download" -name: "RP2040 Stamp" -manufacturer: "Solder Party" +blinka: false +board_id: solderparty_rp2040_stamp +board_image: solderparty_rp2040_stamp.jpg board_url: - - "https://www.solder.party/docs/rp2040-stamp/" -board_image: "solderparty_rp2040_stamp.jpg" -date_added: 2021-11-15 -family: raspberrypi +- https://www.solder.party/docs/rp2040-stamp/ bootloader_id: solderparty_rp2040_stamp +date_added: 2021-11-15 12:00:00 +download_instructions: '' downloads_display: true -blinka: false -download_instructions: "" - +family: raspberrypi features: - - Battery Charging +- Battery Charging +layout: download +manufacturer: Solder Party +name: RP2040 Stamp +title: RP2040 Stamp Download --- The Stamp was created to allow you to use the **Raspberry Pi RP2040** in your designs without having to solder small-pitch QFN chips or worry about lots of external circuitry. diff --git a/_board/sparkfun_lumidrive.md b/_board/sparkfun_lumidrive.md index 8096c92e98..62aee94fcc 100644 --- a/_board/sparkfun_lumidrive.md +++ b/_board/sparkfun_lumidrive.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "sparkfun_lumidrive" -title: "LumiDrive Download" -name: "LumiDrive" -manufacturer: "SparkFun" +board_id: sparkfun_lumidrive +board_image: sparkfun_lumidrive_01.jpg board_url: - - "https://www.sparkfun.com/products/14779" -board_image: "sparkfun_lumidrive_01.jpg" -date_added: 2019-3-9 +- https://www.sparkfun.com/products/14779 +date_added: 2019-03-09 12:00:00 family: atmel-samd features: - - Battery Charging - - USB-C +- Battery Charging +- USB-C +layout: download +manufacturer: SparkFun +name: LumiDrive +title: LumiDrive Download --- The LumiDrive LED Driver is SparkFun's foray into all things Python on micro-controllers. With the SparkFun LumiDrive you will be able to control and personalize a whole strand of APA102s directly from the board itself. We've broken out a number of analog and digital pins from the on board SAMD21G-AU microcontroller to incorporate your own external buttons, switches, and other interfaces to interact with your addressable LED strip. diff --git a/_board/sparkfun_micromod_rp2040.md b/_board/sparkfun_micromod_rp2040.md index 210e6b9c43..635e76fd86 100644 --- a/_board/sparkfun_micromod_rp2040.md +++ b/_board/sparkfun_micromod_rp2040.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "sparkfun_micromod_rp2040" -title: "MicroMod RP2040 Processor Download" -name: "MicroMod RP2040 Processor" -manufacturer: "SparkFun" +board_id: sparkfun_micromod_rp2040 +board_image: sparkfun_micromod_rp2040.jpg board_url: - - "https://www.sparkfun.com/products/17720" -board_image: "sparkfun_micromod_rp2040.jpg" -date_added: 2021-5-26 +- https://www.sparkfun.com/products/17720 +date_added: 2021-05-26 12:00:00 family: raspberrypi -features: +features: null +layout: download +manufacturer: SparkFun +name: MicroMod RP2040 Processor +title: MicroMod RP2040 Processor Download --- The SparkFun MicroMod Pi RP2040 Processor Board is a low-cost, high-performance board with flexible digital interfaces featuring the Raspberry Pi Foundation's RP2040 microcontroller. With the MicroMod M.2 connector, connecting your MicroMod Pi RP2040 Processor Board is a breeze. Simply match up the key on your processor's beveled edge connector to the key on the M.2 connector and secure it with a screw (included with all Carrier Boards). diff --git a/_board/sparkfun_nrf52840_micromod.md b/_board/sparkfun_nrf52840_micromod.md index 39ebf1b11b..181bc221be 100644 --- a/_board/sparkfun_nrf52840_micromod.md +++ b/_board/sparkfun_nrf52840_micromod.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "sparkfun_nrf52840_micromod" -title: "MicroMod nRF52840 Processor Download" -name: "MicroMod nRF52840 Processor" -manufacturer: "SparkFun" +board_id: sparkfun_nrf52840_micromod +board_image: sparkfun_nrf52840_micromod.jpg board_url: - - "https://www.sparkfun.com/products/16984" -board_image: "sparkfun_nrf52840_micromod.jpg" -date_added: 2021-4-6 -family: nrf52840 +- https://www.sparkfun.com/products/16984 bootloader_id: sparkfun_nrf52840_micromod +date_added: 2021-04-06 12:00:00 +family: nrf52840 features: - - Bluetooth/BTLE +- Bluetooth/BTLE +layout: download +manufacturer: SparkFun +name: MicroMod nRF52840 Processor +title: MicroMod nRF52840 Processor Download --- Featuring the nRF52840 SoC from Nordic Semiconductor, the SparkFun MicroMod nRF52840 Processor offers a powerful combination of ARM Cortex-M4 CPU and 2.4 GHz Bluetooth transceiver in the MicroMod form-factor with the M.2 MicroMod connector to allow you to plug in a compatible MicroMod Carrier Board with any number of peripherals. diff --git a/_board/sparkfun_nrf52840_mini.md b/_board/sparkfun_nrf52840_mini.md index 7fb638c2c0..3355398e40 100644 --- a/_board/sparkfun_nrf52840_mini.md +++ b/_board/sparkfun_nrf52840_mini.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "sparkfun_nrf52840_mini" -title: "nRF52840 Mini Download" -name: "Pro nRF52840 Mini" -manufacturer: "SparkFun" +board_id: sparkfun_nrf52840_mini +board_image: sparkfun_nrf52840_mini-01.jpg board_url: - - "https://www.sparkfun.com/products/15025" -board_image: "sparkfun_nrf52840_mini-01.jpg" -date_added: 2019-3-9 +- https://www.sparkfun.com/products/15025 +date_added: 2019-03-09 12:00:00 family: nrf52840 features: - - Battery Charging - - Bluetooth/BTLE - - STEMMA QT/QWIIC +- Battery Charging +- Bluetooth/BTLE +- STEMMA QT/QWIIC +layout: download +manufacturer: SparkFun +name: Pro nRF52840 Mini +title: nRF52840 Mini Download --- The SparkFun Pro nRF52840 Mini is a breakout and development board for Nordic Semiconductor’s nRF52840 – a powerful combination of ARM Cortex-M4 CPU and 2.4GHz Bluetooth radio. With the nRF52840 at the heart of your project, you’ll be presented with a seemingly endless list of project-possibilities in an incredibly small package. diff --git a/_board/sparkfun_pro_micro_rp2040.md b/_board/sparkfun_pro_micro_rp2040.md index c1fb48a54a..12dd213133 100644 --- a/_board/sparkfun_pro_micro_rp2040.md +++ b/_board/sparkfun_pro_micro_rp2040.md @@ -1,19 +1,20 @@ --- -layout: download -board_id: "sparkfun_pro_micro_rp2040" -title: "Pro Micro - RP2040 Download" -name: "Pro Micro - RP2040" -manufacturer: "SparkFun" +board_id: sparkfun_pro_micro_rp2040 +board_image: sparkfun_pro_micro_rp2040.jpg board_url: - - "https://www.sparkfun.com/products/17717" -board_image: "sparkfun_pro_micro_rp2040.jpg" -date_added: 2021-4-6 +- https://www.sparkfun.com/products/17717 +date_added: 2021-04-06 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: SparkFun +name: Pro Micro - RP2040 +title: Pro Micro - RP2040 Download --- + The SparkFun Pro Micro RP2040 is a low-cost, high performance board with flexible digital interfaces featuring the Raspberry Pi Foundation's RP2040 microcontroller. Besides the good 'ol Pro Micro footprint, the board also includes a WS2812B addressable LED, boot button, reset button, Qwiic connector, USB-C, resettable PTC fuse, and castellated pads. The RP2040 utilizes dual ARM Cortex-M0+ processors (up to 133MHz) and features: diff --git a/_board/sparkfun_qwiic_micro_no_flash.md b/_board/sparkfun_qwiic_micro_no_flash.md index a70d56a8ce..de4e64e165 100644 --- a/_board/sparkfun_qwiic_micro_no_flash.md +++ b/_board/sparkfun_qwiic_micro_no_flash.md @@ -1,18 +1,19 @@ --- -layout: download -board_id: "sparkfun_qwiic_micro_no_flash" -title: "Qwiic Micro without Flash Download" -name: "Qwiic Micro without Flash" -manufacturer: "SparkFun" +board_id: sparkfun_qwiic_micro_no_flash +board_image: sparkfun_qwiic_micro.jpg board_url: - - "https://www.sparkfun.com/products/15423" -board_image: "sparkfun_qwiic_micro.jpg" -date_added: 2019-11-4 +- https://www.sparkfun.com/products/15423 +date_added: 2019-11-04 12:00:00 family: atmel-samd features: - - STEMMA QT/QWIIC - - Breadboard-Friendly +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: SparkFun +name: Qwiic Micro without Flash +title: Qwiic Micro without Flash Download --- + The **SparkFun Qwiic Micro** is an _1 x 1 inch_ microcontroller made for the [Qwiic Eco-system](https://sparkfun.com/qwiic). It's SparkFun's smallest microcontroller to date that's made for integrating into small projects. Onboard is the Atmel ATSAMD21E18 32-bit ARM Cortex-M0+ processor with 256KB flash, 32KB SRAM, and an operating speed of up to 48MHz. diff --git a/_board/sparkfun_qwiic_micro_with_flash.md b/_board/sparkfun_qwiic_micro_with_flash.md index 41e0542b12..008ee51232 100644 --- a/_board/sparkfun_qwiic_micro_with_flash.md +++ b/_board/sparkfun_qwiic_micro_with_flash.md @@ -1,18 +1,19 @@ --- -layout: download -board_id: "sparkfun_qwiic_micro_with_flash" -title: "Qwiic Micro with Flash Download" -name: "Qwiic Micro with Flash" -manufacturer: "SparkFun" +board_id: sparkfun_qwiic_micro_with_flash +board_image: sparkfun_qwiic_micro.jpg board_url: - - "https://www.sparkfun.com/products/15423" -board_image: "sparkfun_qwiic_micro.jpg" -date_added: 2019-11-4 +- https://www.sparkfun.com/products/15423 +date_added: 2019-11-04 12:00:00 family: atmel-samd features: - - STEMMA QT/QWIIC - - Breadboard-Friendly +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: SparkFun +name: Qwiic Micro with Flash +title: Qwiic Micro with Flash Download --- + The **SparkFun Qwiic Micro** is an _1 x 1 inch_ microcontroller made for the [Qwiic Eco-system](https://sparkfun.com/qwiic). It's SparkFun's smallest microcontroller to date that's made for integrating into small projects. Onboard is the Atmel ATSAMD21E18 32-bit ARM Cortex-M0+ processor with 256KB flash, 32KB SRAM, and an operating speed of up to 48MHz. diff --git a/_board/sparkfun_redboard_turbo.md b/_board/sparkfun_redboard_turbo.md index 33732eb60e..9289642c00 100644 --- a/_board/sparkfun_redboard_turbo.md +++ b/_board/sparkfun_redboard_turbo.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "sparkfun_redboard_turbo" -title: "RedBoard Turbo Download" -name: "RedBoard Turbo" -manufacturer: "SparkFun" +board_id: sparkfun_redboard_turbo +board_image: sparkfun_redboard_turbo.jpg board_url: - - "https://www.sparkfun.com/products/14812" -board_image: "sparkfun_redboard_turbo.jpg" -date_added: 2019-3-9 +- https://www.sparkfun.com/products/14812 +date_added: 2019-03-09 12:00:00 family: atmel-samd features: - - Battery Charging - - STEMMA QT/QWIIC - - Arduino Shield Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Arduino Shield Compatible +layout: download +manufacturer: SparkFun +name: RedBoard Turbo +title: RedBoard Turbo Download --- The RedBoard Turbo uses the ATSAMD21G18, which is an ARM Cortex M0+, 32-bit microcontroller that can run at up to 48MHz. With 4MB of external flash memory and a UF2 (USB Flashing Format) bootloader, the RedBoard Turbo provides an economical and easy to use development platform. diff --git a/_board/sparkfun_samd21_dev.md b/_board/sparkfun_samd21_dev.md index 69ca95005e..c889538f88 100644 --- a/_board/sparkfun_samd21_dev.md +++ b/_board/sparkfun_samd21_dev.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "sparkfun_samd21_dev" -title: "SAMD21 Dev Download" -name: "SAMD21 Dev" -manufacturer: "SparkFun" +board_id: sparkfun_samd21_dev +board_image: sparkfun_samd21_dev.jpg board_url: - - "https://www.sparkfun.com/products/13672" -board_image: "sparkfun_samd21_dev.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.sparkfun.com/products/13672 bootloader_id: sparkfun_samd21_dev +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Arduino Shield Compatible +- Arduino Shield Compatible +layout: download +manufacturer: SparkFun +name: SAMD21 Dev +title: SAMD21 Dev Download --- The SparkFun SAMD21 Dev Breakout is an Arduino-sized breakout for the Atmel ATSAMD21G18, a 32-bit ARM Cortex-M0+ processor with 256KB flash, 32KB SRAM, and an operating speed of up to 48MHz. diff --git a/_board/sparkfun_samd21_mini.md b/_board/sparkfun_samd21_mini.md index 67f5a7f33b..562e09c21a 100644 --- a/_board/sparkfun_samd21_mini.md +++ b/_board/sparkfun_samd21_mini.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "sparkfun_samd21_mini" -title: "SAMD21 Mini Download" -name: "SAMD21 Mini" -manufacturer: "SparkFun" +board_id: sparkfun_samd21_mini +board_image: sparkfun_samd21_mini.jpg board_url: - - "https://www.sparkfun.com/products/13664" -board_image: "sparkfun_samd21_mini.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.sparkfun.com/products/13664 bootloader_id: sparkfun-samd21-mini +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: SparkFun +name: SAMD21 Mini +title: SAMD21 Mini Download --- The SAMD21 Mini Breakout is a Pro Mini-sized breakout for the Atmel ATSAMD21G18, a 32-bit ARM Cortex-M0+ processor with 256KB flash, 32KB SRAM, and an operating speed of up to 48MHz. diff --git a/_board/sparkfun_samd51_micromod.md b/_board/sparkfun_samd51_micromod.md index b5618eb93b..6689f07ec3 100644 --- a/_board/sparkfun_samd51_micromod.md +++ b/_board/sparkfun_samd51_micromod.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "sparkfun_samd51_micromod" -title: "MicroMod SAMD51 Processor Download" -name: "MicroMod SAMD51 Processor" -manufacturer: "SparkFun" +board_id: sparkfun_samd51_micromod +board_image: sparkfun_samd51_micromod.jpg board_url: - - "https://www.sparkfun.com/products/16791" -board_image: "sparkfun_samd51_micromod.jpg" -date_added: 2021-6-4 +- https://www.sparkfun.com/products/16791 +date_added: 2021-06-04 12:00:00 family: atmel-samd features: - - Bluetooth/BTLE +- Bluetooth/BTLE +layout: download +manufacturer: SparkFun +name: MicroMod SAMD51 Processor +title: MicroMod SAMD51 Processor Download --- With a 32-bit ARM Cortex-M4F MCU, the SparkFun MicroMod SAMD51 Processor Board is one powerful microcontroller packaged on a small board! The board provides you with an economical and easy to use development platform if you're needing more power with minimal working space. With the M.2 MicroMod connector, connecting your SAMD51 Processor is a breeze. Simply match up the key on your processor's beveled edge connector to the key on the M.2 connector and secure it with a screw (included with all Carrier Boards). The SAMD51 is one of the most powerful and economical microcontrollers available so to be able to add it to your MicroMod Carrier Board is a huge advantage for your project! diff --git a/_board/sparkfun_samd51_thing_plus.md b/_board/sparkfun_samd51_thing_plus.md index 6216581b0e..1add04e63a 100644 --- a/_board/sparkfun_samd51_thing_plus.md +++ b/_board/sparkfun_samd51_thing_plus.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "sparkfun_samd51_thing_plus" -title: "SAMD51 Thing Plus Download" -name: "SAMD51 Thing Plus" -manufacturer: "SparkFun" +board_id: sparkfun_samd51_thing_plus +board_image: sparkfun_samd51_thing_plus.jpg board_url: - - "https://www.sparkfun.com/products/14713" -board_image: "sparkfun_samd51_thing_plus.jpg" -date_added: 2020-2-26 +- https://www.sparkfun.com/products/14713 +date_added: 2020-02-26 12:00:00 family: atmel-samd features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +layout: download +manufacturer: SparkFun +name: SAMD51 Thing Plus +title: SAMD51 Thing Plus Download --- Is it power you seek? With a 32-bit ARM Cortex-M4F MCU, the SparkFun SAMD51 Thing Plus is one of our most powerful microcontroller boards yet! The SAMD51 Thing Plus provides you with an economical and easy to use development platform if you're needing more power with minimal working space. This Thing even comes flashed with the same convenient UF2 bootloader as the RedBoard Turbo. To make the Thing Plus even easier to use, we've moved a few pins around to make the board Feather compatible and it utilizes our handy Qwiic Connect System which means no soldering or shields are required to connect it to the rest of your system! @@ -22,4 +22,3 @@ The ATSAMD51J20 utilizes a 32-bit ARM Cortex-M4 processor with Floating Point Un ## Purchase * [SparkFun](https://www.sparkfun.com/products/14713) - diff --git a/_board/sparkfun_stm32_thing_plus.md b/_board/sparkfun_stm32_thing_plus.md index 93b7121067..14a1dec278 100644 --- a/_board/sparkfun_stm32_thing_plus.md +++ b/_board/sparkfun_stm32_thing_plus.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "sparkfun_stm32_thing_plus" -title: "STM32 Thing Plus Download" -name: "STM32 Thing Plus" -manufacturer: "SparkFun" +board_id: sparkfun_stm32_thing_plus +board_image: sparkfun_stm32_thing_plus.jpg board_url: - - "https://www.sparkfun.com/products/17712" -board_image: "sparkfun_stm32_thing_plus.jpg" -date_added: 2022-1-4 +- https://www.sparkfun.com/products/17712 +date_added: 2022-01-04 12:00:00 family: stm features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - Breadboard-Friendly - - USB-C +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: SparkFun +name: STM32 Thing Plus +title: STM32 Thing Plus Download --- With a 32-bit ARM® Cortex®-M4 RISC core, the SparkFun STM32 Thing Plus brings power and precision to your projects. The STM32 Thing Plus provides you with an economical and easy to use development platform if you're needing more power with a minimal working space. This Thing comes flashed with the DFU bootloader, and to make the Thing Plus even easier to use, we've moved a few pins around to make the board Feather compatible. In addition, it utilizes our handy Qwiic Connect System which means no soldering or shields are required to connect it to the rest of your system! @@ -23,4 +23,3 @@ As we previously stated; the STM32F405 Processor is based on the high-performanc ## Purchase * [SparkFun](https://www.sparkfun.com/products/17712) - diff --git a/_board/sparkfun_stm32f405_micromod.md b/_board/sparkfun_stm32f405_micromod.md index 8e3ba1e446..32eb8267c0 100644 --- a/_board/sparkfun_stm32f405_micromod.md +++ b/_board/sparkfun_stm32f405_micromod.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "sparkfun_stm32f405_micromod" -title: "MicroMod STM32 Processor Download" -name: "MicroMod STM32 Processor" -manufacturer: "SparkFun" +board_id: sparkfun_stm32f405_micromod +board_image: sparkfun_stm32f405_micromod.jpg board_url: - - "https://www.sparkfun.com/products/17713" -board_image: "sparkfun_stm32f405_micromod.jpg" -date_added: 2021-8-13 +- https://www.sparkfun.com/products/17713 +date_added: 2021-08-13 12:00:00 family: stm -features: +features: null +layout: download +manufacturer: SparkFun +name: MicroMod STM32 Processor +title: MicroMod STM32 Processor Download --- The SparkFun MicroMod STM32 Processor Board is ready to rock your MicroMod world with its ARM® Cortex®-M4 32-bit RISC core! This little Processor Board provides you with an economical and easy to use development platform if you're needing more power with minimal working space. With the M.2 MicroMod connector, connecting your STM32 Processor is a breeze. Simply match up the key on your processor's beveled edge connector to the key on the M.2 connector and secure it with a screw (included with all Carrier Boards). The STM32 is one of the most powerful and economical microcontrollers available so to be able to add it to your MicroMod Carrier Board is a huge advantage for your project! diff --git a/_board/sparkfun_teensy_micromod.md b/_board/sparkfun_teensy_micromod.md index 71ad4d64af..f8658985ef 100644 --- a/_board/sparkfun_teensy_micromod.md +++ b/_board/sparkfun_teensy_micromod.md @@ -1,15 +1,14 @@ --- -layout: download -board_id: "sparkfun_teensy_micromod" -title: "MicroMod Teensy Processor Download" -name: "MicroMod Teensy Processor" -manufacturer: "SparkFun" +board_id: sparkfun_teensy_micromod +board_image: sparkfun_teensy_micromod.jpg board_url: - - "https://www.sparkfun.com/products/16402" -board_image: "sparkfun_teensy_micromod.jpg" -date_added: 2022-5-3 +- https://www.sparkfun.com/products/16402 +date_added: 2022-05-03 12:00:00 family: mimxrt10xx - +layout: download +manufacturer: SparkFun +name: MicroMod Teensy Processor +title: MicroMod Teensy Processor Download --- The SparkFun MicroMod Teensy Processor leverages the awesome computing power of the NXP iMXRT1062 chip and pairs it with the M.2 MicroMod connector to allow you to plug it into your choice of compatible MicroMod Carrier Board. With the M.2 MicroMod connector, connecting your Teensy Processor is a breeze. Simply match up the key on your processor's beveled edge connector to the key on the M.2 connector and secure it with a screw (included with all Carrier Boards). Adding a Teensy to your desired project has never been easier! diff --git a/_board/sparkfun_thing_plus_matter_mgm240p.md b/_board/sparkfun_thing_plus_matter_mgm240p.md index 8062a85408..b6d6b13539 100644 --- a/_board/sparkfun_thing_plus_matter_mgm240p.md +++ b/_board/sparkfun_thing_plus_matter_mgm240p.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "sparkfun_thingplus_matter_mgm240p_brd2704a" -title: "SparkFun Thing Plus Matter MGM240P Download" -name: "SparkFun Thing Plus Matter MGM240P" -manufacturer: "SparkFun" +board_id: sparkfun_thingplus_matter_mgm240p_brd2704a +board_image: sparkfun_thing_plus_matter_mgm240p.jpg board_url: - - "https://www.sparkfun.com/products/20270" -board_image: "sparkfun_thing_plus_matter_mgm240p.jpg" -date_added: 2023-04-20 +- https://www.sparkfun.com/products/20270 +date_added: 2023-04-20 12:00:00 family: silabs - features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - STEMMA QT/QWIIC - - USB-C +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +layout: download +manufacturer: SparkFun +name: SparkFun Thing Plus Matter MGM240P +title: SparkFun Thing Plus Matter MGM240P Download --- + The SparkFun Thing Plus Matter is the first easily accessible board of its kind that combines Matter and SparkFun’s Qwiic ecosystem for agile development and prototyping of Matter-based IoT devices. The MGM240P wireless module from Silicon Labs® provides secure connectivity for both 802.15.4 with Mesh communication (Thread) and Bluetooth® Low Energy 5.3 protocols. SparkFun's Thing Plus development boards are Feather-compatible and include a Qwiic connector for easy integration into our Qwiic Connect System for solderless I2C circuits. The Thing Plus Matter - MGM240P includes Qwiic and LiPo battery connectors, and multiple GPIO pins capable of complete multiplexing through software. The board also features the MCP73831 single-cell LiPo charger as well as the MAX17048 fuel gauge to charge and monitor a connected battery. Lastly, we've included a µSD card slot for any external memory needs. diff --git a/_board/sparkfun_thing_plus_rp2040.md b/_board/sparkfun_thing_plus_rp2040.md index 035a2ad310..d59d8fc6df 100644 --- a/_board/sparkfun_thing_plus_rp2040.md +++ b/_board/sparkfun_thing_plus_rp2040.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "sparkfun_thing_plus_rp2040" -title: "Thing Plus - RP2040 Download" -name: "Thing Plus - RP2040" -manufacturer: "SparkFun" +board_id: sparkfun_thing_plus_rp2040 +board_image: sparkfun_thing_plus_rp2040.jpg board_url: - - "https://www.sparkfun.com/products/17745" -board_image: "sparkfun_thing_plus_rp2040.jpg" -date_added: 2021-4-6 +- https://www.sparkfun.com/products/17745 +date_added: 2021-04-06 12:00:00 family: raspberrypi features: - - Feather-Compatible - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: SparkFun +name: Thing Plus - RP2040 +title: Thing Plus - RP2040 Download --- The SparkFun Thing Plus - RP2040 is a low-cost, high performance board with flexible digital interfaces featuring the Raspberry Pi Foundation's RP2040 microcontroller. Besides the Thing Plus or *Feather* footprint (with 18 GPIO pins), the board also includes an SD card slot, 16MB (128Mbit) flash memory, a JST single cell battery connector (with a charging circuit and fuel gauge sensor), an addressable WS2812 RGB LED, JTAG PTH pins, four (4-40 screw) mounting holes, and our signature Qwiic connector. @@ -33,4 +33,3 @@ The RP2040 is supported with both C/C++ and MicroPython cross-platform developme ## Purchase * [SparkFun](https://www.sparkfun.com/products/17745) - diff --git a/_board/splitkb_liatris.md b/_board/splitkb_liatris.md index f8f9ed5f55..9e4c22b959 100644 --- a/_board/splitkb_liatris.md +++ b/_board/splitkb_liatris.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "splitkb_liatris" -title: "Liatris Download" -name: "Liatris" -manufacturer: "SplitKB" +board_id: splitkb_liatris +board_image: splitkb_liatris.jpg board_url: - - "https://splitkb.com/products/liatris" -board_image: "splitkb_liatris.jpg" -date_added: 2023-7-28 +- https://splitkb.com/products/liatris +date_added: 2023-07-28 12:00:00 family: raspberrypi features: - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: SplitKB +name: Liatris +title: Liatris Download --- The Liatris is a new controller designed by splitkb.com that's a designed specifically for (split) keyboards. It's a drop-in replacement for the Pro Micro, and a perfect alternative for other RP2040-based controllers. diff --git a/_board/spresense.md b/_board/spresense.md index 21232e672f..158965e8fd 100644 --- a/_board/spresense.md +++ b/_board/spresense.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "spresense" -title: "Spresense Download" -name: "Spresense" -manufacturer: "Sony" +board_id: spresense +board_image: spresense.jpg board_url: - - "https://developer.sony.com/develop/spresense/docs/introduction_en.html" - - "https://www.adafruit.com/product/4419" - - "https://www.adafruit.com/product/4420" -board_image: "spresense.jpg" -date_added: 2019-10-23 +- https://developer.sony.com/develop/spresense/docs/introduction_en.html +- https://www.adafruit.com/product/4419 +- https://www.adafruit.com/product/4420 +date_added: 2019-10-23 12:00:00 family: cxd56 features: - - GPS - - Arduino Shield Compatible +- GPS +- Arduino Shield Compatible +layout: download +manufacturer: Sony +name: Spresense +title: Spresense Download --- The Spresense project consists of a Arduino compatible board with Sony's high performance CXD5602 micro-controller. The CXD5602 has built-in GPS and high-resolution audio capabilities. diff --git a/_board/ssci_isp1807_dev_board.md b/_board/ssci_isp1807_dev_board.md index 418bc17975..149f33fde9 100644 --- a/_board/ssci_isp1807_dev_board.md +++ b/_board/ssci_isp1807_dev_board.md @@ -1,21 +1,21 @@ ---- -layout: download -board_id: "ssci_isp1807_dev_board" -title: "SSCI ISP1807 Dev Board Download" -name: "SSCI ISP1807 Dev Board" -manufacturer: "Switch Science, Inc" -board_url: - - "https://ssci.to/6454" -board_image: "ssci_isp1807_dev_board.jpg" -date_added: 2022-3-16 -family: nrf52840 -features: - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly ---- - -This is a development board includes a Bluetooth Low Energy-enabled ISP1807 from Insight SiP (based on the nRF52840). This board has a 3.3 V regulator, a reset switch (SW1), a general purpose switch (SW2), a LED (user-controllable) and a USB-C connector. - -## Purchase -* [Switch Science, Inc.](https://ssci.to/6454) +--- +board_id: ssci_isp1807_dev_board +board_image: ssci_isp1807_dev_board.jpg +board_url: +- https://ssci.to/6454 +date_added: 2022-03-16 12:00:00 +family: nrf52840 +features: +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Switch Science, Inc +name: SSCI ISP1807 Dev Board +title: SSCI ISP1807 Dev Board Download +--- + +This is a development board includes a Bluetooth Low Energy-enabled ISP1807 from Insight SiP (based on the nRF52840). This board has a 3.3 V regulator, a reset switch (SW1), a general purpose switch (SW2), a LED (user-controllable) and a USB-C connector. + +## Purchase +* [Switch Science, Inc.](https://ssci.to/6454) diff --git a/_board/ssci_isp1807_micro_board.md b/_board/ssci_isp1807_micro_board.md index 8323fa0b72..7e35b195bf 100644 --- a/_board/ssci_isp1807_micro_board.md +++ b/_board/ssci_isp1807_micro_board.md @@ -1,24 +1,24 @@ ---- -layout: download -board_id: "ssci_isp1807_micro_board" -title: "SSCI ISP1807 Micro Board Download" -name: "SSCI ISP1807 Micro Board" -manufacturer: "Switch Science, Inc" -board_url: - - "https://ssci.to/6939" -board_image: "ssci_isp1807_micro_board.jpg" -date_added: 2022-3-16 -family: nrf52840 -features: - - Bluetooth/BTLE - - USB-C - - Breadboard-Friendly ---- - -This development board includes a Bluetooth Low Energy-enabled ISP1807 from Insight SiP (based on the nRF52840). This board has a 3.3 V regulator, a reset switch, a general purpose LED, and USB-C connector. - -This board is pin compatible with the Arduino Pro Micro. - - -## Purchase -* [Switch Science, Inc.](https://ssci.to/6939) +--- +board_id: ssci_isp1807_micro_board +board_image: ssci_isp1807_micro_board.jpg +board_url: +- https://ssci.to/6939 +date_added: 2022-03-16 12:00:00 +family: nrf52840 +features: +- Bluetooth/BTLE +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Switch Science, Inc +name: SSCI ISP1807 Micro Board +title: SSCI ISP1807 Micro Board Download +--- + +This development board includes a Bluetooth Low Energy-enabled ISP1807 from Insight SiP (based on the nRF52840). This board has a 3.3 V regulator, a reset switch, a general purpose LED, and USB-C connector. + +This board is pin compatible with the Arduino Pro Micro. + + +## Purchase +* [Switch Science, Inc.](https://ssci.to/6939) diff --git a/_board/stackrduino_m0_pro.md b/_board/stackrduino_m0_pro.md index d35c7c97b6..b01e95f3f0 100644 --- a/_board/stackrduino_m0_pro.md +++ b/_board/stackrduino_m0_pro.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "stackrduino_m0_pro" -title: "StackRduino M0+ PRO Download" -name: "StackRduino M0+ PRO" -manufacturer: "StackRduino" +board_id: stackrduino_m0_pro +board_image: stackrduino_m0_pro.jpg board_url: - - "https://github.com/StackRduino/StackRduino_M0" -board_image: "stackrduino_m0_pro.jpg" -date_added: 2021-4-6 -family: atmel-samd +- https://github.com/StackRduino/StackRduino_M0 bootloader_id: stackrduino_m0_pro +date_added: 2021-04-06 12:00:00 +family: atmel-samd features: - - Battery Charging - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Battery Charging +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: StackRduino +name: StackRduino M0+ PRO +title: StackRduino M0+ PRO Download --- StackRduino M0+ PRO is an open source Development board based on the ATSAMD21G18 for Arduino & Circuit-Python packed with features & comes with many stackable shields diff --git a/_board/stm32f411ce_blackpill.md b/_board/stm32f411ce_blackpill.md index 87d003507c..85492a9427 100644 --- a/_board/stm32f411ce_blackpill.md +++ b/_board/stm32f411ce_blackpill.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "stm32f411ce_blackpill" -title: "STM32F411CE Black Pill Download" -name: "STM32F411CE Black Pill" -manufacturer: "WeAct Studio" +board_id: stm32f411ce_blackpill +board_image: stm32f411ce_blackpill.jpg board_url: - - "https://www.aliexpress.com/item/1005001456186625.html" - - "https://www.adafruit.com/product/4877" -board_image: "stm32f411ce_blackpill.jpg" -date_added: 2019-12-20 +- https://www.aliexpress.com/item/1005001456186625.html +- https://www.adafruit.com/product/4877 +date_added: 2019-12-20 12:00:00 family: stm - features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: WeAct Studio +name: STM32F411CE Black Pill +title: STM32F411CE Black Pill Download --- + In the F401 series, the chip is the cheapest, even cheaper than some F1, and crushed F1 on the main frequency, and has a floating-point arithmetic module, the IO port contains all the basic functions. Therefore, it is possible to provide a learning platform with a very high cost performance for beginners. In practical applications, it is not because the computing power is insufficient, and the IO port is incomplete and hinders development. ## Product details @@ -35,4 +35,4 @@ In the F401 series, the chip is the cheapest, even cheaper than some F1, and cru * [stm32duino - Offical Arduino Support](https://github.com/stm32duino/Arduino_Core_STM32) ## Purchase - * [Adafruit](https://www.adafruit.com/product/4877) \ No newline at end of file + * [Adafruit](https://www.adafruit.com/product/4877) diff --git a/_board/stm32f411ce_blackpill_with_flash.md b/_board/stm32f411ce_blackpill_with_flash.md index b2b306d956..68bf672407 100644 --- a/_board/stm32f411ce_blackpill_with_flash.md +++ b/_board/stm32f411ce_blackpill_with_flash.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "stm32f411ce_blackpill_with_flash" -title: "STM32F411CE Black Pill with Flash Download" -name: "STM32F411CE Black Pill with Flash" -manufacturer: "WeAct Studio" +board_id: stm32f411ce_blackpill_with_flash +board_image: stm32f411ce_blackpill.jpg board_url: - - "https://github.com/WeActTC/MiniF4-STM32F4x1" -board_image: "stm32f411ce_blackpill.jpg" -date_added: 2021-4-6 +- https://github.com/WeActTC/MiniF4-STM32F4x1 +date_added: 2021-04-06 12:00:00 family: stm features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: WeAct Studio +name: STM32F411CE Black Pill with Flash +title: STM32F411CE Black Pill with Flash Download --- In the F401 series, the chip is the cheapest, even cheaper than some F1, and crushed F1 on the main frequency, and has a floating-point arithmetic module, the IO port contains all the basic functions. Therefore, it is possible to provide a learning platform with a very high cost performance for beginners. In practical applications, it is not because the computing power is insufficient, and the IO port is incomplete and hinders development. diff --git a/_board/stm32f411ve_discovery.md b/_board/stm32f411ve_discovery.md index 4c5da9a136..b0761fb0a4 100644 --- a/_board/stm32f411ve_discovery.md +++ b/_board/stm32f411ve_discovery.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "stm32f411ve_discovery" -title: "Discovery kit for STM32F411 Download" -name: "Discovery kit for STM32F411" -manufacturer: "ST" +board_id: stm32f411ve_discovery +board_image: stm32f411.jpg board_url: - - "https://www.st.com/en/evaluation-tools/32f411ediscovery.html" -board_image: "stm32f411.jpg" -date_added: 2019-9-16 +- https://www.st.com/en/evaluation-tools/32f411ediscovery.html +date_added: 2019-09-16 12:00:00 family: stm +layout: download +manufacturer: ST +name: Discovery kit for STM32F411 +title: Discovery kit for STM32F411 Download --- The Discovery kit for STM32F411 line helps you to discover the entry level microcontrollers of the STM32 F4 series and to develop your applications easily. It offers everything required for beginners and experienced users to get started quickly. diff --git a/_board/stm32f412zg_discovery.md b/_board/stm32f412zg_discovery.md index b02e87fbb0..0c30845876 100644 --- a/_board/stm32f412zg_discovery.md +++ b/_board/stm32f412zg_discovery.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "stm32f412zg_discovery" -title: "STM32F412 Discovery kit Download" -name: "STM32F412 Discovery kit" -manufacturer: "ST" +board_id: stm32f412zg_discovery +board_image: stm32f412.jpg board_url: - - "https://www.st.com/en/evaluation-tools/32f412gdiscovery.html" -board_image: "stm32f412.jpg" -date_added: 2019-9-16 +- https://www.st.com/en/evaluation-tools/32f412gdiscovery.html +date_added: 2019-09-16 12:00:00 family: stm features: - - Display +- Display +layout: download +manufacturer: ST +name: STM32F412 Discovery kit +title: STM32F412 Discovery kit Download --- The STM32F412 Discovery kit (32F412GDISCOVERY) allows users to easily develop applications with the STM32F412 high performance MCUs with ARM® Cortex®-M4 core. diff --git a/_board/stm32f4_discovery.md b/_board/stm32f4_discovery.md index c0eb7e2adb..3b5c862578 100644 --- a/_board/stm32f4_discovery.md +++ b/_board/stm32f4_discovery.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "stm32f4_discovery" -title: "STM32F407 Discovery kit Download" -name: "STM32F407 Discovery kit" -manufacturer: "ST" +board_id: stm32f4_discovery +board_image: stm32f407.jpg board_url: - - "https://www.st.com/en/evaluation-tools/stm32f4discovery.html" -board_image: "stm32f407.jpg" -date_added: 2019-9-18 +- https://www.st.com/en/evaluation-tools/stm32f4discovery.html +date_added: 2019-09-18 12:00:00 family: stm +layout: download +manufacturer: ST +name: STM32F407 Discovery kit +title: STM32F407 Discovery kit Download --- The STM32F4DISCOVERY kit leverages the capabilities of the STM32F407 high performance microcontrollers, to allow users to easily develop applications featuring audio. diff --git a/_board/stm32f746g_discovery.md b/_board/stm32f746g_discovery.md index e0f0047ded..09b1cddf9d 100644 --- a/_board/stm32f746g_discovery.md +++ b/_board/stm32f746g_discovery.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "stm32f746g_discovery" -title: "STM32F746 Discovery kit Download" -name: "STM32F746 Discovery kit" -manufacturer: "ST" +board_id: stm32f746g_discovery +board_image: stm32f746g_discovery.jpg board_url: - - "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/32f746gdiscovery.html" -board_image: "stm32f746g_discovery.jpg" -date_added: 2020-04-27 +- https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/32f746gdiscovery.html +date_added: 2020-04-27 12:00:00 family: stm features: - - Display +- Display +layout: download +manufacturer: ST +name: STM32F746 Discovery kit +title: STM32F746 Discovery kit Download --- The STM32F746 Discovery kit from ST. diff --git a/_board/stringcar_m0_express.md b/_board/stringcar_m0_express.md index 7dc9cad4a4..fb1869b09f 100644 --- a/_board/stringcar_m0_express.md +++ b/_board/stringcar_m0_express.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "stringcar_m0_express" -title: "StringCar M0 Express Download" -name: "StringCar M0 Express" -manufacturer: "Cedar Grove Studios" +board_id: stringcar_m0_express +board_image: stringcar_m0_express.jpg board_url: - - "https://github.com/CedarGroveStudios/StringCar_M0_Express" -board_image: "stringcar_m0_express.jpg" -date_added: 2019-10-14 +- https://github.com/CedarGroveStudios/StringCar_M0_Express +date_added: 2019-10-14 12:00:00 family: atmel-samd features: - - Battery Charging +- Battery Charging +layout: download +manufacturer: Cedar Grove Studios +name: StringCar M0 Express +title: StringCar M0 Express Download --- The Cedar Grove StringCar M0 Express is an ATSAMD21-based CircuitPython compatible board used to control a simple string car racer robot. The board is architecturally similar to the Adafruit Trinket M0 and ItsyBitsy M0 Express microcontroller boards with the addition of battery management and a DC motor controller. This board features JST connectors for the racer's battery, motor output, and sensor input. LiPo battery management charge rate is 500mA. For sensor experimentation, a 3.3-volt Stemma-QT connection is available on-board. The micro-USB connector used for REPL operation, operational status data output, and battery charging. On-board flash memory size is 2MB. diff --git a/_board/supermini_nrf52840.md b/_board/supermini_nrf52840.md index c84e5d730f..b90fcf2216 100644 --- a/_board/supermini_nrf52840.md +++ b/_board/supermini_nrf52840.md @@ -1,22 +1,22 @@ --- -layout: download -board_id: "supermini_nrf52840" -title: "SuperMini NRF52840 Download" -name: "SuperMini NRF52840" -manufacturer: "ICBbuy" +board_id: supermini_nrf52840 +board_image: supermini_nrf52840.png board_url: - - "http://wiki.icbbuy.com/doku.php?id=developmentboard:nrf52840" -board_image: "supermini_nrf52840.png" -date_added: "2023-10-21" -family: nrf52840 +- http://wiki.icbbuy.com/doku.php?id=developmentboard:nrf52840 bootloader_id: nice_nano +date_added: 2023-10-21 12:00:00 downloads_display: true +family: nrf52840 features: - - Battery Charging - - USB-C - - Breadboard-Friendly - - Battery Charging - - Bluetooth/BTLE +- Battery Charging +- USB-C +- Breadboard-Friendly +- Battery Charging +- Bluetooth/BTLE +layout: download +manufacturer: ICBbuy +name: SuperMini NRF52840 +title: SuperMini NRF52840 Download --- The SuperMini NRF52840 is Nice!Nano clone which in turn is based on the Pro Micro layout. This means that it can be used with almost any Pro Mcro keyboard. Unlike the Pro Micro however it sports wireless functionality in the form of Bluetooth and pins to use/charge a lithium-ion battery. diff --git a/_board/swan_r5.md b/_board/swan_r5.md index ce22648be1..56f0023f01 100644 --- a/_board/swan_r5.md +++ b/_board/swan_r5.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "swan_r5" -title: "Swan R5 Download" -name: "Swan R5" -manufacturer: "Blues Wireless" +board_id: swan_r5 +board_image: swan_r5.jpg board_url: - - "https://blues.io/products/swan" -board_image: "swan_r5.jpg" -date_added: 2021-9-29 +- https://blues.io/products/swan +date_added: 2021-09-29 12:00:00 family: stm features: - - Feather-Compatible - - Battery Charging - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Breadboard-Friendly +layout: download +manufacturer: Blues Wireless +name: Swan R5 +title: Swan R5 Download --- Swan is a low-cost embeddable STM32L4-based microcontroller designed to accelerate the development and deployment of battery-powered solutions. It is especially useful for applications requiring large memory or a high degree of I/O expandability at an affordable cost, such as edge inferencing and remote monitoring. diff --git a/_board/takayoshiotake_octave_rp2040.md b/_board/takayoshiotake_octave_rp2040.md index 756fb25f42..41f834096a 100644 --- a/_board/takayoshiotake_octave_rp2040.md +++ b/_board/takayoshiotake_octave_rp2040.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "takayoshiotake_octave_rp2040" -title: "OTAKE Takayoshi Octave Download" -name: "OTAKE Takayoshi Octave" -manufacturer: "OTAKE Takayoshi" +board_id: takayoshiotake_octave_rp2040 +board_image: takayoshiotake_octave_rp2040.jpg board_url: - - "https://github.com/takayoshiotake/octave-12-key-macropad" -board_image: "takayoshiotake_octave_rp2040.jpg" -date_added: 2022-8-22 +- https://github.com/takayoshiotake/octave-12-key-macropad +date_added: 2022-08-22 12:00:00 family: raspberrypi features: - - USB-C +- USB-C +layout: download +manufacturer: OTAKE Takayoshi +name: OTAKE Takayoshi Octave +title: OTAKE Takayoshi Octave Download --- The Octave is a 12-key macropad. It is primarily designed to be a compact keyboard with support for 12 function keys (F1 - F12). diff --git a/_board/targett_module_clip_wroom.md b/_board/targett_module_clip_wroom.md index 77f4cee915..7375e0f118 100644 --- a/_board/targett_module_clip_wroom.md +++ b/_board/targett_module_clip_wroom.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "targett_module_clip_wroom" -title: "Targett ESP32-S2 Module Clip (WROOM) Download" -name: "Targett ESP32-S2 Module Clip (WROOM)" -manufacturer: "Targett" +board_id: targett_module_clip_wroom +board_image: targett_module_clip_wroom.jpg board_url: - - "https://www.targettpcb.co.uk/s2-mcb-1" -board_image: "targett_module_clip_wroom.jpg" -date_added: 2020-12-6 -family: esp32s2 +- https://www.targettpcb.co.uk/s2-mcb-1 bootloader_id: targett_mcb_wroom +date_added: 2020-12-06 12:00:00 +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Targett +name: Targett ESP32-S2 Module Clip (WROOM) +title: Targett ESP32-S2 Module Clip (WROOM) Download --- This board will allow you to clip in an ESP32-S2 WROOM or WROVER module for programming, prototyping and testing. Slot the module into the pins where it will be held securely while you upload your code. diff --git a/_board/targett_module_clip_wrover.md b/_board/targett_module_clip_wrover.md index bf35bfa8af..551df42fe1 100644 --- a/_board/targett_module_clip_wrover.md +++ b/_board/targett_module_clip_wrover.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "targett_module_clip_wrover" -title: "Targett ESP32-S2 Module Clip (WROVER) Download" -name: "Targett ESP32-S2 Module Clip (WROVER)" -manufacturer: "Targett" +board_id: targett_module_clip_wrover +board_image: targett_module_clip_wrover.jpg board_url: - - "https://www.targettpcb.co.uk/s2-mcb-1" -board_image: "targett_module_clip_wrover.jpg" -date_added: 2020-12-6 -family: esp32s2 +- https://www.targettpcb.co.uk/s2-mcb-1 bootloader_id: targett_mcb_wrover +date_added: 2020-12-06 12:00:00 +family: esp32s2 features: - - Wi-Fi +- Wi-Fi +layout: download +manufacturer: Targett +name: Targett ESP32-S2 Module Clip (WROVER) +title: Targett ESP32-S2 Module Clip (WROVER) Download --- This board will allow you to clip in an ESP32-S2 WROOM or WROVER module for programming, prototyping and testing. Slot the module into the pins where it will be held securely while you upload your code. diff --git a/_board/teensy40.md b/_board/teensy40.md index 2b0df96d8b..95435a8b2b 100644 --- a/_board/teensy40.md +++ b/_board/teensy40.md @@ -1,18 +1,19 @@ --- -layout: download -board_id: "teensy40" -title: "Teensy 4.0 Download" -name: "Teensy 4.0" -manufacturer: "PJRC" +board_id: teensy40 +board_image: teensy40.jpg board_url: - - "https://www.pjrc.com/store/teensy40.html" - - "https://www.adafruit.com/product/4323" -board_image: "teensy40.jpg" -date_added: 2020-1-31 +- https://www.pjrc.com/store/teensy40.html +- https://www.adafruit.com/product/4323 +date_added: 2020-01-31 12:00:00 family: mimxrt10xx features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: PJRC +name: Teensy 4.0 +title: Teensy 4.0 Download --- + Who else could pack a 600 MHz microcontroller into such a Teensy little board? The Teensy 4.0 features an ARM Cortex-M7 processor at 600 MHz, with a NXP iMXRT1062 chip, the fastest microcontroller available today - [ten times faster than the Teensy 3.2](https://github.com/PaulStoffregen/CoreMark)! The NXP iMXRT1062 is a 'cross-over' processor, which has the functionality of a microcontroller, at the speeds of a microcomputer. It's perfect for when you need tons of flash, RAM and, to crunch lots of data, or when you need two full speed USB ports. It even has a graphics processor! All this for two sawbucks. Teensy 4.0 can be programmed using the Arduino IDE with [Teensyduino add-on](https://www.pjrc.com/teensy/td_download.html). diff --git a/_board/teensy41.md b/_board/teensy41.md index 45e198f12c..58714b783d 100644 --- a/_board/teensy41.md +++ b/_board/teensy41.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "teensy41" -title: "Teensy 4.1 Download" -name: "Teensy 4.1" -manufacturer: "PJRC" +board_id: teensy41 +board_image: teensy41.jpg board_url: - - "https://www.pjrc.com/store/teensy41.html" - - "https://www.adafruit.com/product/4622" -board_image: "teensy41.jpg" -date_added: 2020-05-11 +- https://www.pjrc.com/store/teensy41.html +- https://www.adafruit.com/product/4622 +date_added: 2020-05-11 12:00:00 family: mimxrt10xx features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: PJRC +name: Teensy 4.1 +title: Teensy 4.1 Download --- The [Teensy](http://www.pjrc.com/teensy/index.html) 4.1, like the [4.0](http://www.adafruit.com/product/4323), also features an ARM Cortex-M7 processor at 600 MHz, with an NXP iMXRT1062 chip, the fastest microcontroller available today - [ten times faster than the Teensy 3.2](https://github.com/PaulStoffregen/CoreMark)! The NXP iMXRT1062 is a 'cross-over' processor, which has the functionality of a microcontroller, at the speeds of a microcomputer. It's perfect for when you need tons of flash, RAM and, to crunch lots of data, or when you need two full-speed USB ports. diff --git a/_board/teknikio_bluebird.md b/_board/teknikio_bluebird.md index a0a95cfe33..1ba2e4d911 100644 --- a/_board/teknikio_bluebird.md +++ b/_board/teknikio_bluebird.md @@ -1,16 +1,17 @@ --- -layout: download -board_id: "teknikio_bluebird" -title: "Bluebird Download" -name: "Bluebird" -manufacturer: "Teknikio" +board_id: teknikio_bluebird +board_image: teknikio_bluebird.jpg board_url: - - "https://www.teknikio.com/pages/bluebird" -board_image: "teknikio_bluebird.jpg" -date_added: 2019-12-20 +- https://www.teknikio.com/pages/bluebird +date_added: 2019-12-20 12:00:00 family: nrf52840 -features: +features: null +layout: download +manufacturer: Teknikio +name: Bluebird +title: Bluebird Download --- + A plug-n-play circuit board that can be programmed to send and receive information over Bluetooth and the Internet. Bluebirds can form a network to send and receive data to one another. diff --git a/_board/thunderpack_v11.md b/_board/thunderpack_v11.md index 1b5f18326b..af753e8ff4 100644 --- a/_board/thunderpack_v11.md +++ b/_board/thunderpack_v11.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "thunderpack_v11" -title: "Thunderpack v1.1 Download" -name: "Thunderpack v1.1" -manufacturer: "Jeremy Gillick" +board_id: thunderpack_v11 +board_image: thunderpack_v11.jpg board_url: - - "https://github.com/jgillick/ThunderPack" -board_image: "thunderpack_v11.jpg" -date_added: 2020-4-16 +- https://github.com/jgillick/ThunderPack +date_added: 2020-04-16 12:00:00 family: stm features: - Battery Charging +layout: download +manufacturer: Jeremy Gillick +name: Thunderpack v1.1 +title: Thunderpack v1.1 Download --- A kick-ass microcontroller board with everything you need in a compact package that fits in your pocket. Integrated battery, power management system, Arm microcontroller, USB bootloader, 4 high-power PWM outputs, and 12 GPIOs. diff --git a/_board/thunderpack_v12.md b/_board/thunderpack_v12.md index fc4d9ec423..face53cb00 100644 --- a/_board/thunderpack_v12.md +++ b/_board/thunderpack_v12.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "thunderpack_v12" -title: "Thunderpack v1.2 Download" -name: "Thunderpack v1.2" -manufacturer: "Jeremy Gillick" +board_id: thunderpack_v12 +board_image: thunderpack_v12.jpg board_url: - - "https://github.com/jgillick/ThunderPack" -board_image: "thunderpack_v12.jpg" -date_added: 2020-4-16 +- https://github.com/jgillick/ThunderPack +date_added: 2020-04-16 12:00:00 family: stm features: - Battery Charging +layout: download +manufacturer: Jeremy Gillick +name: Thunderpack v1.2 +title: Thunderpack v1.2 Download --- A kick-ass microcontroller board with everything you need in a compact package that fits in your pocket. Integrated battery, power management system, Arm microcontroller, USB bootloader, 4 high-power PWM outputs, and 12 GPIOs. diff --git a/_board/tinkeringtech_scoutmakes_azul.md b/_board/tinkeringtech_scoutmakes_azul.md index 528553adaa..61df91cf2d 100644 --- a/_board/tinkeringtech_scoutmakes_azul.md +++ b/_board/tinkeringtech_scoutmakes_azul.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "tinkeringtech_scoutmakes_azul" -title: "ScoutMakes Azul Download" -name: "ScoutMakes Azul" -manufacturer: "TinkeringTech" +board_id: tinkeringtech_scoutmakes_azul +board_image: scoutmakes_azul.jpg board_url: - - "https://tinkeringtech.com/blog/scoutmakes-azul/" - - "https://www.adafruit.com/product/4968" -board_image: "scoutmakes_azul.jpg" -date_added: 2020-07-27 +- https://tinkeringtech.com/blog/scoutmakes-azul/ +- https://www.adafruit.com/product/4968 +date_added: 2020-07-27 12:00:00 family: nrf52840 features: - - Feather-Compatible - - Battery Charging - - Bluetooth/BTLE - - Display - - USB-C +- Feather-Compatible +- Battery Charging +- Bluetooth/BTLE +- Display +- USB-C +layout: download +manufacturer: TinkeringTech +name: ScoutMakes Azul +title: ScoutMakes Azul Download --- The **ScoutMakes Azul** is an open source Bluetooth (BLE) development platform featuring the nRF52840 (32bit ARM Cortex-M4 processor) from Nordic semiconductors enabling excellent Bluetooth development capabilities for your project. It conforms to the Adafruit feather format, runs CircuitPython, Arduino. The platform also has native USB support. diff --git a/_board/trellis_m4_express.md b/_board/trellis_m4_express.md index 68b1d29f90..e676ced37b 100644 --- a/_board/trellis_m4_express.md +++ b/_board/trellis_m4_express.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "trellis_m4_express" -title: "NeoTrellis M4 Download" -name: "NeoTrellis M4" -manufacturer: "Adafruit" +board_id: trellis_m4_express +board_image: trellis_m4_express.jpg board_url: - - "https://www.adafruit.com/product/4020" - - "https://www.adafruit.com/product/3938" - - "https://www.adafruit.com/product/4018" -board_image: "trellis_m4_express.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/4020 +- https://www.adafruit.com/product/3938 +- https://www.adafruit.com/product/4018 bootloader_id: trellis_m4 -features: +date_added: 2019-03-09 12:00:00 +family: atmel-samd +features: null +layout: download +manufacturer: Adafruit +name: NeoTrellis M4 +title: NeoTrellis M4 Download --- The **NeoTrellis M4** is an all-in-one **USB + NeoPixel + Elastomer + Audio** board. It's powered by the SAMD51, a Cortex M4 core running at 120 MHz. This chip has a speedy core with CircuitPython support, hardware DSP/floating point, dual DACs and all the goodies you expect from normal chips like I2C, ADC, DMA, etc. It has a roomy 512KB of flash and 192KB of SRAM so it's great for CircuitPython, includes a full 8MB flash chip so tons of space for files and audio clips. diff --git a/_board/trinket_m0.md b/_board/trinket_m0.md index 8e175e58d5..33c769483e 100644 --- a/_board/trinket_m0.md +++ b/_board/trinket_m0.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "trinket_m0" -title: "Trinket M0 Download" -name: "Trinket M0" -manufacturer: "Adafruit" +board_id: trinket_m0 +board_image: trinket_m0.jpg board_url: - - "https://www.adafruit.com/product/3500" -board_image: "trinket_m0.jpg" -date_added: 2019-3-9 -family: atmel-samd +- https://www.adafruit.com/product/3500 bootloader_id: trinket_m0 +date_added: 2019-03-09 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Adafruit +name: Trinket M0 +title: Trinket M0 Download --- The Adafruit Trinket M0 may be small, but do not be fooled by its size! It's a tiny microcontroller board, built around the Atmel ATSAMD21, a little chip with _a lot_ of power. Adafruit designed a microcontroller board that was small enough to fit into any project, and low cost enough to use without hesitation. Perfect for when you don't want to give up your expensive dev-board and you aren't willing to take apart the project you worked so hard to design. It's one of the lowest-cost CircuitPython programmable boards! diff --git a/_board/trinket_m0_haxpress.md b/_board/trinket_m0_haxpress.md index 7edf4ba445..619578cd2a 100644 --- a/_board/trinket_m0_haxpress.md +++ b/_board/trinket_m0_haxpress.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "trinket_m0_haxpress" -title: "Trinket M0 Haxpress Download" -name: "Trinket M0 Haxpress" -manufacturer: "Dave Astels" +board_id: trinket_m0_haxpress +board_image: trinket_m0_haxpress.jpg board_url: - - "http://daveastels.com/trinket-m0-express-hack.html" -board_image: "trinket_m0_haxpress.jpg" -date_added: 2019-3-19 -family: atmel-samd +- http://daveastels.com/trinket-m0-express-hack.html bootloader_id: trinket_m0 +date_added: 2019-03-19 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Dave Astels +name: Trinket M0 Haxpress +title: Trinket M0 Haxpress Download --- This is a [Trinket M0]({{ "/board/trinket_m0/" | relative_url }}) that has been had a SPI flash diff --git a/_board/uartlogger2.md b/_board/uartlogger2.md index cc2c98f1e3..b2207543c0 100644 --- a/_board/uartlogger2.md +++ b/_board/uartlogger2.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "uartlogger2" -title: "uartlogger2 Download" -name: "uartlogger2" -manufacturer: "unknown" -board_url: -board_image: "unknown.jpg" +board_id: uartlogger2 +board_image: unknown.jpg +board_url: null +bootloader_id: uartlogger2 +date_added: 2020-03-31 12:00:00 downloads_display: false -date_added: 2020-3-31 family: atmel-samd -bootloader_id: uartlogger2 -features: +features: null +layout: download +manufacturer: unknown +name: uartlogger2 +title: uartlogger2 Download --- This board hasn't been fully documented yet. Please make a pull request adding more info to this file. diff --git a/_board/uchip.md b/_board/uchip.md index 078317dcc2..a423914e44 100644 --- a/_board/uchip.md +++ b/_board/uchip.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "uchip" -title: "uChip Download" -name: "uChip M0" -manufacturer: "Itaca Innovation" +board_id: uchip +board_image: uchip.jpg board_url: - - "https://shop.itaca-innovation.com" -board_image: "uchip.jpg" -date_added: 2019-3-25 -family: atmel-samd +- https://shop.itaca-innovation.com bootloader_id: uchip +date_added: 2019-03-25 12:00:00 +family: atmel-samd features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Itaca Innovation +name: uChip M0 +title: uChip Download --- **Small. Yet powerful!** diff --git a/_board/ugame10.md b/_board/ugame10.md index e62c6be918..dd29ad7cd9 100644 --- a/_board/ugame10.md +++ b/_board/ugame10.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "ugame10" -title: "µGame Download" -name: "µGame" -manufacturer: "Radomir Dopieralski" +board_id: ugame10 +board_image: ugame_10.jpg board_url: - - "https://ugame.rtfd.io" -board_image: "ugame_10.jpg" -date_added: 2019-3-12 -family: atmel-samd +- https://ugame.rtfd.io bootloader_id: trinket_m0 +date_added: 2019-03-12 12:00:00 +family: atmel-samd features: - - Display - - Speaker - - Battery Charging +- Display +- Speaker +- Battery Charging +layout: download +manufacturer: Radomir Dopieralski +name: µGame +title: µGame Download --- A tiny game console programmable with Python, which lets you easily re-create diff --git a/_board/ugame22.md b/_board/ugame22.md index f77a2fb1a0..5d545b750d 100644 --- a/_board/ugame22.md +++ b/_board/ugame22.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "ugame22" -title: "µGame 22 Download" -name: "µGame 22" -manufacturer: "Radomir Dopieralski" +board_id: ugame22 +board_image: ugame22.jpg board_url: - - "https://hackaday.io/project/186921-game-22" -board_image: "ugame22.jpg" -date_added: 2023-10-27 +- https://hackaday.io/project/186921-game-22 +date_added: 2023-10-27 12:00:00 family: raspberrypi features: - - Display - - Speaker - - Battery Charging +- Display +- Speaker +- Battery Charging +layout: download +manufacturer: Radomir Dopieralski +name: µGame 22 +title: µGame 22 Download --- A comfortable gaming handheld for CircuitPython, continuing the work started with [#µGame](https://hackaday.io/project/27629), through [#PewPew M4](https://hackaday.io/project/165032) and [#PewPew S2](https://hackaday.io/project/178061). A large 3.2" screen, an RP2040 microcontroller, 2MB of flash memory and a small speaker, all in a convenient form factor, with a laser-cut case and two AAA batteries for power. diff --git a/_board/unexpectedmaker_bling.md b/_board/unexpectedmaker_bling.md index bb26ff1099..0380654152 100644 --- a/_board/unexpectedmaker_bling.md +++ b/_board/unexpectedmaker_bling.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "unexpectedmaker_bling" -title: "Unexpected Maker Bling Download" -name: "Unexpected Maker Bling" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_bling +board_image: unexpectedmaker_bling.jpg board_url: - - "https://unexpectedmaker.com/shop.html#!/BLING/p/596946493/category=0" -board_image: "unexpectedmaker_bling.jpg" -date_added: 2023-11-15 +- https://unexpectedmaker.com/shop.html#!/BLING/p/596946493/category=0 +date_added: 2023-11-15 12:00:00 family: esp32s3 -features: +features: null +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker Bling +title: Unexpected Maker Bling Download --- ### There are 3 versions of BLING! @@ -59,4 +59,4 @@ You also get a STEMMA/QT connector and a bunch of IO and power broken out on an SoloBLING is just the 40x8 RGB LED matrix on its own. It provides the BLING, you provide everything else. ## Purchase - * [Unexpected Maker](https://unexpectedmaker.com/shop.html#!/BLING/p/596946493/category=0) \ No newline at end of file + * [Unexpected Maker](https://unexpectedmaker.com/shop.html#!/BLING/p/596946493/category=0) diff --git a/_board/unexpectedmaker_blizzard_s3.md b/_board/unexpectedmaker_blizzard_s3.md index ec27d8cb0e..8820b0bcc2 100644 --- a/_board/unexpectedmaker_blizzard_s3.md +++ b/_board/unexpectedmaker_blizzard_s3.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "unexpectedmaker_blizzard_s3" -title: "Unexpected Maker Blizzard S3 Download" -name: "Unexpected Maker Blizzard S3" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_blizzard_s3 +board_image: unexpectedmaker_blizzard_s3.jpg board_url: - - "https://unexpectedmaker.com/shop.html" -board_image: "unexpectedmaker_blizzard_s3.jpg" -date_added: 2023-11-15 -family: esp32s3 +- https://unexpectedmaker.com/shop.html bootloader_id: unexpectedmaker_blizzard_s3 -features: +date_added: 2023-11-15 12:00:00 +family: esp32s3 +features: null +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker Blizzard S3 +title: Unexpected Maker Blizzard S3 Download --- -Oops! Looks like we don't know anything about this board. This means it's likely very new. \ No newline at end of file +Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/unexpectedmaker_feathers2.md b/_board/unexpectedmaker_feathers2.md index a6b29ab86b..ad838c1099 100644 --- a/_board/unexpectedmaker_feathers2.md +++ b/_board/unexpectedmaker_feathers2.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "unexpectedmaker_feathers2" -title: "Unexpected Maker FeatherS2 Download" -name: "Unexpected Maker FeatherS2" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_feathers2 +board_image: unexpectedmaker_feathers2.jpg board_url: - - "https://unexpectedmaker.com/shop/feathers2-esp32-s2" - - "https://www.adafruit.com/product/4769" -board_image: "unexpectedmaker_feathers2.jpg" -date_added: 2020-10-1 -family: esp32s2 +- https://unexpectedmaker.com/shop/feathers2-esp32-s2 +- https://www.adafruit.com/product/4769 bootloader_id: unexpectedmaker_feathers2 +date_added: 2020-10-01 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - Wi-Fi - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Wi-Fi +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker FeatherS2 +title: Unexpected Maker FeatherS2 Download --- Introducing the FeatherS2 - The PRO ESP32-S2 based development board in a Feather format! diff --git a/_board/unexpectedmaker_feathers2_neo.md b/_board/unexpectedmaker_feathers2_neo.md index a739565dc9..37ca16dac8 100644 --- a/_board/unexpectedmaker_feathers2_neo.md +++ b/_board/unexpectedmaker_feathers2_neo.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "unexpectedmaker_feathers2_neo" -title: "Unexpected Maker FeatherS2 Neo Download" -name: "Unexpected Maker FeatherS2 Neo" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_feathers2_neo +board_image: unexpectedmaker_feathers2_neo.jpg board_url: - - "https://unexpectedmaker.com/shop/feathers2neo-esp32s2" - - "https://www.adafruit.com/product/5629" -board_image: "unexpectedmaker_feathers2_neo.jpg" -date_added: 2021-08-31 -family: esp32s2 +- https://unexpectedmaker.com/shop/feathers2neo-esp32s2 +- https://www.adafruit.com/product/5629 bootloader_id: unexpectedmaker_feathers2_neo +date_added: 2021-08-31 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - Wi-Fi - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Wi-Fi +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker FeatherS2 Neo +title: Unexpected Maker FeatherS2 Neo Download --- Introducing the FeatherS2 Neo - The Blingy RGB ESP32-S2 based development board in a Feather format! diff --git a/_board/unexpectedmaker_feathers2_prerelease.md b/_board/unexpectedmaker_feathers2_prerelease.md index 81ad715965..62fffc34d6 100644 --- a/_board/unexpectedmaker_feathers2_prerelease.md +++ b/_board/unexpectedmaker_feathers2_prerelease.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "unexpectedmaker_feathers2_prerelease" -title: "Unexpected Maker FeatherS2 Prerelease Download" -name: "Unexpected Maker FeatherS2 Prerelease" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_feathers2_prerelease +board_image: unexpectedmaker_feathers2_prerelease.jpg board_url: - - "https://unexpectedmaker.com/shop/feathers2-esp32-s2" - - "https://www.adafruit.com/product/4769" -board_image: "unexpectedmaker_feathers2_prerelease.jpg" -date_added: 2020-6-14 -family: esp32s2 +- https://unexpectedmaker.com/shop/feathers2-esp32-s2 +- https://www.adafruit.com/product/4769 bootloader_id: unexpectedmaker_feathers2 +date_added: 2020-06-14 12:00:00 +family: esp32s2 features: - - Feather-Compatible - - Battery Charging - - Wi-Fi - - STEMMA QT/QWIIC - - USB-C - - Breadboard-Friendly +- Feather-Compatible +- Battery Charging +- Wi-Fi +- STEMMA QT/QWIIC +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker FeatherS2 Prerelease +title: Unexpected Maker FeatherS2 Prerelease Download --- Pre-Release version of the FeatherS2 diff --git a/_board/unexpectedmaker_feathers3.md b/_board/unexpectedmaker_feathers3.md index 25bce5616d..4e307c005c 100644 --- a/_board/unexpectedmaker_feathers3.md +++ b/_board/unexpectedmaker_feathers3.md @@ -1,24 +1,24 @@ --- -layout: download -board_id: "unexpectedmaker_feathers3" -title: "Unexpected Maker FeatherS3 Download" -name: "Unexpected Maker FeatherS3" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_feathers3 +board_image: unexpectedmaker_feathers3.jpg board_url: - - "https://unexpectedmaker.com/shop/feathers3" - - "https://www.adafruit.com/product/5399" - - "https://www.adafruit.com/product/5748" -board_image: "unexpectedmaker_feathers3.jpg" -date_added: 2022-01-29 -family: esp32s3 +- https://unexpectedmaker.com/shop/feathers3 +- https://www.adafruit.com/product/5399 +- https://www.adafruit.com/product/5748 bootloader_id: unexpectedmaker_feathers3 +date_added: 2022-01-29 12:00:00 +family: esp32s3 features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - STEMMA QT/QWIIC - - USB-C - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker FeatherS3 +title: Unexpected Maker FeatherS3 Download --- Introducing the FeatherS3 - The Pro ESP32-S3 Development Board in the Feather Format! diff --git a/_board/unexpectedmaker_nanos3.md b/_board/unexpectedmaker_nanos3.md index 7944f69ad3..a6e45bb50a 100644 --- a/_board/unexpectedmaker_nanos3.md +++ b/_board/unexpectedmaker_nanos3.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "unexpectedmaker_nanos3" -title: "Unexpected Maker NanoS3 Download" -name: "Unexpected Maker NanoS3" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_nanos3 +board_image: unexpectedmaker_nanos3.jpg board_url: - - "https://unexpectedmaker.com/shop/nanos3" -board_image: "unexpectedmaker_nanos3.jpg" -date_added: 2023-6-26 -family: esp32s3 +- https://unexpectedmaker.com/shop/nanos3 bootloader_id: unexpectedmaker_nanos3 +date_added: 2023-06-26 12:00:00 +family: esp32s3 features: - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker NanoS3 +title: Unexpected Maker NanoS3 Download --- Introducing the NanoS3 - The world’s smallest, fully-featured ESP32-S3 board in module form! diff --git a/_board/unexpectedmaker_pros3.md b/_board/unexpectedmaker_pros3.md index 02b2b224b7..dbb24c3c02 100644 --- a/_board/unexpectedmaker_pros3.md +++ b/_board/unexpectedmaker_pros3.md @@ -1,24 +1,24 @@ --- -layout: download -board_id: "unexpectedmaker_pros3" -title: "Unexpected Maker ProS3 Download" -name: "Unexpected Maker ProS3" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_pros3 +board_image: unexpectedmaker_pros3.jpg board_url: - - "https://unexpectedmaker.com/shop/pros3" - - "https://www.adafruit.com/product/5401" - - "https://www.adafruit.com/product/5749" -board_image: "unexpectedmaker_pros3.jpg" -date_added: 2022-01-29 -family: esp32s3 +- https://unexpectedmaker.com/shop/pros3 +- https://www.adafruit.com/product/5401 +- https://www.adafruit.com/product/5749 bootloader_id: unexpectedmaker_pros3 +date_added: 2022-01-29 12:00:00 +family: esp32s3 features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - STEMMA QT/QWIIC - - USB-C - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- STEMMA QT/QWIIC +- USB-C +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker ProS3 +title: Unexpected Maker ProS3 Download --- Introducing the ProS3 - The Ultimate Pro ESP32-S3 Development Board! diff --git a/_board/unexpectedmaker_tinyc6.md b/_board/unexpectedmaker_tinyc6.md index ec10a1b6ce..3590bc8eed 100644 --- a/_board/unexpectedmaker_tinyc6.md +++ b/_board/unexpectedmaker_tinyc6.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "unexpectedmaker_tinyc6" -title: "Unexpected Maker TinyC6 Download" -name: "Unexpected Maker TinyC6" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_tinyc6 +board_image: unexpectedmaker_tinyc6.jpg board_url: - - "https://unexpectedmaker.com/shop.html#!/TinyC6/p/602208790/category=0" -board_image: "unexpectedmaker_tinyc6.jpg" -date_added: 2023-11-22 -family: esp32c6 +- https://unexpectedmaker.com/shop.html#!/TinyC6/p/602208790/category=0 bootloader_id: unexpectedmaker_tinyc6 +date_added: 2023-11-22 12:00:00 +family: esp32c6 features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - USB-C - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- USB-C +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker TinyC6 +title: Unexpected Maker TinyC6 Download --- Introducing the TinyC6 - The Mighty Tiny ESP32-C6 based development board! diff --git a/_board/unexpectedmaker_tinypico.md b/_board/unexpectedmaker_tinypico.md index 3d0d031063..3cd881a464 100644 --- a/_board/unexpectedmaker_tinypico.md +++ b/_board/unexpectedmaker_tinypico.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "unexpectedmaker_tinypico" -title: "Unexpected Maker TinyPICO Download" -name: "Unexpected Maker TinyPICO" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_tinypico +board_image: unexpectedmaker_tinypico.jpg board_url: - - "https://unexpectedmaker.com/shop/tinypico-usbc" - - "https://www.adafruit.com/product/5028" - - "https://www.adafruit.com/product/5750" -board_image: "unexpectedmaker_tinypico.jpg" -date_added: 2022-9-18 -family: esp32 +- https://unexpectedmaker.com/shop/tinypico-usbc +- https://www.adafruit.com/product/5028 +- https://www.adafruit.com/product/5750 +date_added: 2022-09-18 12:00:00 downloads_display: true +family: esp32 features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - USB-C - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- USB-C +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker TinyPICO +title: Unexpected Maker TinyPICO Download --- Introducing the TinyPICO - The Mighty Tiny ESP32 based development board! @@ -52,4 +52,3 @@ You can find out more about how at [Circuitpython with ESP32 quick start](https: * [Adafruit with u.FL](https://www.adafruit.com/product/5750) * [Pimoroni](https://shop.pimoroni.com/products/tinypico-v2?variant=3928508953403) * [Unexpected Maker](https://unexpectedmaker.com/shop/tinypico-usbc) - diff --git a/_board/unexpectedmaker_tinypico_nano.md b/_board/unexpectedmaker_tinypico_nano.md index b86d2df7e1..6be3790679 100644 --- a/_board/unexpectedmaker_tinypico_nano.md +++ b/_board/unexpectedmaker_tinypico_nano.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "unexpectedmaker_tinypico_nano" -title: "Unexpected Maker TinyPICO NANO Download" -name: "Unexpected Maker TinyPICO NANO" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_tinypico_nano +board_image: unexpectedmaker_tinypico_nano.jpg board_url: - - "https://unexpectedmaker.com/shop/tinypico-nano" -board_image: "unexpectedmaker_tinypico_nano.jpg" -date_added: 2022-9-18 -family: esp32 +- https://unexpectedmaker.com/shop/tinypico-nano +date_added: 2022-09-18 12:00:00 downloads_display: true +family: esp32 features: - - Battery Charging - - Bluetooth/BTLE - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker TinyPICO NANO +title: Unexpected Maker TinyPICO NANO Download --- Introducing the TinyPICO NANO - The Mighty Tiny ESP32 all in one module! diff --git a/_board/unexpectedmaker_tinys2.md b/_board/unexpectedmaker_tinys2.md index e83f894dad..0f6cc9fa08 100644 --- a/_board/unexpectedmaker_tinys2.md +++ b/_board/unexpectedmaker_tinys2.md @@ -1,21 +1,21 @@ --- -layout: download -board_id: "unexpectedmaker_tinys2" -title: "Unexpected Maker TinyS2 Download" -name: "Unexpected Maker TinyS2" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_tinys2 +board_image: unexpectedmaker_tinys2.jpg board_url: - - "https://unexpectedmaker.com/shop/tinys2-esp32-s2" - - "https://www.adafruit.com/product/5029" -board_image: "unexpectedmaker_tinys2.jpg" -date_added: 2021-03-20 -family: esp32s2 +- https://unexpectedmaker.com/shop/tinys2-esp32-s2 +- https://www.adafruit.com/product/5029 bootloader_id: unexpectedmaker_tinys2 +date_added: 2021-03-20 12:00:00 +family: esp32s2 features: - - Battery Charging - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Battery Charging +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker TinyS2 +title: Unexpected Maker TinyS2 Download --- Introducing the TinyS2 - The Mighty Tiny ESP32-S2 based development board! diff --git a/_board/unexpectedmaker_tinys3.md b/_board/unexpectedmaker_tinys3.md index 0a497cbe3a..40df0a09fa 100644 --- a/_board/unexpectedmaker_tinys3.md +++ b/_board/unexpectedmaker_tinys3.md @@ -1,23 +1,23 @@ --- -layout: download -board_id: "unexpectedmaker_tinys3" -title: "Unexpected Maker TinyS3 Download" -name: "Unexpected Maker TinyS3" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_tinys3 +board_image: unexpectedmaker_tinys3.jpg board_url: - - "https://unexpectedmaker.com/shop/ttinys3-esp32s3" - - "https://www.adafruit.com/product/5398" - - "https://www.adafruit.com/product/5747" -board_image: "unexpectedmaker_tinys3.jpg" -date_added: 2022-01-29 -family: esp32s3 +- https://unexpectedmaker.com/shop/ttinys3-esp32s3 +- https://www.adafruit.com/product/5398 +- https://www.adafruit.com/product/5747 bootloader_id: unexpectedmaker_tinys3 +date_added: 2022-01-29 12:00:00 +family: esp32s3 features: - - Battery Charging - - Bluetooth/BTLE - - Breadboard-Friendly - - USB-C - - Wi-Fi +- Battery Charging +- Bluetooth/BTLE +- Breadboard-Friendly +- USB-C +- Wi-Fi +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker TinyS3 +title: Unexpected Maker TinyS3 Download --- Introducing the TinyS3 - The Mighty Tiny ESP32-S3 based development board! diff --git a/_board/unexpectedmaker_tinywatch_s3.md b/_board/unexpectedmaker_tinywatch_s3.md index 269967d918..29a2d1566b 100644 --- a/_board/unexpectedmaker_tinywatch_s3.md +++ b/_board/unexpectedmaker_tinywatch_s3.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "unexpectedmaker_tinywatch_s3" -title: "Unexpected Maker TinyWATCH S3 Download" -name: "Unexpected Maker TinyWATCH S3" -manufacturer: "Unexpected Maker" +board_id: unexpectedmaker_tinywatch_s3 +board_image: unexpectedmaker_tinywatch_s3.jpg board_url: - - "https://unexpectedmaker.com/shop.html" -board_image: "unexpectedmaker_tinywatch_s3.jpg" -date_added: 2023-11-15 +- https://unexpectedmaker.com/shop.html +date_added: 2023-11-15 12:00:00 family: esp32s3 -features: +features: null +layout: download +manufacturer: Unexpected Maker +name: Unexpected Maker TinyWATCH S3 +title: Unexpected Maker TinyWATCH S3 Download --- -Oops! Looks like we don't know anything about this board. This means it's likely very new. \ No newline at end of file +Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/unknown.md b/_board/unknown.md index c5593a88cb..99622db1fe 100644 --- a/_board/unknown.md +++ b/_board/unknown.md @@ -1,12 +1,12 @@ --- +board_id: unknown +board_image: unknown.jpg +board_url: null +date_added: '' layout: download -board_id: "unknown" -title: "Unknown Board Download" -name: "Unknown Board" -manufacturer: "Unknown" -board_url: -board_image: "unknown.jpg" - +manufacturer: Unknown +name: Unknown Board +title: Unknown Board Download --- Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/upico.md b/_board/upico.md index 77a367c212..881ae7d8d7 100644 --- a/_board/upico.md +++ b/_board/upico.md @@ -1,15 +1,15 @@ --- -layout: download -board_id: "upico" -title: "uPico Download" -name: "uPico" -manufacturer: "Quadbit" +board_id: upico +board_image: upico.jpg board_url: - - "https://github.com/dotcypress/upico" -board_image: "upico.jpg" -date_added: 2023-11-29 +- https://github.com/dotcypress/upico +date_added: 2023-11-29 12:00:00 family: raspberrypi -features: +features: null +layout: download +manufacturer: Quadbit +name: uPico +title: uPico Download --- uPico is a RP2040 powered expansion card designed to enhance the capabilities of [Clockwork's uConsole](https://www.clockworkpi.com/uconsole). diff --git a/_board/vcc_gnd_yd_rp2040.md b/_board/vcc_gnd_yd_rp2040.md index a86dd78ba4..a8a18213c4 100644 --- a/_board/vcc_gnd_yd_rp2040.md +++ b/_board/vcc_gnd_yd_rp2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "vcc_gnd_yd_rp2040" -title: "YD-RP2040 Download" -name: "YD-RP2040" -manufacturer: "VCC-GND Studio" +board_id: vcc_gnd_yd_rp2040 +board_image: vcc_gnd_yd_rp2040.jpg board_url: - - "https://www.aliexpress.us/item/3256803817805852.html" -board_image: "vcc_gnd_yd_rp2040.jpg" -date_added: 2022-10-14 +- https://www.aliexpress.us/item/3256803817805852.html +date_added: 2022-10-14 12:00:00 family: raspberrypi features: - - Breadboard-Friendly - - USB-C +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: VCC-GND Studio +name: YD-RP2040 +title: YD-RP2040 Download --- Flexible I/O connects RP2040 to the physical world by allowing it to speak to almost anyexternal device. High performance breezes through integer workloads. Low cost helps ease the barrier to entry. diff --git a/_board/warmbit_bluepixel.md b/_board/warmbit_bluepixel.md index 76fd414c42..bca5607232 100644 --- a/_board/warmbit_bluepixel.md +++ b/_board/warmbit_bluepixel.md @@ -1,14 +1,14 @@ --- -layout: download -board_id: "warmbit_bluepixel" -title: "Warmbit BluePixel Download" -name: "Warmbit BluePixel" -manufacturer: "Warmbit" -board_url: -board_image: "unknown.jpg" -date_added: 2021-9-3 -family: nrf52840 +board_id: warmbit_bluepixel +board_image: unknown.jpg +board_url: null +date_added: 2021-09-03 12:00:00 downloads_display: false +family: nrf52840 +layout: download +manufacturer: Warmbit +name: Warmbit BluePixel +title: Warmbit BluePixel Download --- Oops! Looks like we don't know anything about this board. This means it's likely very new. diff --git a/_board/waveshare_esp32_s2_pico_lcd.md b/_board/waveshare_esp32_s2_pico_lcd.md index 4a1d66819e..53298b2afc 100644 --- a/_board/waveshare_esp32_s2_pico_lcd.md +++ b/_board/waveshare_esp32_s2_pico_lcd.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "waveshare_esp32_s2_pico_lcd" -title: "ESP32-S2-Pico with LCD Download" -name: "ESP32-S2-Pico with LCD" -manufacturer: "Waveshare" +board_id: waveshare_esp32_s2_pico_lcd +board_image: waveshare_esp32_s2_pico_lcd.jpg board_url: - - "https://www.waveshare.com/wiki/ESP32-S2-Pico" -board_image: "waveshare_esp32_s2_pico_lcd.jpg" +- https://www.waveshare.com/wiki/ESP32-S2-Pico bootloader_id: waveshare_esp32_s2_pico_lcd -date_added: 2022-8-22 +date_added: 2022-08-22 12:00:00 family: esp32s2 features: - - Wi-Fi - - USB-C - - Display - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Display +- Breadboard-Friendly +layout: download +manufacturer: Waveshare +name: ESP32-S2-Pico with LCD +title: ESP32-S2-Pico with LCD Download --- This is a WiFi development board with compact size, plenty peripheral interfaces, integrated low-power Wi-Fi System-on-Chip (SoC) and mass memory, supporting Raspberry Pi Pico expansion board ecosystem. diff --git a/_board/waveshare_esp32_s3_pico.md b/_board/waveshare_esp32_s3_pico.md index e8487b5aa6..32ad3139f7 100644 --- a/_board/waveshare_esp32_s3_pico.md +++ b/_board/waveshare_esp32_s3_pico.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "waveshare_esp32_s3_pico" -title: "ESP32-S3-Pico Download" -name: "ESP32-S3-Pico" -manufacturer: "Waveshare" +board_id: waveshare_esp32_s3_pico +board_image: ESP32-S3-Pico.jpg board_url: - - "https://www.waveshare.com/esp32-s3.htm" -board_image: "ESP32-S3-Pico.jpg" +- https://www.waveshare.com/esp32-s3.htm bootloader_id: waveshare_esp32_s3_pico -date_added: 2023-8-30 +date_added: 2023-08-30 12:00:00 family: esp32s3 features: - - Breadboard-Friendly - - USB-C - - Wi-Fi - - Bluetooth/BTLE +- Breadboard-Friendly +- USB-C +- Wi-Fi +- Bluetooth/BTLE +layout: download +manufacturer: Waveshare +name: ESP32-S3-Pico +title: ESP32-S3-Pico Download --- This is a WiFi development board with compact size, plenty peripheral interfaces, integrated low-power Wi-Fi System-on-Chip (SoC) and mass memory, supporting Raspberry Pi Pico expansion board ecosystem. @@ -37,4 +37,3 @@ Waveshare wiki [link](https://www.waveshare.com/wiki/ESP32-S3-Pico). ## Purchase * [Waveshare]([https://www.waveshare.com/esp32-s3-pico.htm) - diff --git a/_board/waveshare_esp32_s3_zero.md b/_board/waveshare_esp32_s3_zero.md index 73e13a293e..6826857b9f 100644 --- a/_board/waveshare_esp32_s3_zero.md +++ b/_board/waveshare_esp32_s3_zero.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "waveshare_esp32_s3_zero" -title: "Waveshare ESP32-S3-Zero Download" -name: "Waveshare ESP32-S3-Zero" -manufacturer: "Waveshare" +board_id: waveshare_esp32_s3_zero +board_image: waveshare_esp32_s3_zero.png board_url: - - "https://www.waveshare.com/esp32-s3-zero.htm" -board_image: "waveshare_esp32_s3_zero.png" -date_added: 2023-10-21 -family: esp32s3 +- https://www.waveshare.com/esp32-s3-zero.htm bootloader_id: adafruit_feather_esp32s3 +date_added: 2023-10-21 12:00:00 downloads_display: true +family: esp32s3 features: - - Wi-Fi - - USB-C - - Breadboard-Friendly +- Wi-Fi +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Waveshare +name: Waveshare ESP32-S3-Zero +title: Waveshare ESP32-S3-Zero Download --- Tiny, but mighty! This board with a powerful ESP32-S3 MCU measures in at 24.8mmx18mm (23.5mm for just the PCB, the USB-C connector sticks out a little bit). Despite it's small size it still exposes a wealth of GPIO connections - a whopping 34 in total. It does however have 'only' 4MB of Flash storage rather than the more typical 8MB found on most ESP32-S3 boards (and even 16MB on some). diff --git a/_board/waveshare_esp32s2_pico.md b/_board/waveshare_esp32s2_pico.md index 527ad65521..14165ca03d 100644 --- a/_board/waveshare_esp32s2_pico.md +++ b/_board/waveshare_esp32s2_pico.md @@ -1,19 +1,19 @@ --- -layout: download -board_id: "waveshare_esp32s2_pico" -title: "ESP32-S2-Pico Download" -name: "ESP32-S2-Pico" -manufacturer: "Waveshare" +board_id: waveshare_esp32s2_pico +board_image: waveshare_esp32s2_pico.jpg board_url: - - "https://www.waveshare.com/esp32-s2.htm" -board_image: "waveshare_esp32s2_pico.jpg" +- https://www.waveshare.com/esp32-s2.htm bootloader_id: waveshare_esp32s2_pico -date_added: 2022-8-21 +date_added: 2022-08-21 12:00:00 family: esp32s2 features: - - Breadboard-Friendly - - USB-C - - Wi-Fi +- Breadboard-Friendly +- USB-C +- Wi-Fi +layout: download +manufacturer: Waveshare +name: ESP32-S2-Pico +title: ESP32-S2-Pico Download --- This is a WiFi development board with compact size, plenty peripheral interfaces, integrated low-power Wi-Fi System-on-Chip (SoC) and mass memory, supporting Raspberry Pi Pico expansion board ecosystem. diff --git a/_board/waveshare_rp2040_lcd_0_96.md b/_board/waveshare_rp2040_lcd_0_96.md index 9e0bf51bce..a2639dff63 100644 --- a/_board/waveshare_rp2040_lcd_0_96.md +++ b/_board/waveshare_rp2040_lcd_0_96.md @@ -1,20 +1,20 @@ --- -layout: download -board_id: "waveshare_rp2040_lcd_0_96" -title: "Waveshare RP2040-LCD-0.96 Download" -name: "RP2040-LCD-0.96" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_lcd_0_96 +board_image: waveshare_rp2040_lcd_0_96.jpg board_url: - - "https://www.waveshare.com/rp2040-lcd-0.96.htm" -board_image: "waveshare_rp2040_lcd_0_96.jpg" -date_added: 2023-4-7 +- https://www.waveshare.com/rp2040-lcd-0.96.htm +date_added: 2023-04-07 12:00:00 downloads_display: true family: raspberrypi features: - - Battery Charging - - Breadboard-Friendly - - Display - - USB-C +- Battery Charging +- Breadboard-Friendly +- Display +- USB-C +layout: download +manufacturer: Waveshare +name: RP2040-LCD-0.96 +title: Waveshare RP2040-LCD-0.96 Download --- RP2040-LCD-0.96 is a low-cost, high-performance Pico-like MCU board with flexible digital interfaces. It incorporates Raspberry Pi's RP2040 microcontroller chip, as same as the one on Raspberry Pi Pico. For software development, either Raspberry Pi's C/C++ SDK, or the MicroPython is available, which makes it easy for you to get started, and integrate it into end products quickly. diff --git a/_board/waveshare_rp2040_lcd_1_28.md b/_board/waveshare_rp2040_lcd_1_28.md index 6c2bf5dde8..532045c462 100644 --- a/_board/waveshare_rp2040_lcd_1_28.md +++ b/_board/waveshare_rp2040_lcd_1_28.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "waveshare_rp2040_lcd_1_28" -title: "RP2040-LCD-1.28 Download" -name: "RP2040-LCD-1.28" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_lcd_1_28 +board_image: waveshare_rp2040_lcd_1_28.jpg board_url: - - "https://www.waveshare.com/rp2040-lcd-1.28.htm" -board_image: "waveshare_rp2040_lcd_1_28.jpg" -date_added: 2023-1-31 +- https://www.waveshare.com/rp2040-lcd-1.28.htm +date_added: 2023-01-31 12:00:00 family: raspberrypi features: - - USB-C - - Battery Charging - - Display +- USB-C +- Battery Charging +- Display +layout: download +manufacturer: Waveshare +name: RP2040-LCD-1.28 +title: RP2040-LCD-1.28 Download --- RP2040-LCD-1.28 is a low-cost, high-performance MCU board designed by Waveshare. Tiny size with onboard 1.28inch LCD round display, Li-ion battery recharge manager, 6-axis sensor (3-axis accelerometer and 3-axis gyroscope) and so on, adapting all GPIO and Debug pins, which makes it easy for you to develop and integrate it into products quickly. diff --git a/_board/waveshare_rp2040_plus_16mb.md b/_board/waveshare_rp2040_plus_16mb.md index 61f8014eff..e8117a99fd 100644 --- a/_board/waveshare_rp2040_plus_16mb.md +++ b/_board/waveshare_rp2040_plus_16mb.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "waveshare_rp2040_plus_16mb" -title: "RP2040-Plus with 16MB Flash Download" -name: "RP2040-Plus with 16MB Flash" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_plus_16mb +board_image: waveshare_rp2040_plus.jpg board_url: - - "https://www.waveshare.com/rp2040-plus.htm" -board_image: "waveshare_rp2040_plus.jpg" -date_added: 2023-10-27 +- https://www.waveshare.com/rp2040-plus.htm +date_added: 2023-10-27 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Waveshare +name: RP2040-Plus with 16MB Flash +title: RP2040-Plus with 16MB Flash Download --- Need more Flash for Raspberry Pi Pico? Dislike the outdated Micro USB connector? All these problems are solved by our **RP2040-Plus** now. diff --git a/_board/waveshare_rp2040_plus_4mb.md b/_board/waveshare_rp2040_plus_4mb.md index c738d93288..ff9a65966c 100644 --- a/_board/waveshare_rp2040_plus_4mb.md +++ b/_board/waveshare_rp2040_plus_4mb.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "waveshare_rp2040_plus_4mb" -title: "RP2040-Plus with 4MB Flash Download" -name: "RP2040-Plus with 4MB Flash" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_plus_4mb +board_image: waveshare_rp2040_plus.jpg board_url: - - "https://www.waveshare.com/rp2040-plus.htm" -board_image: "waveshare_rp2040_plus.jpg" -date_added: 2023-10-27 +- https://www.waveshare.com/rp2040-plus.htm +date_added: 2023-10-27 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Waveshare +name: RP2040-Plus with 4MB Flash +title: RP2040-Plus with 4MB Flash Download --- Need more Flash for Raspberry Pi Pico? Dislike the outdated Micro USB connector? All these problems are solved by our **RP2040-Plus** now. diff --git a/_board/waveshare_rp2040_tiny.md b/_board/waveshare_rp2040_tiny.md index 1757cdc5df..df6a96d7f7 100644 --- a/_board/waveshare_rp2040_tiny.md +++ b/_board/waveshare_rp2040_tiny.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "waveshare_rp2040_tiny" -title: "Waveshare RP2040-Tiny Download" -name: "RP2040-Tiny" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_tiny +board_image: waveshare_rp2040_tiny.jpg board_url: - - "https://www.waveshare.com/wiki/RP2040-Tiny" -board_image: "waveshare_rp2040_tiny.jpg" -date_added: 2024-3-18 +- https://www.waveshare.com/wiki/RP2040-Tiny +date_added: 2024-03-18 12:00:00 family: raspberrypi features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: Waveshare +name: RP2040-Tiny +title: Waveshare RP2040-Tiny Download --- Waveshare RP2040-Tiny Development Board, Raspberry Pi Microcontroller Development Board, Based On Official RP2040 Dual Core Processor, USB Port Adapter Board Optional diff --git a/_board/waveshare_rp2040_touch_lcd_1_28.md b/_board/waveshare_rp2040_touch_lcd_1_28.md index 764a1f207c..dcaecc4979 100644 --- a/_board/waveshare_rp2040_touch_lcd_1_28.md +++ b/_board/waveshare_rp2040_touch_lcd_1_28.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "waveshare_rp2040_touch_lcd_1_28" -title: "RP2040-Touch-LCD-1.28 Download" -name: "RP2040-Touch-LCD-1.28" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_touch_lcd_1_28 +board_image: waveshare_rp2040_touch_lcd_1_28.jpg board_url: - - "https://www.waveshare.com/product/raspberry-pi/boards-kits/raspberry-pi-pico-cat/rp2040-touch-lcd-1.28.htm" -board_image: "waveshare_rp2040_touch_lcd_1_28.jpg" -date_added: 2023-10-27 +- https://www.waveshare.com/product/raspberry-pi/boards-kits/raspberry-pi-pico-cat/rp2040-touch-lcd-1.28.htm +date_added: 2023-10-27 12:00:00 family: raspberrypi features: - - USB-C - - Battery Charging - - Display +- USB-C +- Battery Charging +- Display +layout: download +manufacturer: Waveshare +name: RP2040-Touch-LCD-1.28 +title: RP2040-Touch-LCD-1.28 Download --- **RP2040-Touch-LCD-1.28** is a low-cost, high-performance MCU board designed by Waveshare, tiny size, with onboard 1.28inch capacitive touch display, Li-ion battery recharge manager, 6-axis sensor (3-axis accelerometer and 3-axis gyroscope), and so on, which makes it easy for you to develop and integrate it into products quickly. diff --git a/_board/waveshare_rp2040_zero.md b/_board/waveshare_rp2040_zero.md index 499311f01e..b8b1c218bf 100644 --- a/_board/waveshare_rp2040_zero.md +++ b/_board/waveshare_rp2040_zero.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "waveshare_rp2040_zero" -title: "Waveshare RP2040-Zero Download" -name: "RP2040-Zero" -manufacturer: "Waveshare" +board_id: waveshare_rp2040_zero +board_image: waveshare_rp2040_zero.jpg board_url: - - "https://www.waveshare.com/rp2040-zero.htm" -board_image: "waveshare_rp2040_zero.jpg" -date_added: 2022-1-12 +- https://www.waveshare.com/rp2040-zero.htm +date_added: 2022-01-12 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: Waveshare +name: RP2040-Zero +title: Waveshare RP2040-Zero Download --- a Pico-like MCU board based on Raspberry Pi RP2040 diff --git a/_board/weact_esp32c6_n4.md b/_board/weact_esp32c6_n4.md index 73ca1b4ad1..1ad121dc40 100644 --- a/_board/weact_esp32c6_n4.md +++ b/_board/weact_esp32c6_n4.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "weact_esp32c6_n4" -title: "WeAct Studio ESP32-C6 N4 Download" -name: "WeAct Studio ESP32-C6 N4" -manufacturer: "WeAct Studio" +board_id: weact_esp32c6_n4 +board_image: weact_esp32c6.jpg board_url: - - "https://www.aliexpress.us/item/3256805383205472.html" -board_image: "weact_esp32c6.jpg" -date_added: 2023-11-15 +- https://www.aliexpress.us/item/3256805383205472.html +date_added: 2023-11-15 12:00:00 family: esp32c6 features: - - USB-C - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - +- USB-C +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: WeAct Studio +name: WeAct Studio ESP32-C6 N4 +title: WeAct Studio ESP32-C6 N4 Download --- WeAct ESP32-C6 Minimal System Development Board with WiFi6 and Bluetooth diff --git a/_board/weact_esp32c6_n8.md b/_board/weact_esp32c6_n8.md index 51d4effcba..8980bf1e66 100644 --- a/_board/weact_esp32c6_n8.md +++ b/_board/weact_esp32c6_n8.md @@ -1,20 +1,19 @@ --- -layout: download -board_id: "weact_esp32c6_n8" -title: "WeAct Studio ESP32-C6 N8 Download" -name: "WeAct Studio ESP32-C6 N8" -manufacturer: "WeAct Studio" +board_id: weact_esp32c6_n8 +board_image: weact_esp32c6.jpg board_url: - - "https://www.aliexpress.us/item/3256805383205472.html?skuId=12000034319347394" -board_image: "weact_esp32c6.jpg" -date_added: 2023-11-15 +- https://www.aliexpress.us/item/3256805383205472.html?skuId=12000034319347394 +date_added: 2023-11-15 12:00:00 family: esp32c6 features: - - USB-C - - Wi-Fi - - Bluetooth/BTLE - - Breadboard-Friendly - +- USB-C +- Wi-Fi +- Bluetooth/BTLE +- Breadboard-Friendly +layout: download +manufacturer: WeAct Studio +name: WeAct Studio ESP32-C6 N8 +title: WeAct Studio ESP32-C6 N8 Download --- WeAct ESP32-C6 Minimal System Development Board with WiFi6 and Bluetooth diff --git a/_board/weact_studio_pico.md b/_board/weact_studio_pico.md index 675c641ec9..3c0c1c10b3 100644 --- a/_board/weact_studio_pico.md +++ b/_board/weact_studio_pico.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "weact_studio_pico" -title: "WeAct Studio Pico Download" -name: "WeAct Studio Pico" -manufacturer: "WeAct Studio" +board_id: weact_studio_pico +board_image: weact_studio_pico.jpg board_url: - - "https://www.aliexpress.com/item/3256803521775546.html" -board_image: "weact_studio_pico.jpg" -date_added: 2022-6-9 +- https://www.aliexpress.com/item/3256803521775546.html +date_added: 2022-06-09 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: WeAct Studio +name: WeAct Studio Pico +title: WeAct Studio Pico Download --- The Raspberry Pi Pico is a microcontroller board based on the Raspberry Pi RP2040 microcontroller chip. It has been designed to be a low-cost, high-performance microcontroller board with flexible digital interfaces. The Raspberry Pi Pico features two ARM Cortex-M0+ cores run up to 133MHz; 256KB RAM; 30 GPIO pins; and a broad range of interfacing options. This is paired with 2MB/4MB/8MB/16MB of onboard QSPI Flash memory for code and data storage. diff --git a/_board/weact_studio_pico_16mb.md b/_board/weact_studio_pico_16mb.md index da3b7c1128..bd18f6201d 100644 --- a/_board/weact_studio_pico_16mb.md +++ b/_board/weact_studio_pico_16mb.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "weact_studio_pico_16mb" -title: "WeAct Studio Pico (16MB Variant) Download" -name: "WeAct Studio Pico (16MB Variant)" -manufacturer: "WeAct Studio" +board_id: weact_studio_pico_16mb +board_image: weact_studio_pico.jpg board_url: - - "https://www.aliexpress.com/item/3256803521775546.html?skuId=12000026898823783" -board_image: "weact_studio_pico.jpg" -date_added: 2022-12-23 +- https://www.aliexpress.com/item/3256803521775546.html?skuId=12000026898823783 +date_added: 2022-12-23 12:00:00 family: raspberrypi features: - - USB-C - - Breadboard-Friendly +- USB-C +- Breadboard-Friendly +layout: download +manufacturer: WeAct Studio +name: WeAct Studio Pico (16MB Variant) +title: WeAct Studio Pico (16MB Variant) Download --- The Raspberry Pi Pico is a microcontroller board based on the Raspberry Pi RP2040 microcontroller chip. It has been designed to be a low-cost, high-performance microcontroller board with flexible digital interfaces. The Raspberry Pi Pico features two ARM Cortex-M0+ cores run up to 133MHz; 256KB RAM; 30 GPIO pins; and a broad range of interfacing options. This is paired with 2MB/4MB/8MB/16MB of onboard QSPI Flash memory for code and data storage. diff --git a/_board/winterbloom_big_honking_button.md b/_board/winterbloom_big_honking_button.md index 53f7bceb9f..0fd1b9c666 100644 --- a/_board/winterbloom_big_honking_button.md +++ b/_board/winterbloom_big_honking_button.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "winterbloom_big_honking_button" -title: "Winterbloom Big Honking Button Download" -name: "Winterbloom Big Honking Button" -manufacturer: "Alethea Flowers" +blinka: false +board_id: winterbloom_big_honking_button +board_image: honk.jpg board_url: - - "https://winterbloom.com" -board_image: "honk.jpg" +- https://winterbloom.com +bootloader_id: winterbloom_big_honking_button +date_added: 2019-04-10 12:00:00 downloads_display: true -blinka: false -date_added: 2019-4-10 family: atmel-samd -bootloader_id: winterbloom_big_honking_button +layout: download +manufacturer: Alethea Flowers +name: Winterbloom Big Honking Button +title: Winterbloom Big Honking Button Download --- Winterbloom Big Honking Button is a modular synthesizer (Eurorack) module. It is very simple sampler in a very silly package. It makes a nice goose honk when you press its large orange button, and you can use CircuitPython to customize its behavior and samples. diff --git a/_board/winterbloom_sol.md b/_board/winterbloom_sol.md index b69595491b..7af206a960 100644 --- a/_board/winterbloom_sol.md +++ b/_board/winterbloom_sol.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "winterbloom_sol" -title: "Winterbloom Sol Download" -name: "Winterbloom Sol" -manufacturer: "Alethea Flowers" +blinka: false +board_id: winterbloom_sol +board_image: sol.jpg board_url: - - "https://winterbloom.com" -board_image: "sol.jpg" +- https://winterbloom.com +bootloader_id: winterbloom_sol +date_added: 2019-11-07 12:00:00 downloads_display: true -blinka: false -date_added: 2019-11-7 family: atmel-samd -bootloader_id: winterbloom_sol +layout: download +manufacturer: Alethea Flowers +name: Winterbloom Sol +title: Winterbloom Sol Download --- Winterbloom Sol is a modular synthesizer (Eurorack) module. It is a multi-purpose, scriptable USB MIDI to CV/gate converter. Its code can be modified while in use to change how it processes MIDI data into CV and gate outputs. diff --git a/_board/wisdpi_ardu2040m.md b/_board/wisdpi_ardu2040m.md index 6a2b6af355..e0a6550f39 100644 --- a/_board/wisdpi_ardu2040m.md +++ b/_board/wisdpi_ardu2040m.md @@ -1,18 +1,18 @@ --- -layout: download -board_id: "wisdpi_ardu2040m" -title: "WisdPi Ardu2040M Download" -name: "WisdPi Ardu2040M" -manufacturer: "WisdPi" +board_id: wisdpi_ardu2040m +board_image: wisdpi_ardu2040m.jpg board_url: - - "https://www.wisdpi.com/products/ardu2040m-rp2040-arduino-style-dev-board" -board_image: "wisdpi_ardu2040m.jpg" -date_added: 2023-12-11 +- https://www.wisdpi.com/products/ardu2040m-rp2040-arduino-style-dev-board +date_added: 2023-12-11 12:00:00 family: raspberrypi features: - - Display - - Arduino Shield Compatible - - USB-C +- Display +- Arduino Shield Compatible +- USB-C +layout: download +manufacturer: WisdPi +name: WisdPi Ardu2040M +title: WisdPi Ardu2040M Download --- Ardu2040M | An Arduino style RP2040 RGB Matrix board @@ -47,5 +47,3 @@ This board is perfect for hobbyists, students, and professional developers looki ## Purchase * [WisdPi](https://www.wisdpi.com/products/ardu2040m-rp2040-arduino-style-dev-board) * [Amazon](https://amzn.to/3uLWscH) - - diff --git a/_board/wisdpi_tiny_rp2040.md b/_board/wisdpi_tiny_rp2040.md index 635c076a24..822c331c11 100644 --- a/_board/wisdpi_tiny_rp2040.md +++ b/_board/wisdpi_tiny_rp2040.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "wisdpi_tiny_rp2040" -title: "WisdPi Tiny RP2040 Download" -name: "WisdPi Tiny RP2040" -manufacturer: "WisdPi" +board_id: wisdpi_tiny_rp2040 +board_image: wisdpi_tiny_rp2040.jpg board_url: - - "https://www.wisdpi.com/products/wisdpi-tiny-rp2040-a-tiny-cool-rp2040-dev-board-with-4mb-flash" -board_image: "wisdpi_tiny_rp2040.jpg" -date_added: 2023-12-11 +- https://www.wisdpi.com/products/wisdpi-tiny-rp2040-a-tiny-cool-rp2040-dev-board-with-4mb-flash +date_added: 2023-12-11 12:00:00 family: raspberrypi features: - - Breadboard-Friendly - - USB-C +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: WisdPi +name: WisdPi Tiny RP2040 +title: WisdPi Tiny RP2040 Download --- Introducing an RP2040-based development board, a compact yet powerful alternative to the popular Pico. This board packs all the GPIO capabilities of the RP2040 along with expanded flash memory. @@ -26,6 +26,3 @@ This development board is designed with convenience in mind. It features a user- ## Purchase * [WisdPi](https://www.wisdpi.com/products/wisdpi-tiny-rp2040-a-tiny-cool-rp2040-dev-board-with-4mb-flash) - - - diff --git a/_board/wiznet_w5100s_evb_pico.md b/_board/wiznet_w5100s_evb_pico.md index 457246c9b8..61e78e52c5 100644 --- a/_board/wiznet_w5100s_evb_pico.md +++ b/_board/wiznet_w5100s_evb_pico.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "wiznet_w5100s_evb_pico" -title: "W5100S-EVB-Pico Download" -name: "W5100S-EVB-Pico" -manufacturer: "WIZnet" +board_id: wiznet_w5100s_evb_pico +board_image: w5100s-evb-pico.jpg board_url: - - "https://www.wiznet.io/product-item/w5100s-evb-pico/" -board_image: "w5100s-evb-pico.jpg" -date_added: 2022-4-26 +- https://www.wiznet.io/product-item/w5100s-evb-pico/ +date_added: 2022-04-26 12:00:00 family: raspberrypi features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: WIZnet +name: W5100S-EVB-Pico +title: W5100S-EVB-Pico Download --- W5100S-EVB-Pico is a microcontroller evaluation board based on the Raspberry Pi RP2040 and fully hardwired TCP/IP controller W5100S – and basically works the same as Raspberry Pi Pico board but with additional Ethernet via W5100S. diff --git a/_board/wiznet_w5500_evb_pico.md b/_board/wiznet_w5500_evb_pico.md index e1063f960c..9042cc4860 100644 --- a/_board/wiznet_w5500_evb_pico.md +++ b/_board/wiznet_w5500_evb_pico.md @@ -1,16 +1,16 @@ --- -layout: download -board_id: "wiznet_w5500_evb_pico" -title: "W5500-EVB-Pico Download" -name: "W5500-EVB-Pico" -manufacturer: "WIZnet" +board_id: wiznet_w5500_evb_pico +board_image: w5500-evb-pico.jpg board_url: - - "https://www.wiznet.io/product-item/w5500-evb-pico/" -board_image: "w5500-evb-pico.jpg" -date_added: 2022-7-25 +- https://www.wiznet.io/product-item/w5500-evb-pico/ +date_added: 2022-07-25 12:00:00 family: raspberrypi features: - - Breadboard-Friendly +- Breadboard-Friendly +layout: download +manufacturer: WIZnet +name: W5500-EVB-Pico +title: W5500-EVB-Pico Download --- W5500-EVB-Pico is a microcontroller evaluation board based on the Raspberry Pi RP2040 and fully hardwired TCP/IP controller W5500 – and basically works the same as Raspberry Pi Pico board but with additional Ethernet via W5500. diff --git a/_board/xinabox_cc03.md b/_board/xinabox_cc03.md index 8da7111812..6454141481 100644 --- a/_board/xinabox_cc03.md +++ b/_board/xinabox_cc03.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "xinabox_cc03" -title: "XinaBox CC03 download" -name: "XinaBox CC03" -manufacturer: "XinaBox" +board_id: xinabox_cc03 +board_image: xinabox_cc03.jpg board_url: - - "https://drive.google.com/file/d/13xfg0SRZEeO-_xMElqdf0Sne8rjAcfyn/view" -board_image: "xinabox_cc03.jpg" -date_added: 2019-12-17 -family: atmel-samd +- https://drive.google.com/file/d/13xfg0SRZEeO-_xMElqdf0Sne8rjAcfyn/view bootloader_id: CC03 - +date_added: 2019-12-17 12:00:00 +family: atmel-samd +layout: download +manufacturer: XinaBox +name: XinaBox CC03 +title: XinaBox CC03 download --- This xCHIP forms part of the core modules. The SAM D21 is a series of low-power micro controllers using the 32-bit ARM® Cortex® -M0+ processor, with 256 KB Flash and 32KB of SRAM. Compatible with Arduino platform due to the shared architecture with the Arduino M0. diff --git a/_board/xinabox_cs11.md b/_board/xinabox_cs11.md index 233768eaa7..bfee0bd1a0 100644 --- a/_board/xinabox_cs11.md +++ b/_board/xinabox_cs11.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "xinabox_cs11" -title: "XinaBox CS11 Download" -name: "XinaBox CS11" -manufacturer: "XinaBox" +board_id: xinabox_cs11 +board_image: xinabox_cs11.jpg board_url: - - "https://drive.google.com/file/d/1ZGZZyPdnp49XdEDqoT0ZOT0FdfJ4DM-z/view" -board_image: "xinabox_cs11.jpg" -date_added: 2019-12-17 -family: atmel-samd +- https://drive.google.com/file/d/1ZGZZyPdnp49XdEDqoT0ZOT0FdfJ4DM-z/view bootloader_id: CS11 - +date_added: 2019-12-17 12:00:00 +family: atmel-samd +layout: download +manufacturer: XinaBox +name: XinaBox CS11 +title: XinaBox CS11 Download --- This xCHIP forms part of the core modules. The SAM D21 is a series of low-power micro controllers using the 32-bit ARM® Cortex® -M0+ processor, with 256 KB Flash and 32KB of SRAM. Compatible with Arduino platform due to the shared architecture with the Arduino M0. diff --git a/_board/yd_esp32_s3_n16r8.md b/_board/yd_esp32_s3_n16r8.md index d97701edd7..14a467820d 100644 --- a/_board/yd_esp32_s3_n16r8.md +++ b/_board/yd_esp32_s3_n16r8.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "yd_esp32_s3_n16r8" -title: "YD-ESP32-S3 N16R8 Download" -name: "YD-ESP32-S3 N16R8" -manufacturer: "VCC-GND Studio" +board_id: yd_esp32_s3_n16r8 +board_image: yd_esp32_s3.jpg board_url: - - "https://www.aliexpress.com/item/3256803838808294.html?skuId=12000028793982306" -board_image: "yd_esp32_s3.jpg" -date_added: 2023-5-3 +- https://www.aliexpress.com/item/3256803838808294.html?skuId=12000028793982306 +date_added: 2023-05-03 12:00:00 family: esp32s3 features: - - Breadboard-Friendly - - USB-C +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: VCC-GND Studio +name: YD-ESP32-S3 N16R8 +title: YD-ESP32-S3 N16R8 Download --- The YD-ESP32-S3 core board is designed by VCC-GND Studio. If necessary, you can visit www.vcc-gnd.com for purchase. The device uses the ESP32-S3 chip, which can be used for the test prototype of the Internet of Things application and can also be used for practical applications. It is equipped with two USBs, one is a hardware USB-to-serial port (CH343P WCH Qinheng), and the other is ESP32-S3 usb port. diff --git a/_board/yd_esp32_s3_n8r8.md b/_board/yd_esp32_s3_n8r8.md index 55caed1595..9ee91464e5 100644 --- a/_board/yd_esp32_s3_n8r8.md +++ b/_board/yd_esp32_s3_n8r8.md @@ -1,17 +1,17 @@ --- -layout: download -board_id: "yd_esp32_s3_n8r8" -title: "YD-ESP32-S3 N8R8 Download" -name: "YD-ESP32-S3 N8R8" -manufacturer: "VCC-GND Studio" +board_id: yd_esp32_s3_n8r8 +board_image: yd_esp32_s3.jpg board_url: - - "https://www.aliexpress.com/item/3256803838808294.html?skuId=12000028793982305" -board_image: "yd_esp32_s3.jpg" -date_added: 2023-5-3 +- https://www.aliexpress.com/item/3256803838808294.html?skuId=12000028793982305 +date_added: 2023-05-03 12:00:00 family: esp32s3 features: - - Breadboard-Friendly - - USB-C +- Breadboard-Friendly +- USB-C +layout: download +manufacturer: VCC-GND Studio +name: YD-ESP32-S3 N8R8 +title: YD-ESP32-S3 N8R8 Download --- The YD-ESP32-S3 core board is designed by VCC-GND Studio. If necessary, you can visit www.vcc-gnd.com for purchase. The device uses the ESP32-S3 chip, which can be used for the test prototype of the Internet of Things application and can also be used for practical applications. It is equipped with two USBs, one is a hardware USB-to-serial port (CH343P WCH Qinheng), and the other is ESP32-S3 usb port. diff --git a/_board/zrichard_rp2.65-f.md b/_board/zrichard_rp2.65-f.md index 1c334bc7bc..886d623e4e 100644 --- a/_board/zrichard_rp2.65-f.md +++ b/_board/zrichard_rp2.65-f.md @@ -1,16 +1,15 @@ --- -layout: download -board_id: "zrichard_rp2.65-f" -title: "RP2.65-F Download" -name: "RP2.65-F" -manufacturer: "Zach Richard" +board_id: zrichard_rp2.65-f +board_image: zrichard_rp2.65-f.jpg board_url: - - "https://github.com/BigTuna94/RP2.65-F" -board_image: "zrichard_rp2.65-f.jpg" -date_added: 2022-5-16 +- https://github.com/BigTuna94/RP2.65-F +date_added: 2022-05-16 12:00:00 family: raspberrypi -features: - +features: null +layout: download +manufacturer: Zach Richard +name: RP2.65-F +title: RP2.65-F Download --- A 65% Ortholinear Keyboard based on the Rasperry Pi RP2040 with faders. diff --git a/awesome-circuitpython b/awesome-circuitpython index 016eedaaf0..292f762328 160000 --- a/awesome-circuitpython +++ b/awesome-circuitpython @@ -1 +1 @@ -Subproject commit 016eedaaf00afa89a6ae1858bd9aa05a7d61e1a4 +Subproject commit 292f762328f76f3d100f0c50ad284c956056ab76 diff --git a/tools/check-boards.py b/tools/check-boards.py index 2a51a9b37c..9e52d4238f 100755 --- a/tools/check-boards.py +++ b/tools/check-boards.py @@ -5,7 +5,6 @@ import re from pathlib import Path import frontmatter -from dateutil.parser import parse # Check CircuitPython Download Features with open('template.md', "rt") as f: From f84a85918d656df8064fc0b4a34afe9ba2d3cd79 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 21 Mar 2024 12:11:15 -0500 Subject: [PATCH 3/3] Unify & sort feed by date added --- feed.html | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/feed.html b/feed.html index 8fcdb092fc..fdcf12ba08 100644 --- a/feed.html +++ b/feed.html @@ -8,8 +8,8 @@ {{ "/" | absolute_url }} A list of CircuitPython and Blinka supported boards {{ "now" | date_to_rfc822 }} -{% assign chronological_boards = site.board | sort: "date_added" %} -{% for board in chronological_boards reversed %} +{% assign all_boards = site.board | concat: site.blinka | sort: "date_added" | reverse %} +{% for board in all_boards %} {%- if board.downloads_display == false -%} {%- continue -%} {%- endif -%} @@ -18,20 +18,13 @@ {{ board.name }} {{ board.url | absolute_url }} By {{ board.manufacturer }}

{{ board.content }} ]]>
+ {% if board.blinka %} + Blinka + {% else %} CircuitPython - {{ board.date_added | date: '%s' | plus: twelve_hours | date_to_rfc822 }} + {% endif %} + {{ board.date_added | date_to_rfc822 }} {{ board.url | absolute_url }} {%- endif -%} {% endfor %} -{% assign chronological_blinka_boards = site.board | sort: "date_added" %} -{% for board in chronological_blinka_boards reversed %} - - {{ board.name }} - {{ board.url | absolute_url }} - By {{ board.manufacturer }}

{{ board.content }} ]]>
- Blinka - {{ board.date_added | date: '%s' | plus: twelve_hours | date_to_rfc822 }} - {{ board.url | absolute_url }} -
-{% endfor %}