Cesar
Published © MIT

PULSAR C6: Compact RISC-V Board for Next-Gen IoT

A compact board by UNIT Electronics with ESP32-C6, Wi-Fi 6, Bluetooth 5, Thread & Matter—perfect for smart, scalable IoT projects.

BeginnerProtip130
PULSAR C6: Compact RISC-V Board for Next-Gen IoT

Story

Read more

Schematics

Schematics_UNIT NANO_C6_V1_6

Code

Blink

Python
Documentation for the UNIT NANO ESP32C6 Development Board. This board is a versatile ultra-low-power microcontroller with advanced connectivity and peripheral features, making it suitable for a wide range of IoT and embedded applications.

https://unit-electronics-mx.github.io/unit_nano_esp32_c6/index.html
import machine
import time

led = machine.Pin(6, machine.Pin.OUT)

def loop():
    while True:
        led.on()  # Turn the LED on
        time.sleep(1)  # Wait for 1 second
        led.off()  # Turn the LED off
        time.sleep(1)  # Wait for 1 second

loop()

Credits

UNIT Electronic's

Posted by Cesar
Thanks to Cesar Bautista, Adrián Rabadán, and Alberto Villanueva.

Comments

Please log in or sign up to comment.