importgnu.io.*;importjava.io.BufferedReader;importjava.io.IOException;importjava.io.InputStreamReader;importjava.io.OutputStream;publicclassSerialCommunicationExample{publicstaticvoidmain(String[] args){try{// 设置串口波特率String portName ="/dev/ttyUSB0";// 串口设备名称int baudRate =9600;// 波特率CommPortIdentifier portIdentifier =CommPortIdentifier.getPortIdentifier(portName);if(portIdentifier.isCurrentlyOwned()){System.out.println("Error: Port is currently in use");}else{CommPort commPort = portIdentifier.open(SerialCommunicationExample.class.getName(),2000);if(commPort instanceofSerialPort){SerialPort serialPort =(SerialPort) commPort;serialPort.setSerialPortParams(baudRate,SerialPort.DATABITS_8,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);// 读取串口信息BufferedReader reader =newBufferedReader(newInputStreamReader(serialPort.getInputStream()));String line;while((line = reader.readLine())!=null){System.out.println("Received: "+ line);}reader.close();serialPort.close();}else{System.out.println("Error: Only serial ports are handled by this example.");}}}catch(NoSuchPortException|PortInUseException|UnsupportedCommOperationException|IOException e){e.printStackTrace();}}}
1、同步代码:
import timedef run(index):print("lucky is a good man", index)time.sleep(2)print("lucky is a nice man", index)for i in range(1, 5):run(i)
运行结果:
lucky is a good man 1 lucky is a nice man 1 lucky i…
之前测试功能写过一次,因为代码忘记保存,导致真正用到的时候怎么也想不起来当初怎么写的了,复现后还是写个文章记录一下,省的下次再忘记。
php后端
/*** 图片保存到本地*/
public function uploadLocalImage()
{try {$img $thi…
题目描述
给你单链表的头指针 head 和两个整数 left 和 right ,其中 left < right 。请你反转从位置 left 到位置 right 的链表节点,返回 反转后的链表 。 示例 1: 输入:head [1,2,3,4,5], left 2, right 4
输出࿱…
Ctrl Alt t:打开bash(就是命令框窗口) Ctrl Alt F3~F6:打开tty终端(纯命令行终端,每个Linux发行版不相同,我的是Ubuntu20版) Alt F4:关闭当前窗口(Windo…