Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The thing I found useful was that URL to firmware.vdf.
Now I can just do something as simple as this to grab the latest firmware:
[code]
#!/bin/bash
url="http://media.steampowered.com/controller_config/firmware/firmware.vdf"
fwpath="$(wget -O - "$url" | grep firmwarebinary | tail -n 1 | cut -d '"' -f 4)"
wget "http://media.steampowered.com/controller_config$fwpath"
[/code]
If I wanted to get notified, I'd certainly not be using a browser to do the job.
I noticed WebMonitoring partnered with VisualPing.io to present a complete new tool with awful ways to display ads to you.
So I updated the guide to link to the original Page Monitor.
They have explained that in the FAQs in the link below and hopefully they will maintain the original Page Monitor
If not done already, I advise you to remove the VisualPing/PageMonitor and install the original Page Monitor without VisualPing, so you will get the real code without the popups and commercial stuffs.
VisualPing & PageMonitor FAQs : http://visualping.io/welcome-pagemonitor
Original Page Monitor must have : https://chrome.google.com/webstore/detail/page-monitor/ogeebjpdeabhncjpfhgdibjajcajepgg
Sources : https://github.com/WebMonitoring/pagemon-chrome-ext
I couldn't find a trustworthy way to get the latest firmware image when dealing with problematic controllers.
Now I know I can just wget that URL to find the latest image.