Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 679 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 679 Bytes

SoftwareSerialEx for Arduino UNO

Advance Software Serial Librarie for Arduino UNO

Use Timer1. Some PWM pins can't be used. Enables serial communication on digital pins with interrupt. Using timger interrupt. Listen more than 1 ports in the same time.

unfinished.

#Example

#include <SoftwareSerialEx.h>

class SoftwareSerialEx myss(8,9);

void setup() {

myss.begin(9600);

myss.print(F("Hello"));

}

#软串口 高级的arduino软串口库

使用计时器1。有些PWM引脚不能使用了。 使用带中断的数字IO口作为串口通信接口。 使用定时器中断减轻MCU负担。 同时从多个软串口接收数据。

编程启动中,未完成。