是的你可以。我对pyfirmata不太了解,但是看起来它是基于pyserial的。我在传递中使用了一点。我会告诉你我对脓毒症的了解在arduino上void setup() { // open the serial port at 9600 bps: Serial.begin(9600); }在PC python终端上>>> ser = serial.Serial()>>> ser.baudrate = 9600 <--same as the arduino void setup()>>> ser.port = 0 <--Name of the virtual com port>>> ser.open