在使用电路Python时,如何使覆盆子Pico不自动装载为USB存储

2024-05-17 03:44:05 发布

您现在位置:Python中文网/ 问答频道 /正文

我在Raspberry Pi Pico上使用Circuit Python为我提供键盘快捷键的硬件按钮。我使用的是Circuit Python而不是MicroPython,因为它有USB_HID库

我不希望Pico在插入时自动挂载为USB存储。我只是想把它当作一个隐藏设备。我知道,除了code.py之外,我还可以编写boot.py脚本,但我在网上找不到任何地方可以放什么,这会阻止它作为USB设备安装。我还希望它有时能安装为USB(当按下按钮/GPIO引脚连接时),因此我仍然有办法更改设备上的代码

这可能吗?如果是这样的话,boot.py应该是什么样子的,只有在连接了某个GPIO引脚的情况下才能安装


Tags: pygpio硬件micropythonpicode键盘按钮
0条回答
网友
1楼 · 发布于 2024-05-17 03:44:05

我最近遇到了一个需要做你正在寻找的同样的事情,在一个像样的兔子洞之后,我决定现在不能做

https://github.com/adafruit/circuitpython/issues/1015

看起来该请求是在几年前打开的,但仍列为“打开”

我不确定在“gadget”模式下运行pi-zero是否可以实现这一点,但可能值得一看

网友
2楼 · 发布于 2024-05-17 03:44:05

这里有一个很好的HID指南:

https://learn.adafruit.com/circuitpython-essentials/circuitpython-hid-keyboard-and-mouse

以下是HID示例:

import time

import board
import digitalio
import usb_hid
from adafruit_hid.keyboard import Keyboard
from adafruit_hid.keyboard_layout_us import KeyboardLayoutUS
from adafruit_hid.keycode import Keycode

# A simple neat keyboard demo in CircuitPython

# The pins we'll use, each will have an internal pullup
keypress_pins = [board.A1, board.A2]
# Our array of key objects
key_pin_array = []
# The Keycode sent for each button, will be paired with a control key
keys_pressed = [Keycode.A, "Hello World!\n"]
control_key = Keycode.SHIFT

# The keyboard object!
time.sleep(1)  # Sleep for a bit to avoid a race condition on some systems
keyboard = Keyboard(usb_hid.devices)
keyboard_layout = KeyboardLayoutUS(keyboard)  # We're in the US :)

# Make all pin objects inputs with pullups
for pin in keypress_pins:
    key_pin = digitalio.DigitalInOut(pin)
    key_pin.direction = digitalio.Direction.INPUT
    key_pin.pull = digitalio.Pull.UP
    key_pin_array.append(key_pin)

# For most CircuitPython boards:
led = digitalio.DigitalInOut(board.D13)
# For QT Py M0:
# led = digitalio.DigitalInOut(board.SCK)
led.direction = digitalio.Direction.OUTPUT

print("Waiting for key pin...")

while True:
    # Check each pin
    for key_pin in key_pin_array:
        if not key_pin.value:  # Is it grounded?
            i = key_pin_array.index(key_pin)
            print("Pin #%d is grounded." % i)

            # Turn on the red LED
            led.value = True

            while not key_pin.value:
                pass  # Wait for it to be ungrounded!
            # "Type" the Keycode or string
            key = keys_pressed[i]  # Get the corresponding Keycode or string
            if isinstance(key, str):  # If it's a string...
                keyboard_layout.write(key)  # ...Print the string
            else:  # If it's not a string...
                keyboard.press(control_key, key)  # "Press"...
                keyboard.release_all()  # ..."Release"!

            # Turn off the red LED
            led.value = False

    time.sleep(0.01) ```

The example only prints Hello World, so it's not very useful, but it's a good base to mod. 
网友
3楼 · 发布于 2024-05-17 03:44:05

这将在《Python学习指南》的本节中介绍:https://learn.adafruit.com/circuitpython-essentials/circuitpython-storage

相关问题 更多 >