You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,9 @@ Go to `Sketch > Include Library > Library Manager > Search` for `RemoteSerial >
35
35
36
36
### Manual Install
37
37
38
-
For Windows: download the [repository](https://github.com/supercrab/RemoteSerial/archive/master.zip) and extract the .zip in `Documents > Arduino > Libraries > place "RemoteSerial" folder Here`
38
+
For Windows: download the [repository](https://github.com/supercrab/RemoteSerial/archive/master.zip) and extract the .zip in `Documents > Arduino > Libraries > place RemoteSerial folder here`
39
39
40
-
For Linux: download the [repository](https://github.com/supercrab/RemoteSerial/archive/master.zip) and extract the .zip in `Sketchbook > Libraries > place "RemoteSerial" folder Here`
40
+
For Linux: download the [repository](https://github.com/supercrab/RemoteSerial/archive/master.zip) and extract the .zip in `Sketchbook > Libraries > place RemoteSerial folder here`
41
41
42
42
Insstall these libraries too:
43
43
@@ -46,7 +46,7 @@ Insstall these libraries too:
46
46
47
47
### Manually using IDE
48
48
49
-
Download the Repository, Go to `Sketch > Include Library > Add .zip Library > Select the Downloaded .zip file.`
49
+
Download the Repository and go to `Sketch > Include Library > Add .zip Library > Select the Downloaded .zip file.`
50
50
51
51
## Documentation
52
52
@@ -56,7 +56,7 @@ Please look at the basic demo [here](./examples/Basic/Basic.ino) to see how to u
56
56
57
57
There are 4 main functions
58
58
59
-
-`print` - transmits data to the RemoteSerial console without appending any newline character.
59
+
-`print` - transmits data to the `RemoteSerial` console without appending any newline character.
60
60
-`println` - same as above but adds a newline character at the end.
61
61
-`printf` - transmits formatted text to the RemoteSerial console. You can control the formatting of variables like numbers, strings, and other data types, including specifying the number of decimal places, padding with zeros, and more.
62
62
-`begin` - starts listening for web requests, you must supply a valid `AsyncWebServer` object and an optional path where clients can find the serial console
@@ -65,4 +65,4 @@ You may also output [ANSI colour codes](https://talyian.github.io/ansicolors/) t
65
65
66
66
## Remote Serial Console
67
67
68
-
To access the console: Go to `<IP Address>/remoteserial` in your browser, where `<IP Address>`is the IP of your device.
68
+
To open the console, navigate to `<IP Address>/remoteserial` in your web browser. Replace `<IP Address>`with your device's actual IP. If you prefer a different path, you can specify it when initializing `RemoteSerial` using the `RemoteSerial.begin()` function.
0 commit comments