Welcome

It's a pleasure to meet you here. We are a small team focusing on original product development, but marketing is not our strong point. Some parts of our website may not look as refined and perfect as we imagined, but please believe that our efforts are sincere. We realize how difficult it is for a small passionate team to grow in today's online world, which is why we thank you from the bottom of our hearts for the trust you have given us. We strive to meet your needs while providing more cost-effective and better services. - SuperSharge

PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo
PixGo

PixGo

Bring the Big Screen Anywhere – Movies, Games, and More!|The real original creator – PixGo!

Price

$175.00 $69.95
9191 sold

model

Please select a model

Quantity

FAQs

What is a PixGo projector?

PixGo integrates some functions of TV, mobile phone, PC, projector, player, game console, etc., with built-in Android 12 system, which is very convenient to use.

360-degree adjustable viewing angle. Can display a maximum screen size of 130 inches.

You can put it anywhere, of course you can also fix it on the top of the wall.

What channels does PixGo use to link external models?

Yes, it supports 2.4/5G dual-band WiFi (WiFi 6).

You can mirror your phone screen or use the HDMI port to connect to a TV, tablet, laptop, game console, etc.

You can also expand the device's memory capacity and play your built-in content via a TF card or USB flash drive.

It also has Bluetooth 5.0, which can connect to external speakers, headphones, microphones, game controllers and other devices.

Can I stream Netflix and YouTube directly from the projector?

Yes, PixGo runs Android 12.0, which comes with built-in apps like Netflix and YouTube.

You can also download other apps, movies, games, etc. you want from the built-in app store.

You can also use Chromecast for wireless screen mirroring from compatible devices and apps.

Can I connect my iPhone to a projector?

Yes, PixGo supports screen mirroring for Android and iOS devices.

You can connect devices such as TV, tablet, laptop, game console, USB drive, etc. by using the HDMI port.

How is the sound quality of PixGo? Is it loud when running?

PixGo delivers vivid visuals and clear sound with built-in HiFi speakers

The Ultra version includes a separate speaker for immersive surround sound.

Additionally, PixGo operates at an ultra-low noise level of just 25 decibels, allowing you to watch your favorite movies, play games, and give presentations in silence. Whether you’re hosting a movie night under the stars or giving a professional presentation, PixGo ensures a distraction-free, engaging experience.

Product information and differences

【Basic】

Meets basic usage needs.

【Pro】

Provides enhanced processing power and storage capacity, driven by a more powerful chip, and performs more smoothly in all aspects. Whether you are running applications, storing media or playing games, Pro ensures a faster and more responsive experience.

【Ultra】

In addition to all the advanced features of the Pro version, the Ultra version also includes a stunning starry sky projection light that simulates 12 immersive lighting atmospheres. Whether you are watching a movie, playing a game or hosting a party, the Ultra version can create a charming atmosphere and make every moment of your life more exciting.

W and B are only different in color, and there is no difference in other aspects.

In addition, the power plug is shipped by default according to the specifications of the country/region where your delivery address is located. If you have special requirements, please note in the order or contact us.

Customer reviews

4 Reviews
Brian

Good quality for the price, using it for movie nights, will buy again.

Kevin

I’m happy with my purchase, very efficient for family movie nights.

Ashley

Affordable and reliable, perfect for movie enthusiasts, just what I wanted.

Natalie

Met all my needs for watching TV, very pleased with it.

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1735275005845').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);