https://drive.google.com/file/d/1BofWWtL7qYXjh_t3pRlO7_p28K9EGO7V/view

from random import randint
from machine import Pin
import time
time.sleep(0.1) # Wait for USB to become ready

print("Hello, Pi Pico!")

pin_id =[1,2,3,4,5,6,7,8,9,10]
pins = []

for i in range(10):
    pins.append(Pin(pin_idx[i]),Pin.OUT)

while True:
    diff = randint(0,7)
    for i in range (diff):
        pins[i].high()
















































from machine import Pin
import utime
 
# Define pin numbers for LED bar
LED_PINS = [1,2,3,4,5,6,7,8,9,10]
 
# Initialize LED pins
leds = [Pin(pin, Pin.OUT) for pin in LED_PINS]
 
# Define function to calculate Hamming distance
def hamming_distance(char1, char2):
    # Convert characters to ASCII values
    char1_ascii = ord(char1)
    char2_ascii = ord(char2)
 
    # Calculate XOR of ASCII values
    xor_result = char1_ascii ^ char2_ascii
 
    # Count number of set bits in XOR result
    distance = 0
    while xor_result:
        distance += xor_result & 1
        xor_result >>= 1
 
    return distance
 
# Function to light up LEDs based on Hamming distance
def visualize_hamming_distance(str1, str2):
    max_distance = max(len(str1), len(str2))
    for i in range(max_distance):
        if i < len(str1) and i < len(str2):
            distance = hamming_distance(str1[i], str2[i])
            # Light up LEDs based on Hamming distance
            for j, led_pin in enumerate(LED_PINS):
                if j < distance:
                    leds[j].on()
                else:
                    leds[j].off()
        else:
            # If one string is shorter than the other, turn off remaining LEDs
            for led in leds:
                led.off()
        utime.sleep(1)  # Pause for 1 second between comparisons
 
# Example usage
string1 = "hello"
string2 = "world"
visualize_hamming_distance(string1, string2)
 
$abcdeabcde151015202530fghijfghij
BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
bargraph1:A1
bargraph1:A2
bargraph1:A3
bargraph1:A4
bargraph1:A5
bargraph1:A6
bargraph1:A7
bargraph1:A8
bargraph1:A9
bargraph1:A10
bargraph1:C1
bargraph1:C2
bargraph1:C3
bargraph1:C4
bargraph1:C5
bargraph1:C6
bargraph1:C7
bargraph1:C8
bargraph1:C9
bargraph1:C10