Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickeltopoquegira/wificonnect
Simple Arduino WiFi client
https://github.com/nickeltopoquegira/wificonnect
arduino esp8266
Last synced: 17 days ago
JSON representation
Simple Arduino WiFi client
- Host: GitHub
- URL: https://github.com/nickeltopoquegira/wificonnect
- Owner: NickElTopoQueGira
- Created: 2024-07-30T20:47:07.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-07-30T21:07:42.000Z (5 months ago)
- Last Synced: 2024-12-22T00:44:21.980Z (17 days ago)
- Topics: arduino, esp8266
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WiFiConnect
WiFiConnect is a simple program for ESP8266 to connect to a simple server (see [**Simple-Java-server-with-soket**](https://github.com/NickElTopoQueGira/Simple-Java-server-with-soket)) for sending data.
The project was created through the visual studio code [PlatformIO IDE](https://platformio.org/platformio-ide) plugin.
## Configuration
1. WiFi network access
```cpp
const char* ssid = "The name of your WiFi network";
const char* password = "The password to access the network ";
```
2. Server
```cpp
const char* serverAddress = "192.168.1.7"; // The address of the server
const uint16_t port = 500; // Server port
```
## Execution
⚠️ The server must be turned on, otherwise the data will not be sent successfully.