Skip to content

Commit

Permalink
README.md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
loginov-rocks committed Jul 3, 2017
1 parent 1195074 commit b22889c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This library is designed to work with GPS module through the hardware serial por

Download `UbxGps` and place it to the Arduino libraries directory. Refer to [How to install Libraries](https://www.arduino.cc/en/Guide/Libraries) for details.

Next step is configuring your GPS module properly, to find out how to do this see section [GPS module configuration](#gps-module-configuration).
Next step is configuring your GPS module properly, to find out how to do this see section [GPS module configuration](#gps-module-configuration). Also, take a look at the [Auto-configuration](https://github.com/1oginov/UBX-GPS-Library/blob/master/Configuration/Auto-configuration-Mega/Auto-configuration-Mega.ino) sketch for the Arduino Mega boards to configure your GPS module automatically to get NAV-PVT messages with 100 ms frequency and 115200 baudrate.

After that you can use included examples or play with following simple sketch:

Expand Down Expand Up @@ -61,6 +61,16 @@ Because of Uno has only one TX/RX pair we should connect GPS module's `TX` to th
![Wiring](https://raw.githubusercontent.com/1oginov/UBX-GPS-Library/master/Configuration/Step%201.%20Wiring.jpg)
### Auto-configuration
After wiring you can upload the [Auto-configuration](https://github.com/1oginov/UBX-GPS-Library/blob/master/Configuration/Auto-configuration-Mega/Auto-configuration-Mega.ino) sketch for the Arduino Mega boards to configure your GPS module automatically.
At the moment it configures the receiver to get NAV-PVT messages with 100 ms frequency and 115200 baudrate, but you can change it according your needs.
You are not required to follow next steps and [use u-center](#step-3-meet-u-center) after that, you can pass to the [Checks](#step-9-checks) step instead.
![Auto-configuration](https://raw.githubusercontent.com/1oginov/UBX-GPS-Library/master/Configuration/Auto-configuration.jpg)
### Step 2. Serial bridge
Let's make a bridge between GPS module and computer: upload `Serial-Bridge-Uno.ino` or `Serial-Bridge-Mega.ino` sketch on the board, it allows us to communicate with GPS module directly from computer. Open _Serial Monitor_, and if your GPS module is new or have default settings you will see something like on the picture below. If everything is OK, GPS will send some data.
Expand Down Expand Up @@ -131,6 +141,10 @@ Feel free to add something useful to this library :relaxed: For example new clas
## History
### July 3, 2017
Auto-configuration sketch for the Arduino Mega boards added
### July 2, 2017
UbxGpsNavPosecef.h added
Expand Down

0 comments on commit b22889c

Please sign in to comment.