Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/frapp42/tplink

Unofficial lib to send SMS with a TP-Link Archer MR600 routeur
https://github.com/frapp42/tplink

Last synced: about 2 months ago
JSON representation

Unofficial lib to send SMS with a TP-Link Archer MR600 routeur

Awesome Lists containing this project

README

        

## TPLink C# Lib

Unofficial TP-Link Lib to Read and Send SMS with TP-Link Archer MR600.

Based on projects :
- https://github.com/plewin/tp-link-modem-router
- https://github.com/hercule115/TPLink-Archer

# Read the docs

[Online docs](https://frapp42.github.io/TP-Link/)

## Example :

```C#
using FrApp42.TPLink;

...

Client client = new Client(url, username, password);
client.Send("0606060606", $"Hello {DateTime.Now}");
```