Product Description
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.now('module-9-comparison-table-carousel').execute(function(init){
if (init) {
return;
}
P.register('module-9-comparison-table-carousel', function() {
return function() {
P.when('A', 'jQuery', 'a-carousel-framework', 'ready').execute(function (A, $, framework) {
function initiateCarousel(module) {
var moduleId = $(module).data('carousel-name');
var containerClass = '.aplus-v2 .premium-aplus-module-9';
var carouselName = 'premium-aplus-9-carousel-'+moduleId;
var comparisonName = '.compare-'+moduleId;
var productLink = '.aplus-product-link-'+moduleId;
/* If the carousel goes to a new page, make sure the right toggle button is selected */
A.on('a:carousel:'+carouselName+':change:pageNumber', function (data) {
var oldCompareClass = containerClass+' '+comparisonName+data.oldValue;
var newCompareClass = containerClass+' '+comparisonName+data.newValue;
var oldLinkClass = containerClass+' '+productLink+data.oldValue;
var newLinkClass = containerClass+' '+productLink+data.newValue;
$(oldCompareClass+', '+oldLinkClass).hide();
$(newCompareClass+', '+newLinkClass).show();
});
}
$(".aplus-v2 .premium-aplus-module-9 .aplus-comparison-carousel-container").each(function(index) {
initiateCarousel(this);
});
});
}
});
})
}));
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.now('premium-module-11-faq').execute(function(init) {
if (init) {
return;
}
P.register('premium-module-11-faq', function() {
return function() {
P.when('A', 'jQuery', 'ready').execute(function(A, $){
function initFaq(module) {
var MODULE_CLASS_NAME = 'premium-aplus-module-11';
var FAQ_CONTAINER_CLASS_NAME = 'faqs-container';
var FAQ_BLOCK_CLASS_NAME = 'faq-block';
var moduleId = $(module).data('faq-block');
var $faqBlocks = $('.aplus-v2 .' + MODULE_CLASS_NAME + ' .' + FAQ_CONTAINER_CLASS_NAME + '.' + moduleId + ' .' + FAQ_BLOCK_CLASS_NAME);
/* Using jQuery event namespace for preventing duplicate binding on twister refresh */
$faqBlocks.unbind('click.premiumAplusModule11ClickHandler').bind('click.premiumAplusModule11ClickHandler', function(e) {
if (!$(this).hasClass('aplus-active')) {
$faqBlocks.removeClass('aplus-active'); /* deactivate others */
}
$(this).toggleClass('aplus-active'); /* activate the clicked block */
});
}
$(".aplus-v2 .premium-aplus-module-11 .faqs-container").each(function(index, module) {
initFaq(module);
});
});
};
});
});
}));
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.now('premium-module-12-nav-carousel').execute(function(init) {
if (init) {
return;
}
P.register('premium-module-12-nav-carousel', function(){
return function() {
P.when('A', 'jQuery', 'a-carousel-framework', 'ready').execute(function (A, $, framework) {
function initiateCarousel(module) {
var MODULE_ID = $(module).data('module-id');
/**
* Carousel button element classname
* @const
*/
var GOTO_BTN_CLASS_NAME = "aplus-goto-btn-" + MODULE_ID;
/**
* Carousel button element active classname
* @const
*/
var GOTO_BTN_ACTIVE_CLASS_NAME = "aplus-active";
/**
* AUI name for aui carousel
* @const
*/
var CAROUSEL_NAME = "premium-aplus-12-carousel-" + MODULE_ID;
/**
* Module class name
* @const
*/
var MODULE_CLASS_NAME = ".aplus-v2 .premium-aplus-module-12";
/**
* Carousel text container class name
* @const
*/
var TEXT_CONTAINER_CLASS_NAME = MODULE_CLASS_NAME + " .aplus-carousel-text-container-" + MODULE_ID;
/**
* Carousel text hidden class name
* @const
*/
var TEXT_CONTAINER_HIDDEN = "aplus-hidden";
/**
* Carousel horizontal scroll container class name
* @const
*/
var HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME = MODULE_CLASS_NAME + " .aplus-horizontal-scroll-container-" + MODULE_ID;
function showCarouselText(oldIndex, newIndex) {
var oldClass = TEXT_CONTAINER_CLASS_NAME + "-" + oldIndex;
var newClass= TEXT_CONTAINER_CLASS_NAME + "-" + newIndex;
$(oldClass).addClass(TEXT_CONTAINER_HIDDEN);
$(newClass).removeClass(TEXT_CONTAINER_HIDDEN);
}
function scrollToCarouselButton(scrollLeft) {
if ($(HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME).length) {
$(HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME).animate({scrollLeft}, 200);
}
}
/**
* Creates a CarouselButton class for provided carousel instance
* @param {object} carousel - AUI Carousel instance
* @returns {Class} - CarouselButton Class
*/
function CarouselButtonTemplate(carousel) {
/**
* Button for controlling the active slide
* @constructor
* @param {number} index - slide index
* @param {DOMElement} [elem] - optional DOM element to use as this objects DOM representation
*/
function CarouselButton(index, elem) {
var self = this;
this.index = index;
this.carousel = carousel;
/* create the button element */
this.elem = this.getElem(elem);
this.$elem = $(this.elem); /* store jquery version */
this.elem.addEventListener('click', self.handleClick.bind(self));
/* add this object to the object manager */
CarouselButton.objects.byId[index] = this;
CarouselButton.objects.all.push(this);
}
/**
* Describe behavior for click events on this.elem
* @memberOf CarouselButton
*/
CarouselButton.prototype.handleClick = function(e) {
e.preventDefault();
this.carousel.gotoPage(this.index);
};
/**
* Enter active state
* @memberOf CarouselButton
*/
CarouselButton.prototype.activate = function() {
this.$elem.addClass(GOTO_BTN_ACTIVE_CLASS_NAME).attr('aria-selected', 'true');
};
/**
* Enter inactive state
* @memberOf CarouselButton
*/
CarouselButton.prototype.deactivate = function() {
this.$elem.removeClass(GOTO_BTN_ACTIVE_CLASS_NAME).attr('aria-selected', 'false');
};
/**
* Returns an existing or creates a new bound element for this object
* @memberOf CarouselButton
* @param {DOMElement} [elem] - optionally provide an existing element in the DOM to use
* @returns {DOMElement} - this objects DOM representation
*/
CarouselButton.prototype.getElem = function(elem) {
if (this.elem) return this.elem;
if (elem) return elem;
var createdElem = document.createElement('span');
createdElem.className = GOTO_BTN_CLASS_NAME;
return createdElem;
};
/** @const Object manager */
CarouselButton.objects = {
byId: {},
all: [],
};
return CarouselButton;
}
framework.onInit(CAROUSEL_NAME, function(carousel) {
/** @const {Class} */
var CarouselButton = CarouselButtonTemplate(carousel);
/* create carousel controls */
var $carouselBtns = $(safeClassSelector(GOTO_BTN_CLASS_NAME));
var btns = $carouselBtns.map(function(i, btnElem) {
return new CarouselButton(i + 1, btnElem);
});
/* activate first one */
CarouselButton.objects.byId[1].activate();
/* Listen to slide changes */
A.on("a:carousel:" + CAROUSEL_NAME + ":change:pageNumber", function (data) {
var newCarouselButton = CarouselButton.objects.byId[data.newValue];
var marginLeft = parseInt(getComputedStyle(newCarouselButton.elem).getPropertyValue('margin-left'));
var positionLeft = newCarouselButton.elem.offsetLeft - marginLeft;
newCarouselButton.activate();
CarouselButton.objects.byId[data.oldValue].deactivate();
scrollToCarouselButton(positionLeft);
showCarouselText(data.oldValue, data.newValue);
});
});
/**
* @returns {string} - css classname prefixed with module selector
*/
function safeClassSelector(className) {
return '.' + MODULE_CLASS_NAME + ' .' + className;
}
}
$('.aplus-v2 .premium-aplus-module-12 .aplus-carousel-container').each(function (index, module) {
initiateCarousel(module);
});
framework.createAll();
framework.initializeAll();
});
}
})
});
}));
{"clickstreamNexusMetricsConfig":{"actionType":"DISCOVERY","productId":"","eventOwner":"vsemetrics_playercards","schemaId":"clickstream.CustomerEvent.4","producerId":"vsemetrics_playercards","eventType":"IVEVideoView"},"clientPrefix":"aplus-602794","closedCaptionsConfig":{"captionsOnTexts":{"en":"English (Automated)"},"captionsOffText":"Captions off","languageToLabelTexts":{"English":"English"}},"sushiMetricsConfig":{"isRobot":false,"clientId":"VSE-US","videoAsinList":"","weblabIds":"","eventSource":"Player","sessionId":"000-4147331-3867317","refMarkers":"aplus-602794_ref","placementContext":"AplusWidget","marketplaceId":"ATVPDKIKX0DER","isInternal":false,"endpoint":"https://unagi-na.amazon.com/1/events/com.amazon.eel.vse.metrics.prod.events.test","requestId":"88E7359DC67245A89DE8","customerId":"0","sessionType":1},"mimeType":"video/mp4","nexusMetricsConfig":{"isInternal":false,"widgetMetricsSchemaId":"vse.VSECardsEvents.8","clientId":"VSE-US","videoAsinList":"","weblabIds":"","eventSource":"Player","videoAsin":"hero-video","producerId":"vsemetrics_playercards","refMarkers":"aplus-602794_ref","placementContext":"AplusWidget","playerTSMMetricsSchemaId":"vse.VSECardsPlayerEvents.7"},"videoHeight":0,"videoWidth":0,"videoUrl":"https://m.media-amazon.com/images/S/aplus-media/sc/5fec56e6-454b-4cbd-b063-72c927e1c299.mp4","metricsEmissionMethod":"nexus","imageUrl":"https://m.media-amazon.com/images/S/aplus-media/sc/47632285-3d3b-4797-b2e9-6c52c91c5941.__CR0,0,1464,600_PT0_SX1464_V1___.jpg","awaConfig":{"useUpNextComponent":false,"clickstreamNexusMetricsConfig":{"actionType":"DISCOVERY","productId":"","eventOwner":"vsemetrics_playercards","schemaId":"clickstream.CustomerEvent.4","producerId":"vsemetrics_playercards","eventType":"IVEVideoView"},"initialVideo":"hero-video","shouldPreload":true,"enableClickBasedAttribution":false,"isChromelessPlayer":false,"closedCaptionsConfig":{"captionsOnTexts":{"en":"English (Automated)"},"captionsOffText":"Captions off","languageToLabelTexts":{"English":"English"}},"isVideoImmersivePlayer":false,"metricsEmissionMethod":"nexus","skipInitialFocus":false,"playerSkin":"none","disabledViewIds":["replayHint"],"includeEarnsComissionDisclosure":false,"customerId":"0","containerId":"aplus-602794-player-16b26476-dc28-4e70-80ee-9c28c58823e6","requestMetadata":{"marketplaceId":"ATVPDKIKX0DER","clientId":"VSE-US","method":"AplusWidget","requestId":"88E7359DC67245A89DE8","pageAsin":"","sessionId":"000-4147331-3867317"},"shouldLoop":false,"shouldDisableControls":false,"alwaysSetInitialVideo":true,"showPlayerCloseButton":false,"clientPrefix":"","useAutoplayFallback":false,"sushiMetricsConfig":{"isRobot":false,"clientId":"VSE-US","videoAsinList":"","weblabIds":"","eventSource":"Player","sessionId":"000-4147331-3867317","refMarkers":"aplus-602794_ref","placementContext":"AplusWidget","marketplaceId":"ATVPDKIKX0DER","isInternal":false,"endpoint":"https://unagi-na.amazon.com/1/events/com.amazon.eel.vse.metrics.prod.events.test","requestId":"88E7359DC67245A89DE8","customerId":"0","sessionType":1},"ospLinkCode":"","showPosterImage":true,"languageCode":"en","version":"","nexusMetricsConfig":{"isInternal":false,"widgetMetricsSchemaId":"vse.VSECardsEvents.8","clientId":"VSE-US","videoAsinList":"","weblabIds":"","eventSource":"Player","videoAsin":"hero-video","producerId":"vsemetrics_playercards","refMarkers":"aplus-602794_ref","placementContext":"AplusWidget","playerTSMMetricsSchemaId":"vse.VSECardsPlayerEvents.7"},"shouldStartMuted":false,"airyVersion":"VideoJS","languagePreferenceStrings":{},"enableInactiveFocus":true,"isReactFactory":false,"enableDelphiAttribution":false,"includeReportWidget":false,"shouldAutoplay":false},"needPlayerFactory":false,"isMobile":false}
(window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/51il5akWzpL.js?AUIClients/VSEPlayer');
(window.AmazonUIPageJS ? AmazonUIPageJS : P).load.js('https://images-na.ssl-images-amazon.com/images/I/21L2L4uKEUL._RC|01x4giTy+uL.js,01r9LpT6pbL.js,41DFDIBs9mL.js,11QfrzttlqL.js,91qahXPBdEL.js,01ELLYeIOkL.js_.js?AUIClients/Brila');
(function(f) {var _np=(window.P._namespace("vse-ns-initVSEPlayerOnLoad"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.when('VSEPlayer').execute(function(vsePlayer){vsePlayer.initPlayer('aplus-602794-player-ps');});
//Please use below event to register FeedbackForm
P.when('A', 'VSEComponentAssets').execute('vse-ns-player-initialization', function(A, asset) {
A.trigger('vse:ns:player:aplus-602794:init', 'aplus-602794-player-ps');
});
}));
Previous page
Next page
1 High-Quality Product 2 Coverage 3 Schedule 4 Connectivity 5 Pet & Kids Friendly
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.when('premium-module-12-nav-carousel').execute(function(init){
init();
});
}));
Scent Diffuser White
Diffuser Comparison
1,500 Sq ft
Coverage
500 Sq ft
Waterless
Flexible settings
Bluetooth & App
Wall Tabletop Floor
Mouting
Plug-in
No Flame
Pet Friendly
1,500 Sq ft
Coverage
500 Sq ft
Waterless
Flexible settings
Bluetooth & App
Wall Tabletop Floor
Mouting
Plug-in
No Flame
Pet Friendly
1,500 Sq ft
Coverage
1,500 Sq ft
Waterless
Flexible settings
Bluetooth & App
Wall Tabletop Floor
Mouting
Wall Tabletop Floor
No Flame
Pet Friendly
Previous page
Plug-in Diffuser 201
Plug-in Diffuser 202
Scent Diffuser Black
Next page
P.now("premium-aplus-9-carousel-3").execute(function(init) {
if (init) {
return;
}
P.register("premium-aplus-9-carousel-3", function(){
return function() {
P.when("A", "jQuery", "a-carousel-framework", "ready").execute(function (A, $, framework) {
var moduleId = "3";
var carouselName = "premium-aplus-9-carousel-3";
var paginationAction = "aplus-pagination-dot-action-" + moduleId;
var paginationGroup = "#aplus-pagination-group-" + moduleId + "-" + carouselName;
const ENTER_KEY_CODE = 13;
const ESCAPE_KEY_CODE = 27;
/* If the carousel goes to a new page */
A.on("a:carousel:"+carouselName+":change:pageNumber", function (data) {
A.$(paginationGroup+" .carousel-slider-circle").removeClass("aplus-carousel-active").attr('aria-selected', 'false')
.eq(data.newValue - 1).addClass("aplus-carousel-active").attr('aria-selected', 'true');
});
framework.onInit(carouselName, function (carousel) {
A.declarative(paginationAction, 'click keydown', function(event){
var isClick = event.type === 'click';
var isKeydown = event.type === 'keydown';
var isEnter = isKeydown && event.$event.keyCode === ENTER_KEY_CODE;
var isEsc = isKeydown && event.$event.keyCode === ESCAPE_KEY_CODE;
if (isClick || isEnter) {
var data = event.data;
carousel.gotoPage(data.page);
} else if (isEsc) {
// force remove focus
event.$target.blur()
}
});
});
});
}
});
});
Learn More
Learn More
Learn More
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.when('module-9-comparison-table-carousel').execute(function(init){init();});
P.when('premium-aplus-9-carousel-3').execute(function(init) {init();});
}));
Previous page
New Innovative Technology
Our diffusers transform liquid scent into vaporized particles, evenly filling spaces with fragrance.
Elevate Any Space with our 2024 Scent Machine
Experience luxurious scents for home, office, or commercial areas with 1,500-2,000 sq ft coverage.
Unmatched Scent Experience
Dry vaporous microparticles capable of evenly perfuming your environment, promoting well-being.
Plug & Play Wall Diffuser
Instantly fills spaces up to 500 sq ft with evenly distributed fragrance in minutes.
Easy Plug-in and Play Diffuser
With 4 intensity levels for small to medium-sized rooms.
Next page
1 Discover 2 Scent Diffuser White 3 Scent Diffuser Black 4 Plug-in Diffuser White 5 Plug-in Diffuser Black
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.when('premium-module-12-nav-carousel').execute(function(init){
init();
});
}));
Previous page
LUXURY IN EVERY ROOM:
Transform each room into an exclusive retreat reminiscent of a luxury hotel with our diverse range of exquisite scents. Personalize your home with a unique aroma that defines you.
Discover the ultimate collection of our fragrances
Our curated selection features these best fragrances so you can explore and choose from a range of scents that suit your personality and style before buying a full bottle.
Discover
Samples Kit AromaPlan
Our Sample Kit features 12 samples of our top premium fragrances. This is your opportunity to experience and confirm the quality and be impressed by our fragrances.
Purchase Now
Samples Kit AromaPlan
Our Sample Kit features 12 samples of our top premium fragrances. This is your opportunity to experience and confirm the quality and be impressed by our fragrances.
Purchase now
Next page
P.now("premium-aplus-13-carousel-5").execute(function(init) {
if (init) {
return;
}
P.register("premium-aplus-13-carousel-5", function(){
return function() {
P.when("A", "jQuery", "a-carousel-framework", "ready").execute(function (A, $, framework) {
var moduleId = "5";
var carouselName = "premium-aplus-13-carousel-5";
var paginationAction = "aplus-pagination-dot-action-" + moduleId;
var paginationGroup = "#aplus-pagination-group-" + moduleId + "-" + carouselName;
const ENTER_KEY_CODE = 13;
const ESCAPE_KEY_CODE = 27;
/* If the carousel goes to a new page */
A.on("a:carousel:"+carouselName+":change:pageNumber", function (data) {
A.$(paginationGroup+" .carousel-slider-circle").removeClass("aplus-carousel-active").attr('aria-selected', 'false')
.eq(data.newValue - 1).addClass("aplus-carousel-active").attr('aria-selected', 'true');
});
framework.onInit(carouselName, function (carousel) {
A.declarative(paginationAction, 'click keydown', function(event){
var isClick = event.type === 'click';
var isKeydown = event.type === 'keydown';
var isEnter = isKeydown && event.$event.keyCode === ENTER_KEY_CODE;
var isEsc = isKeydown && event.$event.keyCode === ESCAPE_KEY_CODE;
if (isClick || isEnter) {
var data = event.data;
carousel.gotoPage(data.page);
} else if (isEsc) {
// force remove focus
event.$target.blur()
}
});
});
});
}
});
});
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.when("premium-aplus-13-carousel-5").execute(function(init){init();});
}));
How can I find the App to connect my diffuser?
Search for “AromaPlan” on your App Store or Google Play Store. The DAP Diffuser can be controlled by only one device, since it works via Bluetooth connection.
What is the DAP Diffuser recipient size? And How long does the oil last?
With a 300mL reservoir, the diffuser consumes 1 mL of oil per hour on average, set to work for 40s and pause for 30s. Adjusting pause and work times allows for more efficient fragrance consumption.
Are diffusers compatible with my phone?
Yes, only our AromaPlan DAP 1001 / 1002 scent diffusers are compatible with iOS and Android devices, allowing you to control the schedule and intensity level of your diffuser via Bluetooth.
Can I set different schedules for different days of the week?
Yes, you can! First, choose the day of the week and then choose the settings. Confirm and save it. After that, select the other days of the week and choose the different settings.
How can I reset the DAP Diffuser to connect properly to the AromaPlan App?
Disconnect the power cord, press and hold the button below the light (reset button). Connect the power cord again. Keep pressing the reset button till you hear the beep. the diffuser will reset to its original factory settings.
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {
P.when('premium-module-11-faq').execute(function(init){
init();
});
}));
AMAZING FRAGRANCE IN EVERY CORNER – This 2024 upgraded AromaPlan scent home machine has an incredible 1,500 to 2,000 Sq Ft coverage. It can be used to cover an entire home, office, spa or commercial space that will smell and feel like a 5-star hotel.
SCENT ANY SPACE IN MINUTES- With a unique NT-10x technology that converts liquid perfume into dry vaporous microparticles, this new scent machine will evenly scent any environment in minutes.
EASY TO SET UP WITH CUSTOMIZABLE SETTINGS - All done through the exclusive AromaPlan app in the palm of your hand, in a few minutes. This new scent diffuser is controlled exclusively via Bluetooth through the AromaPlan app (available for IOS and ANDROID). It is possible to make several advanced schedules (days of operation, specific times, fog intensity, work time and break time.
MESS & NOISE-FREE- Unlike other cheap essential oil diffusers that make a mess, leaving oily and wet residue around , our waterless scent diffuser is completely mess-free. AromaPlan quiet nebulizer machine allows you to relax and not waste any time cleaning. It also is easily installed on any wall or floor.
NATURAL & SAFE - AromaPlan is completely safe for PETS & KIDS so you can enjoy all of the wonderful benefits of our aromas without any of the worrying. Our scents are free of solvents and raw materials derived from petroleum.
PLACE IT ANYWHERE! This scent air machine allows you to enjoy the fragrance of your choice in a variety of settings. Place this scent air machine anywhere and have it installed as part of your home's ventilation system (note that the hose does not come with this device, but can be easily found.
CREATED BY VISIONARY AND PASSIONATE ENTREPERNEURS - AromaPlan is a young company, specialized in creating aroma experiences. We are driven by passion and inspired by love. Our goal is to provide memorable experiences with high-quality fragrances that create a specific ambience with pure essential scents. Our scent machines use advanced technology to convert perfume into dry microparticles. The experience is so powerful you'll feel as if you're in a 5-star hotel.
Brand
AROMAPLAN
Color
White
Recommended Uses For Product
Office, Home
Material
Upgraded White
Special Feature
Silent Operation