mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
SoftwareSerial library to the new format
This commit is contained in:
@ -41,7 +41,7 @@ http://arduiniana.org.
|
|||||||
#include <avr/interrupt.h>
|
#include <avr/interrupt.h>
|
||||||
#include <avr/pgmspace.h>
|
#include <avr/pgmspace.h>
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <SoftwareSerial.h>
|
#include <SoftwareSerial_Class.h>
|
||||||
//
|
//
|
||||||
// Lookup table
|
// Lookup table
|
||||||
//
|
//
|
10
libraries/SoftwareSerial/library.properties
Normal file
10
libraries/SoftwareSerial/library.properties
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
name=SoftwareSerial
|
||||||
|
author=Mikal Hart
|
||||||
|
email=info@arduino.cc
|
||||||
|
sentence=With this library you can create a software Serial interface on two Arduino pins
|
||||||
|
paragraph=you can choose two Arduino pins and use them as RX and TX channels of a Serial interface.</br>This library emulate the in software the behaviour of a serial interface.</br>For the RX pis in mandatory to use a pin with the PinChange interrupt capability.
|
||||||
|
url=http://arduino.cc/en/Reference/SD
|
||||||
|
architectures=avr
|
||||||
|
version=1.0
|
||||||
|
dependencies= none
|
||||||
|
core-dependencies=arduino (>=1.5.0)
|
1
libraries/SoftwareSerial/src/SoftwareSerial.h
Normal file
1
libraries/SoftwareSerial/src/SoftwareSerial.h
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include <SoftwareSerial_Class.h>
|
Reference in New Issue
Block a user