1.安装扩展.NET nanoFramework
- 点击扩展->管理扩展
- 搜索nanoFramework安装
- 或者打开https://marketplace.visualstudio.com/items?itemName=nanoframework.nanoframework-vs2022-extension下载安装
2.安装.NET nanoFramework Firmware flash 工具
dotnet tool install -g nanoff
3.刷入固件
- 使用windows设备管理器或者nanoff --listports查看端口
- 打开https://github.com/nanoframework/nf-interpreter#esp32-modules-and-boards查看固件
- 刷入固件
nanoff --serialport COM5 --target ESP32_REV0 --update
## 查看芯片信息
nanoff --platform esp32 --serialport COM5 --devicedetails
4.打开 视图->其他窗口->Device Explorer 可以看到已连接设备
如果没有看到设备,可以重新插入usb设备
5.新建Blank Application (.NET nanoFramework)项目运行
using System;
using System.Diagnostics;
using System.Threading;
namespace xxx
{
public class Program
{
public static void Main()
{
Debug.WriteLine("Hello from nanoFramework!");
Thread.Sleep(Timeout.Infinite);
}
}
}