Skip to content

jgauchia/IceNav-v3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Static Badge PlatformIO ViewCount

icenav_logo

ESP32 Based GPS Navigator (LVGL - LovyanGFX).

  • Note: Under development (experimental features under devel branch)
  • There is the possibility to use two types of maps: Rendered Maps or Tiles (large files), and Vector Maps (small files).
buymeacoffee-animated-badge
Don't forget to star ⭐️ this repository

Caution

Do not use in production (Experimental features).

Screenshots

Splash Screen Search Satellite Compass Rendered Map Vectorized Map
Satellite Info Settings Compass Calibration Touch Calibration Map Settings Device Settings

WiFi CLI Manager

WifiCLI

Specifications

Currently, IceNav works with the following hardware setups and specs

Highly recommended an ESP32S3 with PSRAM and 320x480 Screen

Important

Please review the platformio.ini file to choose the appropriate environment as well as the different build flags for your correct setup.

Boards

FLASH PSRAM Environment Full Support
ICENAV (ESP32S3) 16M 8M [env:ICENAV] YES
ESP32 16M 4M [env:ESP32_N16R4] YES
ESP32S3 16M 8M [env:ESP32S3_N16R8] YES
MAKERFABS ESP32S3 16M 2M [env:MAKERF_ESP32S3] TESTING

Important

Currently, this project can run on any board with an ESP32S3 and at least a 320x480 TFT screen. The idea is to support all existing boards on the market that I can get to work, so if you don't want to use the specific IceNav board, please feel free to create an issue, and I will look into providing support. Any help or contribution is always welcome

Screens

Driver 1 Resolution SPI 8bit 16bit Touch Build Flags 2
ILI9488 3 320x480 yes --- --- XPT2046 -DILI9488_XPT2046_SPI
ILI9488 320x480 yes --- --- FT5x06 -DILI9488_FT5x06_SPI
ILI9488 320x480 --- yes --- -------- -DILI9488_NOTOUCH_8B
ILI9488 320x480 --- --- yes FT5x06 -DILI9488_FT5x06_16B
ILI9341 320x240 yes --- --- XPT2046 -DILI9341_XPT2046_SPI

If TFT shares SPI bus with SD card add the following Build Flag to platformio.ini

-DSPI_SHARED

Modules

Type Build Flags 2 lib_deps 4 (no common environment)
AT6558D GPS -DAT6558D_GPS
HMC5883L Compass -DHMC5883L dfrobot/DFRobot_QMC5883@^1.0.0
QMC5883 Compass -DQMC5883 dfrobot/DFRobot_QMC5883@^1.0.0
MPU9250 IMU (Compass) -DIMU_MPU9250 bolderflight/Bolder Flight Systems MPU9250@^1.0.2
BME280 Temp/Pres/Hum -DBME280 adafruit/Adafruit Unified Sensor@^1.1.14
adafruit/Adafruit BusIO@^1.16.1
adafruit/Adafruit BME280 Library@^2.2.4

Other setups like another sensors types, etc... not listed in the specs, now They are not included

If you wish to add any other type of sensor, module, etc., you can create a PR without any problem, and we will try to implement it. Thank you!


Wiring

See hal.hpp for pinouts configuration

SD Map Tile File structure

Using Maperitive select your zone and generate your tiles. For that enter to MAP-> Set Geometry bounds draw or expand the square of your zone and run the command generate-tiles minzoom=6 maxzoom=17, It could takes long time, maybe 1 hour or more depending your area.

Maperitive zone selection

After that, copy the contents of directory Tiles into your SD in a directory called MAP.

On SD Card map tiles (256x256 PNG Format) should be stored, in these folders structure:

  [ MAP ]
     |________ [ zoom folder (number) ]
                          |__________________ [ tile X folder (number) ]
                                                         |_______________________ tile Y file.png

SD Vectorized Map File structure

Using OSM_Extract you can generate binary map files to later create vector maps. Once generated, these files should be saved in the mymap folder on the SD card.

The PBF files can be downloaded from the geofabrik website.

The PBF files should be saved in the pbf directory. Once saved, you should select the region or boundaries for which the GeoJSON files will be generated.

To obtain the boundaries, please check the geojson.io website.

For generate GeoJSON files run inside maps directory:

ogr2ogr -t_srs EPSG:3857 -spat min_lon min_lat max_lon max_lat map_lines.geojson /pbf/downloaded.pbf lines

ogr2ogr -t_srs EPSG:3857 -spat min_lon min_lat max_lon max_lat map_polygons.geojson /pbf/downloaded.pbf multipolygons

For generate binary map files run inside maps directory.

/scripts/./extract_features.py min_lon min_lat max_lon max_lat map

Once the process is completed, the maps will be inside the maps/mymap directory. Copy all folders to the SD card except the test_imgs directory.

Please follow the instructions provided by OSM_Extract for any further questions.

Firmware install

Important

Please install first PlatformIO open source ecosystem for IoT development compatible with Arduino IDE and its command line tools (Windows, MacOs and Linux). Also, you may need to install git in your system.

For ESP32 board run:

pio run --target upload

For ESP32S3 Makerfab board:

pio run -e MAKERF_ESP32S3 --target upload

For Other boards:

pio run -e environment --target upload

After the first run, load the icons and assets with:

pio run --target uploadfs

Tip

Optional, for map debugging version with specific coordinates, build and install the firmware with the next environment variables, like this:

export ICENAV3_LAT=52.5200
export ICENAV3_LON=13.4049
pio run --target upload

Note

For production version don't forget unset these environment variables.

CLI

IceNav has a basic CLI accessible via Serial and optionally via Telnet if enabled. When you access the CLI and type help, you should see the following commands:

clear:          clear shell
info:           get device information
nmcli:          network manager CLI.
reboot:         perform a ESP32 reboot
scshot:         screenshot to SD or sending a PC
waypoint:       waypoint utilities

Some extra details:

nmcli: IceNav use a wcli network manager library. For more details of this command and its sub commands please refer to here

scshot: This utility can save a screenshot to the root of your SD, with the name: screenshot.raw. You can convert it to png using the convert.py script in the tools folder.

Additionally, this screenshot command can send the screenshot over WiFi using the following syntax (replace IP with your PC IP):

scshot 192.168.1.10 8123

Ensure your PC has the specified port open and firewall access enabled to receive the screenshot via the netcat command, like this:

nc -l -p 8123 > screenshot.raw

waypoint: type waypoint for detailed options.

Additionally, this waypoint command can send the waypoint over WiFi using the following syntax (replace IP with your PC IP):

waypoint down file.gpx 192.168.1.10 8123

Ensure your PC has the specified port open and firewall access enabled to receive the waypoint file via the netcat command, like this:

nc -l -p 8123 > waypoint.gpx

TO DO

  • LVGL 9 Integration
  • Support other resolutions and TFT models
  • Support for ready-made boards
  • Wifi CLI Manager
  • LVGL Optimization
  • GPX Integration
  • Multiple IMU's and Compass module implementation
  • Power saving
  • Vector maps
  • Google Maps navigation style
  • Optimize code
  • Fix bugs!
  • Web file server

Special thanks to....

  • @hpsaturn Thanks to him and his knowledge, this project is no longer sitting in a drawer 😏.
  • @pcbway for bringing a first prototype of the IceNav PCB to reality 💪
  • @lovyan03 for his library; I still have a lot to learn from it.
  • @lvgl for creating an amazing UI
  • And of course, to my family, who supports me through all this development and doesn’t understand why. 😘 I will never be able to thank you enough for the time I've dedicated.

Credits

Footnotes

  1. See hal.hpp for pinouts configuration

  2. platformio.ini file under the build_flags section 2

  3. If Touch SPI is wired to the same SPI of ILI9488 ensure that TFT MISO line has 3-STATE for screenshots (read GRAM) or leave out

  4. You need to add libraries dependencies if the buid flag requires