1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-28 08:02:23 +01:00

SMS Sender / Receiver (#522)

* add sim800l

* Increse SoftwareSerial Buffer Size

* use auto id on action

* lint

* lint

* add to test3.yaml

* lint


Co-authored-by: Guillermo Ruffino <guillermo.ruffino@pampatech.net>
This commit is contained in:
Guillermo Ruffino
2019-06-17 15:13:52 -03:00
committed by Otto Winter
parent 904a0b26ea
commit fc465d6d93
5 changed files with 420 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ class ESP8266SoftwareSerial {
uint32_t bit_time_{0};
uint8_t *rx_buffer_{nullptr};
size_t rx_buffer_size_{64};
size_t rx_buffer_size_{512};
volatile size_t rx_in_pos_{0};
size_t rx_out_pos_{0};
ISRInternalGPIOPin *tx_pin_{nullptr};