├── .gitignore ├── ConfigManager.py ├── GPIO.py ├── LICENSE.txt ├── LogManager.py ├── RTKLIB.py ├── ReachLED.py ├── Readme.md ├── RtkController.py ├── Str2StrController.py ├── index.html ├── install_packages.sh ├── log_converter ├── __init__.py ├── convbin.py └── logs.py ├── port.py ├── reach_bluetooth ├── __init__.py ├── bluetoothctl.py └── tcp_bridge.py ├── reach_tools ├── __init__.py ├── bluetoothd.py ├── gps_time.py ├── provisioner.py └── reach_tools.py ├── requirements.txt ├── rtklib_configs ├── GPS_10Hz.cmd ├── GPS_14Hz.cmd ├── GPS_1Hz.cmd ├── GPS_5Hz.cmd ├── GPS_BEIDOU_1Hz.cmd ├── GPS_BEIDOU_5Hz.cmd ├── GPS_GLONASS_1Hz.cmd ├── GPS_GLONASS_5Hz.cmd ├── Readme ├── convbin ├── reach_kinematic_default.conf ├── reach_single_default.conf ├── rtkrcv └── str2str ├── server.py ├── static ├── configs.js ├── d3.v3.min.js ├── graph.js ├── handlers.js ├── images │ ├── ajax-loader.gif │ ├── favicon.png │ └── update_loader.gif ├── jquery-1.11.2.min.js ├── jquery.mobile-1.4.5.min.css ├── jquery.mobile-1.4.5.min.js ├── main.js ├── socket.io.min.js └── style.css └── update.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | -------------------------------------------------------------------------------- /ConfigManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/ConfigManager.py -------------------------------------------------------------------------------- /GPIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/GPIO.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LogManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/LogManager.py -------------------------------------------------------------------------------- /RTKLIB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/RTKLIB.py -------------------------------------------------------------------------------- /ReachLED.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/ReachLED.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/Readme.md -------------------------------------------------------------------------------- /RtkController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/RtkController.py -------------------------------------------------------------------------------- /Str2StrController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/Str2StrController.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/index.html -------------------------------------------------------------------------------- /install_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/install_packages.sh -------------------------------------------------------------------------------- /log_converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log_converter/convbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/log_converter/convbin.py -------------------------------------------------------------------------------- /log_converter/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/log_converter/logs.py -------------------------------------------------------------------------------- /port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/port.py -------------------------------------------------------------------------------- /reach_bluetooth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reach_bluetooth/bluetoothctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/reach_bluetooth/bluetoothctl.py -------------------------------------------------------------------------------- /reach_bluetooth/tcp_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/reach_bluetooth/tcp_bridge.py -------------------------------------------------------------------------------- /reach_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reach_tools/bluetoothd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/reach_tools/bluetoothd.py -------------------------------------------------------------------------------- /reach_tools/gps_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/reach_tools/gps_time.py -------------------------------------------------------------------------------- /reach_tools/provisioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/reach_tools/provisioner.py -------------------------------------------------------------------------------- /reach_tools/reach_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/reach_tools/reach_tools.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/requirements.txt -------------------------------------------------------------------------------- /rtklib_configs/GPS_10Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_10Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_14Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_14Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_1Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_1Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_5Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_5Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_BEIDOU_1Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_BEIDOU_1Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_BEIDOU_5Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_BEIDOU_5Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_GLONASS_1Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_GLONASS_1Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/GPS_GLONASS_5Hz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/GPS_GLONASS_5Hz.cmd -------------------------------------------------------------------------------- /rtklib_configs/Readme: -------------------------------------------------------------------------------- 1 | Default configs and binaries for Reach 2 | -------------------------------------------------------------------------------- /rtklib_configs/convbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/convbin -------------------------------------------------------------------------------- /rtklib_configs/reach_kinematic_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/reach_kinematic_default.conf -------------------------------------------------------------------------------- /rtklib_configs/reach_single_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/reach_single_default.conf -------------------------------------------------------------------------------- /rtklib_configs/rtkrcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/rtkrcv -------------------------------------------------------------------------------- /rtklib_configs/str2str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/rtklib_configs/str2str -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/server.py -------------------------------------------------------------------------------- /static/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/configs.js -------------------------------------------------------------------------------- /static/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/d3.v3.min.js -------------------------------------------------------------------------------- /static/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/graph.js -------------------------------------------------------------------------------- /static/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/handlers.js -------------------------------------------------------------------------------- /static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/update_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/images/update_loader.gif -------------------------------------------------------------------------------- /static/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /static/jquery.mobile-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/jquery.mobile-1.4.5.min.css -------------------------------------------------------------------------------- /static/jquery.mobile-1.4.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/jquery.mobile-1.4.5.min.js -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/main.js -------------------------------------------------------------------------------- /static/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/socket.io.min.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/static/style.css -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/ReachView/HEAD/update.sh --------------------------------------------------------------------------------