hi Liam
Thanks for your reply.
The file name for the very first script in this discussion I entitled rotary menu from A I internet.py .
The second script that I uploaded (twice) is titled ‘rotary menu modified A I.py’
Here is the code for “script 1.py”
#works with the off time different to on time
import machine
import neopixel
import time
# Configuration for the NeoPixel strip
PIN = 0 # GPIO pin connected to the NeoPixel data input
NUM_PIXELS = 12
# Create a NeoPixel object
np = neopixel.NeoPixel(machine.Pin(PIN), NUM_PIXELS)
# Define colors
RED = (255, 0, 0)
GREEN = (0, 255, 0)
ORANGE = (200, 30, 0)
BLUE = (0, 0, 255)
PINK = (200, 0, 200)
OFF = (0, 0, 0)
# Define delays
ON_DELAY = 2.2 # Time in seconds for the pixels to be on
OFF_DELAY = 0.2 # Time in seconds for the pixels to be off (different from ON_DELAY)
def set_all_pixels(color):
"""Sets all pixels on the strip to a given color."""
for i in range(NUM_PIXELS):
np[i] = color
np.write()
while True:
# Turn all pixels off
set_all_pixels(OFF)
time.sleep(OFF_DELAY)
# Turn all pixels red
set_all_pixels(RED)
time.sleep(ON_DELAY)
# Turn all pixels off
set_all_pixels(OFF)
time.sleep(OFF_DELAY)
# Turn all pixels green
set_all_pixels(GREEN)
time.sleep(ON_DELAY)
# Turn all pixels ORANGE
set_all_pixels(ORANGE)
time.sleep(ON_DELAY)
# Turn all pixels off
set_all_pixels(OFF)
time.sleep(OFF_DELAY)
# Turn all pixels blue
set_all_pixels(BLUE)
time.sleep(ON_DELAY)
# Turn all pixels off
set_all_pixels(OFF)
time.sleep(OFF_DELAY)
# Turn all pixels blue
set_all_pixels(PINK)
time.sleep(ON_DELAY)
# Turn all pixels off
set_all_pixels(OFF)
time.sleep(OFF_DELAY)
Here is the code for “script 2.py
import neopixel
from machine import Pin
import time
ws_pin = 0
led_num = 12
BRIGHTNESS = 0.3 # Adjust the brightness (0.0 - 1.0)
neoRing = neopixel.NeoPixel(Pin(ws_pin), led_num)
def set_brightness(color):
r, g, b = color
r = int(r * BRIGHTNESS)
g = int(g * BRIGHTNESS)
b = int(b * BRIGHTNESS)
return (r, g, b)
def loop():
# Display red
color = (255, 0, 0) # Red color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
# Display orange
color = (255, 50, 0) # orange color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
# Display yellow
color = (255, 150, 0) # orange color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
# Display green
color = (0, 255, 0) # Green color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
# Display light blue
color = (0, 255,150) # light blue color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
# Display pink
color = (250, 0,250) # pink color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
# Display blue
color = (0, 0, 255) # Blue color
color = set_brightness(color)
neoRing.fill(color)
neoRing.write()
time.sleep(2)
while True:
loop()
And “script 3.py
import machine
from machine import Pin
import utime
import array, time
from machine import Pin
import rp2
# Configure the number of WS2812 LEDs.
NUM_LEDS = 12
PIN_NUM = 0
brightness = 0.9
led_onboard = machine.Pin("LED", machine.Pin.OUT)
ledPin = Pin(15, mode = Pin.OUT, value = 0) # Onboard led on GPIO 15
ledPin1 = Pin(17, mode = Pin.OUT, value = 0) # Onboard led on GPIO 15
@rp2.asm_pio(sideset_init=rp2.PIO.OUT_LOW, out_shiftdir=rp2.PIO.SHIFT_LEFT, autopull=True, pull_thresh=24)
def ws2812():
T1 = 2
T2 = 5
T3 = 3
wrap_target()
label("bitloop")
out(x, 1) .side(0) [T3 - 1]
jmp(not_x, "do_zero") .side(1) [T1 - 1]
jmp("bitloop") .side(1) [T2 - 1]
label("do_zero")
nop() .side(0) [T2 - 1]
wrap()
# Create the StateMachine with the ws2812 program, outputting on pin
sm = rp2.StateMachine(0, ws2812, freq=8_000_000, sideset_base=Pin(PIN_NUM))
# Start the StateMachine, it will wait for data on its FIFO.
sm.active(1)
# Display a pattern on the LEDs via an array of LED RGB values.
ar = array.array("I", [0 for _ in range(NUM_LEDS)])
##########################################################################
def pixels_show():
dimmer_ar = array.array("I", [0 for _ in range(NUM_LEDS)])
for i,c in enumerate(ar):
r = int(((c >> 8) & 0xFF) * brightness)
g = int(((c >> 16) & 0xFF) * brightness)
b = int((c & 0xFF) * brightness)
dimmer_ar[i] = (g<<16) + (r<<8) + b
sm.put(dimmer_ar, 8)
time.sleep_ms(10)
def pixels_set(i, color):
ar[i] = (color[1]<<16) + (color[0]<<8) + color[2]
def pixels_fill(color):
for i in range(len(ar)):
pixels_set(i, color)
def color_chase(color, wait):
for i in range(NUM_LEDS):
pixels_set(i, color)
time.sleep(wait)
pixels_show()
time.sleep(0.2)
def wheel(pos):
# Input a value 0 to 255 to get a color value.
# The colours are a transition r - g - b - back to r.
if pos < 0 or pos > 255:
return (0, 0, 0)
if pos < 85:
return (255 - pos * 3, pos * 3, 0)
if pos < 170:
pos -= 85
return (0, 255 - pos * 3, pos * 3)
pos -= 170
return (pos * 3, 0, 255 - pos * 3)
def rainbow_cycle(wait):
for j in range(255):
for i in range(NUM_LEDS):
rc_index = (i * 256 // NUM_LEDS) + j
pixels_set(i, wheel(rc_index & 255))
pixels_show()
time.sleep(wait)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
YELLOW = (255, 150, 0)
GREEN = (0, 255, 0)
CYAN = (0, 255, 255)
BLUE = (0, 0, 255)
PURPLE = (180, 0, 255)
WHITE = (255, 255, 255)
COLORS = (BLACK, RED, YELLOW, GREEN, CYAN, BLUE, PURPLE, WHITE)
print("fills")
for color in COLORS:
pixels_fill(color)
pixels_show()
time.sleep(0.2)
print("chases")
for color in COLORS:
color_chase(color, 0.01)
print("rainbow")
rainbow_cycle(0)
while True:
led_onboard.value(1)
#print('on')
utime.sleep_ms(50)
led_onboard.value(0)
#print('off')
utime.sleep_ms(200)
ledPin.toggle()
utime.sleep_ms(100)
utime.sleep_ms(200)
ledPin1.toggle()
utime.sleep_ms(100)
utime.sleep_ms(200)
ledPin.toggle()
ledPin1.toggle()
utime.sleep_ms(100)
utime.sleep_ms(200)
ledPin1.toggle()
utime.sleep_ms(100)
These scripts 1,2,3….py do not have “machine reset at the end but I will try that now.
Thank you again.