Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prohetamine/arduino-parse-ipv4
Parsing the v4 IP address in a string for esp32, esp8266-12, esp8266-07, esp8266-01, Arduino Nano, Arduino UNO and etc
https://github.com/prohetamine/arduino-parse-ipv4
arduino esp esp32 esp32-arduino esp8266 esp8266-arduino ipv4-address
Last synced: 23 days ago
JSON representation
Parsing the v4 IP address in a string for esp32, esp8266-12, esp8266-07, esp8266-01, Arduino Nano, Arduino UNO and etc
- Host: GitHub
- URL: https://github.com/prohetamine/arduino-parse-ipv4
- Owner: prohetamine
- Created: 2024-01-24T07:08:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-24T09:05:34.000Z (about 1 year ago)
- Last Synced: 2024-11-19T09:27:22.438Z (3 months ago)
- Topics: arduino, esp, esp32, esp32-arduino, esp8266, esp8266-arduino, ipv4-address
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Parsing the v4 IP address in a string for esp32, esp8266-12, esp8266-07, esp8266-01, Arduino Nano, Arduino UNO and etc
------------
VALID [ Hello world 221 1.1.1.1 ghtuyuyggghj ] >>> [ 1.1.1.1 ]
VALID [ Hello world 221 255.255.255.255 ghtuyuyggghj ] >>> [ 255.255.255.255 ]
VALID [ Hello world 221 88.88.88.88 ghtuyuyggghj ] >>> [ 88.88.88.88 ]
VALID [ Hello world 221 0.0.0.0 123 ghtuyuyggghj ] >>> [ 0.0.0.0 ]
VALID [ Hello world 221 "0.0.0.0" 123 ghtuyuyggghj ] >>> [ 0.0.0.0 ]
VALID [ {"ip":"192.168.1.1"} ] >>> [ 192.168.1.1 ]
INVALID [ Hello world 255 ghtuyuyggghj ] >>> [ ]
INVALID [ Hello world 221 0.0.0.023 ghtuyuyggghj ] >>> [ ]
INVALID [ Hello world 2210.02123123.0.023 ghtuyuyggghj ] >>> [ ]
------------