Jump to content
C4 Forums | Control4
  • 0

Web GUI Driver


Jared Joubert

Question

20 answers to this question

Recommended Posts


  • 0

Even if you wanted to have it so you could update the URL through a property:

<property>
  <name>Webview URL</name>
  <type>STRING</type>
  <readonly>false</readonly>
  <default/>
</property>
-- Define the property name
local URL = "Webview URL"

-- Update the URL when the property changes
function OnPropertyChanged(strProperty)
	if (strProperty == URL) then
		-- In thise case the 'uibutton' proxy is defined as 5001
		C4:SendToProxy(5001, "URL_CHANGED", {url=Properties[URL]})
	end
end

 

Link to comment
Share on other sites

  • 0
4 minutes ago, Shivam Paw said:

So it loads up a site. Does all the functionality work? JavaScript, forms, keyboard, searching etc? 

I haven't loaded too many web pages yet but I set up our family google calendar on the T3 and it displays properly and updates quickly.  It works after a controller reboot too.  I no longer have excuses as to why I didn't see the appointment  my wife added on the kitchen T3 about fixing the baby gate on the weekend.

For $10 its a handy driver to have and  the url can be changed in Composer HE for end users.

Link to comment
Share on other sites

  • 0

Happy to announce that as of today, WebView drivers can now work on iOS & Android mobile devices with 321.46+ OS 3 mobile app and a controller running OS 3.1.3+.  However, it does require updates by the driver writer using the latest DriverWorks SDK to take advantage of this new functionality.  If you have WebView drivers you or a client uses that you'd like available on mobile, you'll need to reach out to driver writers with an update request to extended their driver with mobile support.

Link to comment
Share on other sites

  • 0
On 12/2/2021 at 9:38 PM, Darin, C4 PM UI said:

Happy to announce that as of today, WebView drivers can now work on iOS & Android mobile devices with 321.46+ OS 3 mobile app and a controller running OS 3.1.3+.  However, it does require updates by the driver writer using the latest DriverWorks SDK to take advantage of this new functionality.  If you have WebView drivers you or a client uses that you'd like available on mobile, you'll need to reach out to driver writers with an update request to extended their driver with mobile support.

Hi Darin, is the Battery Level Summarizer driver available yet? I cannot see it in the online database.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.