The website doesn't support your browser. Please update your browser or download a different one
Rp2040-Zero For Raspberry Pi Microcontroller Pico Development Board Module Dual-Core Cortex M0+ Processor
Price €6.93When ordering any 2+ products
Current price
Price €7.28Regular price

Free delivery 14 July - 13 August
Returns & refunds
Secure payments





Our support team speaks English
Description

Dimpled Cheeks
4.7/9,000+
Reviews 1
Customer
May 27
Чета встроенный LED не СРАЗУ работает, перепробовал все пины. нужно по другому вот рабочий код micropython: import machine import neopixel import time # Parameters pin_num = 16 # Change to the GPIO pin you're using num_leds = 1 # Number of LEDs in the chain # Initialize np = neopixel.NeoPixel(machine.Pin(pin_num), num_leds) # Turn on LED with a color (R, G, B) np[0] = (0, 255, 0) # Red np.write() # Wait and turn off time.sleep(2) np[0] = (0, 0, 0) np.write()