diff --git a/app/templates/site_help.html b/app/templates/site_help.html index f63ce793..d603eb1d 100644 --- a/app/templates/site_help.html +++ b/app/templates/site_help.html @@ -106,6 +106,13 @@

Other logs

+ +

Other troubleshooting tools

+ +

+ Troubleshoot Tilt/Bluetooth Support +

+ {% endblock %} {% block scripts %}{% endblock %} diff --git a/docs/source/develop/changelog.rst b/docs/source/develop/changelog.rst index 04068bd2..f9b7c3a8 100644 --- a/docs/source/develop/changelog.rst +++ b/docs/source/develop/changelog.rst @@ -17,6 +17,7 @@ Added - Store the exact last time that a message was received from a Tilt to Redis - Add sentry support to tilt_monitor_aio.py - Added "debug" scripts for bluetooth Tilt connections +- Added TiltBridge connection settings to Tilt management page diff --git a/gravity/templates/gravity/gravity_manage_tilt.html b/gravity/templates/gravity/gravity_manage_tilt.html index f0f4a2f1..fe16da81 100644 --- a/gravity/templates/gravity/gravity_manage_tilt.html +++ b/gravity/templates/gravity/gravity_manage_tilt.html @@ -26,7 +26,9 @@

Configuration Options

Connection Type - {{ active_device.tilt_configuration.connection_type }} + + {% if active_device.tilt_configuration.connection_type == "Bridge" %}TiltBridge{% elif active_device.tilt_configuration.connection_type == "Bluetooth" %}Bluetooth{% else %}Unknown{% endif %} + Smoothing Window (Readings) @@ -151,6 +153,31 @@

Troubleshoot Tilt Connection

{% endif %} + {% if active_device.tilt_configuration.connection_type == "Bridge" %} +

TiltBridge Configuration

+ +

+ In order for your TiltBridge to communicate with Fermentrack, it needs to be told where Fermentrack can be + reached on your network. If the mDNS ID specified above is correct, this can be done automatically by + Fermentrack, or you can set this manually on the TiltBridge's configuration page. +

+ +
+
+ + + + + +
Fermentrack URL (copy to TiltBridge){{ fermentrack_url }}
+
+
+ +

+ Update TiltBridge Automatically +

+ {% endif %} +