Circuitpython_Keyboard_Layouts icon indicating copy to clipboard operation
Circuitpython_Keyboard_Layouts copied to clipboard

Backslash on UK Keyboard Layout

Open mick-dee-irl opened this issue 1 year ago • 0 comments

Hi - I have setup a Pico Ducky using Pico W. I have been able to get some test scripts to work. I am working on a simple use case where a text file is saved to a location on the target machine. I am using the UK Keyboard layout as provided by Neradoc. Below is my duckyscript that i am transferring to the target machine. However, the backslashes are being converted to # when entered onto the target machine via the Pico Ducky.

I am wondering if anyone has found a fix for backslashes on UK Keyboard layouts?

DELAY 500 GUI r DELAY 500 STRING powershell ENTER DELAY 500 STRING $filepath = "$env:userprofile\Documents" ENTER DELAY 500 STRING New-Item -Path "$filepath\secrets.txt" -ItemType File -Force ENTER DELAY 500 STRING $doc = "$filepath\secrets.txt" ENTER DELAY 500 STRING Set-Content -Path $doc -Value 'These are my secrets' ENTER

mick-dee-irl avatar Jun 03 '24 18:06 mick-dee-irl