mirror of
https://github.com/laanwj/k210-sdk-stuff.git
synced 2024-11-26 11:23:32 +04:00
bfe58fe72b
Add library for communicating with WiFi using the ESP8266 using AT commands. This really should have its own repo at some point.
26 lines
449 B
TOML
26 lines
449 B
TOML
[package]
|
|
name = "esp8266at"
|
|
version = "0.1.0"
|
|
authors = ["Wladimir J. van der Laan <laanwj@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
std = []
|
|
default = ["std"]
|
|
|
|
[dependencies]
|
|
nom = { version = "4", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
clap = "2"
|
|
serialport = { version = "3", default-features = false }
|
|
arrayvec = "0.4"
|
|
|
|
[[example]]
|
|
name = "parsetest"
|
|
required-features = ["std"]
|
|
|
|
[[example]]
|
|
name = "serial"
|
|
required-features = ["std"]
|