Skip to content

Commit

Permalink
Minor Updates (#30)
Browse files Browse the repository at this point in the history
- Community example translation for TW & CN
- Update the minor mistakes in getting started for 3 Languagues
  • Loading branch information
daphwl committed May 13, 2022
1 parent a2b5066 commit 36d8ad8
Show file tree
Hide file tree
Showing 120 changed files with 4,016 additions and 2,964 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ SoftSerial object.

**Syntax**

``Adafruit_GPS::Adafruit_GPS(SoftwareSerial \*ser)``
Adafruit_GPS::Adafruit_GPS(SoftwareSerial \*ser)

``Adafruit_GPS::Adafruit_GPS(HardwareSerial \*ser)``
Adafruit_GPS::Adafruit_GPS(HardwareSerial \*ser)

**Parameters**

Expand Down Expand Up @@ -251,7 +251,9 @@ Returns the last NMEA line received and unsets the received flag

**Syntax**

``char \*Adafruit_GPS::lastNMEA(void0)``
.. code:: cpp
char *Adafruit_GPS::lastNMEA(void0)
**Parameters**

Expand Down Expand Up @@ -344,7 +346,9 @@ Send a command to the GPS device

**Syntax**

``void Adafruit_GPS::sendCommand(const char\*str)``
.. code:: cpp
void Adafruit_GPS::sendCommand(const char * str)
**Parameters**

Expand Down Expand Up @@ -375,7 +379,9 @@ Pause/unpause receiving new data

**Syntax**

``void Adafruit_GPS::pause(boolean p)``
.. code:: cpp
void Adafruit_GPS::pause(boolean p)
**Parameters**

Expand Down Expand Up @@ -466,7 +472,9 @@ Parse an NMEA string

**Syntax**

``boolean Adafruit_GPS::parse(char \*nmea)``
.. code:: cpp
boolean Adafruit_GPS::parse(char * nmea)
**Parameters**

Expand Down Expand Up @@ -494,7 +502,7 @@ Wake the sensor up

**Syntax**

.. code::cpp
.. code:: cpp
boolean Adafruit_GPS::wakeup(void)
Expand Down Expand Up @@ -554,7 +562,9 @@ Wait for a specified sentence from the device

**Syntax**

``boolean Adafruit_GPS::waitForSentence(const char \*wait4me, uint8_tmax)``
.. code:: cpp
boolean Adafruit_GPS::waitForSentence(const char * wait4me, uint8_tmax)
**Parameters**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class AmebaServo
| AmebaServo::attached | Check if the servo is attached. |
+-------------------------------+-------------------------------------+


------------------------------------------------------------------------------


Expand All @@ -63,11 +64,11 @@ failure.
**Parameters**

``pin`` : The Arduino pin number to be attached.
* ``pin`` : The Arduino pin number to be attached.

``min`` : Minimum values for writes.
* ``min`` : Minimum values for writes.

``max`` : Maximum values for writes.
* ``max`` : Maximum values for writes.

**Returns**

Expand Down Expand Up @@ -149,6 +150,7 @@ Detach the servo.

**Syntax**


void AmebaServo::detach(void);

**Parameters**
Expand Down

0 comments on commit 36d8ad8

Please sign in to comment.