Skip to content
Popup Example

Earn From News Kiosk

DailyObjects Loop Power Bank With Qi2 Certification, 15W Wireless Charging Launched in India

January 10, 2025
DailyObjects Loop Power Bank With Qi2 Certification, 15W Wireless Charging Launched in India

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!
DailyObjects Loop Power Bank With Qi2 Certification, 15W Wireless Charging Launched in India

DailyObjects launched its latest power bank dubbed Loop for phones in India on Thursday. The direct-to-consumer (D2C) tech and lifestyle brand says Loop meets the global wireless charging standards courtesy of compatibility with the latest Qi2 certification. Besides current iPhone models and future Android smartphones, the power bank can also wirelessly deliver power to other compatible ecosystem devices such as smartwatches or TWS earbuds with the help of a magnetic-locking mechanism.DailyObjects Loop Price in IndiaDailyObjects Loop price in India starts at Rs . 3,999. The power bank is offered in three capacities — 5,000mAh, 10,000mAh, and 20,000mAh. The latter variants are priced at Rs. 5,999 and Rs. 7,499, respectively.It is available for purchase from the DailyObjects website in black and titanium colourways.DailyObjects Loop SpecificationsDailyObjects Loop supports the latest Qi2 wireless charging standard of the Wireless Power Consortium (WPC) which was released in 2023. This is claimed to make it compatible with iPhone 12 and later models, and future-proofs it for Android smartphones adopting the technology. It can deliver a maximum output of 20W (wired) and 15W (wireless). DailyObjects says the 20,000mAh variant can charge a smartphone three to four times.Owing to the Qi2 certification, the power bank supports 15W MagSafe wireless charging which can charge an iPhone 16 to 25 percent in 22 minutes, as compared to power banks without Qi2 taking. approximately 43 minutes to reach the same charge level. The power bank supports MagSafe and is compatible with the entire Apple ecosystem, as per the brand. This includes iPhone, Apple Watch, and AirPods — all of them charged wirelessly.For durability, it is built with aerospace-grade aluminum and weighs 242g. Select variants also come with a retractable stand for holding it upright. The power bank also comes with a small display which can be used to check the charge level and power delivery in real-time. Loop has a two-way USB Type-C port and supports a maximum input charge of 18W.Catch the latest from the Consumer Electronics Show on Gadgets 360, at our CES 2025 hub.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();