7 lines
354 B
PowerShell
7 lines
354 B
PowerShell
param (
|
|
[string]$Port = "COM5"
|
|
)
|
|
Write-Host "Opening ESP-IDF monitor on $Port..." -ForegroundColor Cyan
|
|
Write-Host "NOTE: To close the monitor interface, press 'Ctrl + ]'." -ForegroundColor Yellow
|
|
& "C:\Users\micha\AppData\Local\Microsoft\WinGet\Packages\Espressif.EIM-CLI_Microsoft.Winget.Source_8wekyb3d8bbwe\eim.exe" run "idf.py -p $Port monitor"
|