Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/frapp42/tplink
- Owner: FrApp42
- License: gpl-3.0
- Created: 2024-06-10T19:47:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T13:25:42.000Z (5 months ago)
- Last Synced: 2024-10-11T20:49:02.577Z (3 months ago)
- Language: C#
- Homepage: https://frapp42.github.io/TPLink/
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.MD
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}");
```