Home
/
PDQ TPMS 315 MHZ Tire Pressure Sensor Rubber StemFor Toyota Lexus Scion Direct Replacement For OE Part # 42607-0C070 | 42607-0C050 | 42607-0C030 | 42607-08010
COYOTE CONFIRMED FIT
This part fits your selected vehicle
This does not fit
{
$dispatch('open-garage')
}">Change
{
$dispatch('open-garage')
}">Make sure this fits
PDQ TPMS 315 MHZ Tire Pressure Sensor Rubber StemFor Toyota Lexus Scion Direct Replacement For OE Part # 42607-0C070 | 42607-0C050 | 42607-0C030 | 42607-08010
calcActive())">
chevron-left
View larger image
chevron-right
❌ OBDII RELEARN | TPMS Scan Tool with OBDII is Required | Install Sensors | Adjust tire pressures to placard value | Using Scan Tool, Scan tires starting at LF | Repeat for RF, RR, LR, and Spare if required |Turn Ignition ON, ACC Position | Follow instructions on scan tool | Disconnect OBD | Turn ignition OFF | Drive vehicle to complete process Always use SHOP BY VEHICLE to validate product fitment to your vehicle. This item fits Replaces Original Equipment Sensors For Toyota Lexus Scion OE Part #'s 42607-0C070 | 42607-0C050 | 42607-0C030 | 42607-08010 PDQ has been in the sensor business for over 15 years. We are an American company providing quality products and service. All products are Engineered and developed in the US by our US staff. PDQ is proud to create opportunities for our employees in our community for Americans. PDQ tire pressure sensors are manufactured to exacting OE standards to ensure reliable performance and durability, it is constructed of high quality material, premium chip and durable lithium battery, every component has undergone extensive professional testing—including signal, operational temperature, thermal shock, humidity, and proof pressure to ensure trouble-free installation and excellent performance. 2 Year Warranty - Our replacement sensor comes with 2 year warranty, it can last 5+ years under normal usage. If the replacement sensor fails or stops working, simply contact us for free replacement or refund. Save hundreds off of dealer prices and take advantage of our products and services.
shopping-cart
Add to Cart
Description
More Information
Make
Toyota/Lexus/Scion
PlatForm Id
86 2nd Gen ZN8
Last Fitment Synced Time
2024-05-06 15:02:41
Last Fitment Synced Time Atv
Jan 8, 2025
Last Fitment Synced Time Passenger
Dec 29, 2024
Last Fitment Synced Time Passenger
2025-01-08 16:40:08
More Information
Make
Toyota/Lexus/Scion
PlatForm Id
86 2nd Gen ZN8
Last Fitment Synced Time
2024-05-06 15:02:41
Last Fitment Synced Time Atv
Jan 8, 2025
Last Fitment Synced Time Passenger
Dec 29, 2024
Last Fitment Synced Time Passenger
2025-01-08 16:40:08
Fitment Vehicle
Loading...
`;
return loader;
}
function addAjaxLoader(button, loader) {
button.setAttribute('data-label', button.getAttribute('aria-label'));
button.removeAttribute('aria-label');
button.prepend(loader);
button.classList.add('relative', '[&>:not(.loader)]:invisible');
button.disabled = true;
}
function removeAjaxLoader(button, loader) {
button.setAttribute('aria-label', button.getAttribute('data-label'));
button.removeAttribute('data-label');
loader.remove();
button.classList.remove('[&>:not(.loader)]:invisible');
button.disabled = false;
}
window.setAjaxCart = ({
formSelectors = ['#product_addtocart_form', '.product_addtocart_form'],
extraDelay = 500 } = {}) => {
const forms = document.querySelectorAll(formSelectors.toString());
forms.forEach(form => {
form.addEventListener('submit', async (event) => {
event.preventDefault();
const formData = new FormData(form);
const button = form.querySelector('button')
? form.querySelector('button')
: document.getElementById('product-addtocart-button');
const loader = createAjaxLoader(button);
const postUrl = event.target.action;
let bodyUrl = new URLSearchParams(formData);
bodyUrl.append("uenc", hyva.getUenc());
addAjaxLoader(button, loader);
try {
const response = await fetch(postUrl, {
method: 'POST',
body: bodyUrl.toString(),
mode: "cors",
credentials: "include",
headers: {
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
'X-Requested-With': 'XMLHttpRequest'
}
});
if (!response.ok) {
return form.submit();
}
if (response.redirected) {
return window.location.href = response.url;
}
window.dispatchEvent(new CustomEvent("reload-customer-section-data"));
const productFormData = {
productId: formData.get("product"),
options: {}
}
for (const formEntry of formData.entries()) {
if (!formEntry[0].startsWith('super_attribute')) continue;
const formEntryOption = { [formEntry[0].match(/\[(\d+)\]/)[1]]: formEntry[1] };
productFormData.options = { ...productFormData.options, ...formEntryOption };
}
window.dispatchEvent(new CustomEvent('toggle-ajax-cart', { detail: productFormData }));
} catch (err) {
console.warn(err);
window.dispatchEvent(new CustomEvent('product-addtocart-error'));
if (typeof window.dispatchMessages === "undefined") return;
window.dispatchMessages([{
text:'There\u0020was\u0020a\u0020problem\u0020adding\u0020your\u0020item\u0020to\u0020the\u0020cart.',
type: 'error'
}], 5000);
} finally {
setTimeout(() => removeAjaxLoader(button, loader), extraDelay);
}
});
});
}
window.setAjaxCart();
function initAjaxCartModal() {
return {
open: false,
cart: {},
totalCartAmount: 0,
cartItem: null,
showSku: true,
sortObjectByNumberKey(obj) {
let keys = Object.keys(obj).map(Number).sort((a, b) => a - b);
let sortedObj = {};
keys.forEach(key => sortedObj[key] = obj[key]);
return sortedObj;
},
getCurrentProductFromCart(productData) {
if (!this.cart.items) return;
this.cartItem = this.cart.items.filter((item) => {
if (item.product_id !== productData.productId) return;
if (item.product_type !== "configurable") {
return item;
}
let cartItemOptions = {};
for (const option of item.options) {
const filterOptions = { [option.option_id]: option.option_value };
cartItemOptions = { ...cartItemOptions, ...filterOptions }
}
const cartItemOptionsCompare = JSON.stringify(this.sortObjectByNumberKey(cartItemOptions));
const productDataOptionsCompare = JSON.stringify(this.sortObjectByNumberKey(productData.options));
if (cartItemOptionsCompare === productDataOptionsCompare) {
return item;
}
});
if (this.cartItem > 1) {
this.cartItem = this.cartItem.slice(0, 1);
}
this.cartItem = this.cartItem[0];
},
getData(data, productData) {
if (!data.cart) return;
this.cart = data.cart;
this.totalCartAmount = this.cart.summary_count;
this.getCurrentProductFromCart(productData);
},
getItemCountText() {
if (this.totalCartAmount > 1) {
return hyva.strf('(\u00250\u0020items)', this.totalCartAmount);
}
return hyva.strf('(\u00250\u0020item)', this.totalCartAmount);
},
openDialog() {
if (!this.cartItem) return;
this.$root.showModal();
this.open = true;
this.scrollLock(this.open);
},
closeDialog() {
this.$root.close();
this.open = false;
this.scrollLock(this.open);
},
scrollLock(use = true) {
document.body.style.overflow = use ? "hidden" : "";
},
onDialogBackdropClickHelper(event, target) {
const rect = target.getBoundingClientRect();
const isInDialog =
rect.top <= event.clientY &&
event.clientY <= rect.top + rect.height &&
rect.left <= event.clientX &&
event.clientX <= rect.left + rect.width;
return isInDialog;
},
dialogListeners: {
['@keydown.window.escape']() {
this.closeDialog();
},
['@click'](event) {
if (this.onDialogBackdropClickHelper(event, this.$root)) return;
this.closeDialog();
},
['@toggle-ajax-cart.window'](event) {
if (!event.detail) return;
const productData = event.detail;
window.addEventListener('private-content-loaded', (event) => {
this.getData(event.detail.data, productData);
if (!this.open) {
this.openDialog();
} else {
this.closeDialog();
}
}, { once: true });
}
}
}
}
-->
The product was added to your cart.
Cart subtotal