diff --git a/CODEOWNERS b/CODEOWNERS index 99d2e06caa0..55311e176b7 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -136,7 +136,6 @@ source/_integrations/fronius.markdown @nielstron source/_integrations/frontend.markdown @home-assistant/frontend source/_integrations/garmin_connect.markdown @cyberjunky source/_integrations/gdacs.markdown @exxamalte -source/_integrations/gearbest.markdown @HerrHofrat source/_integrations/geniushub.markdown @zxdavb source/_integrations/geo_rss_events.markdown @exxamalte source/_integrations/geonetnz_quakes.markdown @exxamalte diff --git a/source/_integrations/gearbest.markdown b/source/_integrations/gearbest.markdown deleted file mode 100644 index 17b1c61402a..00000000000 --- a/source/_integrations/gearbest.markdown +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: Gearbest -description: Instructions on how to integrate a Gearbest sensor into Home Assistant. -ha_category: - - Sensor -ha_iot_class: Cloud Polling -ha_release: '0.60' -ha_codeowners: - - '@HerrHofrat' -ha_domain: gearbest ---- - -The `gearbest` sensor will track the price of a product from [Gearbest](https://www.gearbest.com). This information can be used in, e.g., automations to notify you when a price drops. The update interval for every item is currently set to 2 hours. - -To enable this sensor, add the following lines to your `configuration.yaml` file: - -```yaml -# Example configuration.yaml entry -sensor: - - platform: gearbest - currency: EUR - items: - - url: https://www.gearbest.com/.... -``` - -{% configuration %} -currency: - description: "The currency in which the products should be tracked. Currently supported: USD, EUR, GBP, AUD, CAD, CHF, HKD, CNY, NZD, JPY, RUB, BRL, CLP, NOK, DKK, SEK, KRW, ILS, COP, MXN, PEN, THB, IDR, UAH, PLN, INR, BGN, HUF, RON, TRY, CZK, HRK, MAD, AED, SAR, ZAR, SGD, MYR, TWD, RSD, NGN - if the currency could not be found in the conversion rate list, USD will be used as default. Either an ID or a URL must be present." - required: true - type: string -items: - description: List of products that should be tracked. - required: true - type: map - keys: - id: - description: The ID of the product. - required: false - type: integer - url: - description: The URL of the product. - required: false - type: string - name: - description: The name of the item. If not set, it is parsed from the website. - required: false - type: string - currency: - description: Overwrite the currency for the current item. - required: false - type: string -{% endconfiguration %} - -### Extended example - -```yaml -# Example configuration.yaml entry -sensor: - - platform: gearbest - currency: EUR - items: - - url: https://www.gearbest.com/3d-printers-3d-printer-kits/pp_779174.html?wid=21 - name: Creality CR-10 upgraded - currency: USD - - id: 779174 - name: Creality CR-10 upgraded #2 - currency: EUR -``` diff --git a/source/_posts/2017-12-17-release-60.markdown b/source/_posts/2017-12-17-release-60.markdown index b4afdf02547..14e655aabfe 100644 --- a/source/_posts/2017-12-17-release-60.markdown +++ b/source/_posts/2017-12-17-release-60.markdown @@ -22,7 +22,7 @@ With the brand-new [ADS (automation device specification)][ads docs] component b Thanks to [@maxlaverse] Home Assistant support now [WebDav calendars][calendar.caldav docs]. ## Tracking prices -With the new [`gearbest` sensor][sensor.gearbest docs] there is now an additional sensor available to track the price of a product. +With the new `gearbest` sensor there is now an additional sensor available to track the price of a product. ## Financial details Yahoo! has discontinued their financial service. To fill this gap we have now the [`alpha_vantage` sensor][sensor.alpha_vantage docs] which is intruded in this release and allows you to monitor the stock market. @@ -32,7 +32,7 @@ Yahoo! has discontinued their financial service. To fill this gap we have now th - Add iAlarm support ([@RyuzakiKK] - [#10878]) ([alarm_control_panel.ialarm docs]) (new-platform) - Add Alpha Vantage sensor ([@fabaff] - [#10873]) ([sensor.alpha_vantage docs]) (new-platform) - Add ADS component ([@stlehmann] - [#10142]) ([ads docs]) ([binary_sensor.ads docs]) ([light.ads docs]) ([sensor.ads docs]) ([switch.ads docs]) (new-platform) -- Gearbest sensor ([@HerrHofrat] - [#10556]) ([sensor.gearbest docs]) (new-platform) +- Gearbest sensor ([@HerrHofrat] - [#10556]) (new-platform) - Add Ziggo Mediabox XL media_player ([@b10m] - [#10514]) ([media_player.ziggo_mediabox_xl docs]) (new-platform) - Meraki AP Device tracker ([@masarliev] - [#10971]) ([device_tracker.meraki docs]) (new-platform) - Added Vera scenes ([@alanfischer] - [#10424]) ([vera docs]) ([scene.vera docs]) (new-platform) @@ -97,7 +97,7 @@ Experiencing issues introduced by this release? Please report them in our [issue - Tado ignore invalid devices ([@dasos] - [#10927]) ([climate.tado docs]) - don't ignore voltage data if sensor data changed ([@PaulAnnekov] - [#10925]) ([xiaomi_aqara docs]) - Add ADS component ([@stlehmann] - [#10142]) ([ads docs]) ([binary_sensor.ads docs]) ([light.ads docs]) ([sensor.ads docs]) ([switch.ads docs]) (new-platform) -- Gearbest sensor ([@HerrHofrat] - [#10556]) ([sensor.gearbest docs]) (new-platform) +- Gearbest sensor ([@HerrHofrat] - [#10556]) (new-platform) - Add Ziggo Mediabox XL media_player ([@b10m] - [#10514]) ([media_player.ziggo_mediabox_xl docs]) (new-platform) - Generic thermostat initial_operation_mode ([@ziotibia81] - [#10690]) ([climate.generic_thermostat docs]) - Use new build path for dev translations ([@armills] - [#10937]) @@ -350,7 +350,6 @@ Experiencing issues introduced by this release? Please report them in our [issue [sensor.canary docs]: /integrations/canary#sensor [sensor.efergy docs]: /integrations/efergy [sensor.eliqonline docs]: /integrations/eliqonline -[sensor.gearbest docs]: /integrations/gearbest [sensor.luftdaten docs]: /integrations/luftdaten#sensor [sensor.miflora docs]: /integrations/miflora [sensor.mqtt docs]: /integrations/sensor.mqtt/ diff --git a/source/_posts/2018-06-22-release-72.markdown b/source/_posts/2018-06-22-release-72.markdown index 535e0dddd2e..7cc8b84d813 100644 --- a/source/_posts/2018-06-22-release-72.markdown +++ b/source/_posts/2018-06-22-release-72.markdown @@ -114,7 +114,7 @@ Experiencing issues introduced by this release? Please report them in our [issue - Add Freebox device tracker ([@stilllman] - [#12727]) ([device_tracker.freebox docs]) (new-platform) - Migrate entity registry to using websocket ([@balloob] - [#14830]) ([config docs]) - Route themes and translations over websocket ([@balloob] - [#14828]) ([frontend docs]) ([websocket_api docs]) -- Feature/gearbest library update (Closes: #14813) ([@HerrHofrat] - [#14833]) ([sensor.gearbest docs]) +- Feature/gearbest library update (Closes: #14813) ([@HerrHofrat] - [#14833]) - Ignore the mistaken long_both_click event of the 86sw (Closes: #14802) ([@syssi] - [#14808]) ([binary_sensor.xiaomi_aqara docs]) - Fix non awaited test ([@balloob] - [#14854]) - Update Hue flow title ([@balloob] - [#14852]) ([hue docs]) @@ -464,7 +464,6 @@ Experiencing issues introduced by this release? Please report them in our [issue [sensor.airvisual docs]: /integrations/airvisual [sensor.arlo docs]: /integrations/arlo#sensor [sensor.eight_sleep docs]: /integrations/eight_sleep -[sensor.gearbest docs]: /integrations/gearbest [sensor.glances docs]: /integrations/glances [sensor.hive docs]: /integrations/hive#sensor [sensor.homematic docs]: /integrations/homematic diff --git a/source/_posts/2019-12-11-release-103.markdown b/source/_posts/2019-12-11-release-103.markdown index 85601f69bc3..c7281e2c1b1 100644 --- a/source/_posts/2019-12-11-release-103.markdown +++ b/source/_posts/2019-12-11-release-103.markdown @@ -799,7 +799,7 @@ Experiencing issues introduced by this release? Please report them in our [issue - Move imports to top for hikvision ([@springstan] - [#29417]) ([hikvision docs]) - Move imports to top for horizon ([@springstan] - [#29419]) ([horizon docs]) - Move imports to top for hunterdouglas_powerview ([@springstan] - [#29420]) ([hunterdouglas_powerview docs]) -- Move imports to top for gearbest ([@springstan] - [#29432]) ([gearbest docs]) +- Move imports to top for gearbest ([@springstan] - [#29432]) - Move imports to top for fleetgo ([@springstan] - [#29431]) ([fleetgo docs]) - Move imports to top for fints ([@springstan] - [#29429]) ([fints docs]) - Move imports to top for fastdotcom ([@springstan] - [#29428]) ([fastdotcom docs]) @@ -1542,7 +1542,6 @@ Experiencing issues introduced by this release? Please report them in our [issue [freebox docs]: /integrations/freebox/ [fritzbox_callmonitor docs]: /integrations/fritzbox_callmonitor/ [frontend docs]: /integrations/frontend/ -[gearbest docs]: /integrations/gearbest/ [geizhals docs]: /integrations/geizhals/ [generic_thermostat docs]: /integrations/generic_thermostat/ [geo_json_events docs]: /integrations/geo_json_events/ diff --git a/source/_redirects b/source/_redirects index 23657ddcd1f..b3a0be9b760 100644 --- a/source/_redirects +++ b/source/_redirects @@ -717,7 +717,6 @@ /components/sensor.fritzbox /integrations/fritzbox#sensor /components/sensor.fritzbox_callmonitor /integrations/fritzbox_callmonitor /components/sensor.fritzbox_netmonitor /integrations/fritzbox_netmonitor -/components/sensor.gearbest /integrations/gearbest /components/sensor.geizhals /integrations/geizhals /components/sensor.geo_rss_events /integrations/geo_rss_events /components/sensor.github /integrations/github @@ -1363,7 +1362,6 @@ /components/futurenow /integrations/futurenow /components/garadget /integrations/garadget /components/gc100 /integrations/gc100 -/components/gearbest /integrations/gearbest /components/geizhals /integrations/geizhals /components/generic_ip_camera /integrations/generic_ip_camera /components/generic_thermostat /integrations/generic_thermostat