iSpring RO800G+UVF8 Tankless Reverse Osmosis System with LED UVF8 Light, 800 GPD Fast Flow RO System, 2.5:1 Pure to Drain Ratio RO Water Filter System, Brushed Nickel Faucet
Triple the Savings, Triple the Joy!
About this item
- [Efficient Water Management] - The RO800G-UV under-sink reverse osmosis water filter stands out with an impressive 2.5:1 pure-to-waste water ratio, conserving up to 750% more water than traditional systems. Its high-performance features include a built-in booster pump and an 800 GPD RO membrane, ensuring a rapid water flow of 0.6 GPM and the ability to fill an 8 oz cup in under 6.5 seconds.
- [Comprehensive Contaminant Elimination] - Our system goes beyond, removing over 1,000 harmful contaminants such as PFAS, chlorine, fluoride, lead (up to 98% removal), arsenic, asbestos, calcium, sodium, sediments, sand, odors, and more. Transforming tap water into pristine drinking water, it boasts a potential Total Dissolved Solids (TDS) rejection rate of up to 99%.
- [Advanced Features] - Our system includes an LED UV light that efficiently filters out up to 99.9% of contaminants, boasting an impressive lifespan of up to 7000 hours. The smart flow sensor component vigilantly monitors water flow, activating the UV light only when water is in motion, ensuring optimal performance and longevity.
- [Filter Life Monitoring] - The built-in filter life indicators offer a visual alert system, blinking in white when filter life falls below 10% and turning red when replacement is necessary. We recommend regular replacement of filters (FPPC and MRO800) to uphold peak filtration performance.
- [Simple Installation and Effortless Filter Replacement] - Our integrated-water-route technology makes installation a user-friendly DIY task. The compact tankless design seamlessly fits under the sink, saving an impressive 70% of space. Changing filters is a breeze with the click and lock feature—no need to cut off the water supply. Securely replace filters within 5 seconds, all without the need for any tools.
Frequently Bought Together
iSpring RO800G+UVF8 Tankless Reverse Osmosis System with LED UVF8 Light, 800 GPD Fast Flow RO System, 2.5:1 Pure to Drain Ratio RO Water Filter System, Brushed Nickel Faucet
$539.00
- Availability: In Stock
- Model: RO800G+UVF8
Reviews with images
Write Review
-
iSpring FPPC Replacement Water Filter for RO800 Reverse Osmosis System
$29.99
-
iSpring MRO800 RO Membrane Reverse Osmosis Replacement, High Flow up to 800 GPD, 2.5:1 Pure to Waste water ratio
$129.99
-
iSpring UVF8 LED UV Water Filter, Add-on Kit for Under Sink Water Filtration Systems, Mercury-Free, Stainless steel
$129.99
-
Start Download
RO800G+UVF8 Manual.pdf
-
Start Download
RO800G+UVF8 Manual.pdf
How to install
How to use
Replacement Filters & Parts
Filters:
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"\n",
"\n",
" \n",
" \n",
" \n",
" \n",
" \n",
"\n",
" \n",
"\n",
"\n",
"\n",
"\n",
" \n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n"
]
}
],
"source": [
"import pandas as pd\n",
"\n",
"# FAQ HTML Code & SCHEMA Part\n",
"sku = \"RO800G+UVF8\"\n",
"faq_df = pd.read_excel(\"Input.xlsx\", sheet_name=sku)\n",
"\n",
"faq_html = ''\n",
"faq_schema = ''\n",
"\n",
"for i in range(len(faq_df)):\n",
" # Get FAQ from input and inbed them into html code\n",
" q_str = faq_df[\"Questions\"][i]\n",
" a_str = faq_df[\"Answers\"][i]\n",
" \n",
" # Generate FAQ html\n",
" faq_html_one = '''\n",
" \n",
" \n",
" \n",
" \n",
" \n",
" \n", " Do I still need a water softener if my water is hard?\n", "\n", "\n", "\n", " Yes. Our WGB22B-KS whole house water filter does not reduce hardness. It is recommended to install a water softener, such as the iSpring WCS45KG model, before this system if your TDS level is above 300 ppm. \n", " \n", "\n",
" \n",
" \n",
" \n",
" \n",
" \n", " Can I install this system outdoors?\n", "\n", "\n", "\n", " This system must be installed indoors. The installation site should be well-ventilated and shielded from wind and rain. Avoid direct sunlight and heat sources. It's advisable to have water leakage protection installed with the system. If outdoor installation is necessary, ensure proper insulation, including frost-proofing, sun protection, waterproofing, and insulation measures for both the body and pipes.\n", " \n", "\n",
" \n",
"\n",
" \n",
" \n",
" \n", " Can I use this system if my water flow is from left to right?\n", "\n", "\n", "\n", " Yes, you can. However, please note that the inlet/outlet marking on the system is fixed, so you will need to flip the machine head to accommodate this setup. To do this, simply remove the screws on the machine head and flip it.\n", " \n", "\n",
" '''.format(q_str, a_str)\n",
" \n",
" faq_html += faq_html_one \n",
" \n",
" \n",
" # Generate FAQ schema\n",
" faq_schema_one = '''\n",
" {{\n",
" \"@type\": \"Question\",\n",
" \"name\": \"{}\",\n",
" \"acceptedAnswer\": {{\n",
" \"@type\": \"Answer\",\n",
" \"text\": \"{}\"\n",
" }}\n",
" }},\n",
" '''.format(q_str, a_str)\n",
" \n",
" faq_schema += faq_schema_one\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"html_final = '''\n",
"\n",
"\n",
"\n",
" \n",
" \n",
" \n",
" \n",
"\n",
" \n",
" \n",
" \n", " {}\n", "\n", "\n", "\n", " {}\n", " \n", "\n",
"{}\n",
" \n",
"\n",
"\n",
"\n",
"\n",
" \n",
"\n",
"\n",
"\n",
"\n",
"\n",
"'''.format(faq_html, faq_schema[:-6])\n",
"\n",
"print(html_final)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
|