<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog &#8211; Flomio</title>
	<atom:link href="https://flomio.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://flomio.com</link>
	<description>Proximity ID Solutions</description>
	<lastBuildDate>Fri, 13 Jun 2025 13:09:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.9.26</generator>
	<item>
		<title>Best UX: Provisioning Headless IoT Devices</title>
		<link>https://flomio.com/2018/03/best-ux-provisioning-headless-iot-devices/</link>
		<comments>https://flomio.com/2018/03/best-ux-provisioning-headless-iot-devices/#respond</comments>
		<pubDate>Sat, 17 Mar 2018 06:24:08 +0000</pubDate>
		<dc:creator><![CDATA[Richard]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=62578</guid>
		<description><![CDATA[<p>There are many ways to connecting to an IoT device, some are better than others. The challenge is simple, get the device onto your home/work WiFi. But how? Is your phone on the same wifi network? What&#8217;s the device named? Which one do you pair to? What if there are many devices? From RaspberryPis to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2018/03/best-ux-provisioning-headless-iot-devices/">Best UX: Provisioning Headless IoT Devices</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><img class="alignright wp-image-62610 " src="https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-600x256.png" alt="" width="370" height="158" srcset="https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-600x256.png 600w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-80x34.png 80w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-768x327.png 768w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-1024x436.png 1024w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-630x268.png 630w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-930x396.png 930w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-450x192.png 450w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1-150x64.png 150w, https://flomio.com/wp-content/uploads/2018/03/dps-provisioning-flow-1.png 1068w" sizes="(max-width: 370px) 100vw, 370px" />There are many ways to connecting to an IoT device, some are better than others. The challenge is simple, get the device onto your home/work WiFi. But how? Is your phone on the same wifi network? What&#8217;s the device named? Which one do you pair to? What if there are many devices? From RaspberryPis to Arduinos to custom designs, IoT developers need to get it right. Otherwise, they risk turning off customers before their product can be appreciated.</p>
<p>Apple and Google have solutions but they don&#8217;t play well together. You may have enjoyed provisioning Google Chromecast from an Android phone. Or setting up your AppleTV from your iPhone. It&#8217;s not as nice when you mix things up though. This is due to security upgrades to both Android and iOS that prevent apps from changing a user’s network settings. Despite being more secure, it kills the user experience.</p>
<p>NFC avoids the security issues by exchanging network settings directly. Rather than mess with complex WiFi modes and workflows, NFC is a sensible alternative that isn&#8217;t so difficult to implement. Flomio&#8217;s products and support assist product UX designers achieve the best result across hardware and software.</p>
<p><span id="more-62578"></span></p>
<blockquote>
<h2>NFC is compatible across iOS and Android</h2>
</blockquote>
<p>&nbsp;<br />
The tech giants make use of Zeroconf technology, or what Apple calls Bonjour, to create an out-of-band, peer-to-peer temporary network between mobile device and hardware product. The problem is that most IoT device makers are not Google or Apple. Delivering a great cross platform experience is difficult with Zeroconf technology.</p>
<p>Product makers may try using an embedded web server on their device and a REST API through a mobile app. Both require the user to manually connect their mobile device to the IoT device in soft AP mode (acting as its own WiFi network). This approach blows because it forces the user to leave the app plus it often strands networks. You may have seen the resulting clunkiness in products like Belkin WeMo.</p>
<p>The most broadly supported method for connecting devices is tap-to-pair via NFC. This method is commonly found in Bluetooth speakers and headphones but available to WiFi devices as well. There&#8217;s several ways to implement it -each with different pros/cons- a few of which I discuss below:</p>
<h3><span class="dropcap3">1</span> <em>Your product has Wifi and BLE radios, as well as an external NFC sticker with BLE pairing code.</em></h3>
<p><strong>User story:</strong> Joe installs product app from app store, launches app, and taps NFC surface to pair product to his phone.<br />
<strong>How it works:</strong> Behind the scenes BLE secure pairing is established and WiFi creds are sent seamlessly over BLE to product. We have implemented this on a <a href="https://flomio.com/shop/systems/smartcart-shopping-cart-product-detection/">shopping cart product</a> we built last year, checkout the pairing process at the beginning of this video:</p>
<p align="center"><iframe width="500" height="281" src="https://www.youtube.com/embed/3I5CiAF-yH0?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></p>
<h3><span class="dropcap3">2</span> <em>Your product has WiFi and an NFC reader built in that supports the VAS protocol</em></h3>
<p><strong>User story:</strong> Joe installs product app from app store, launches app and a digital NFC pass is created and added to Joe&#8217;s mobile wallet (Apple Wallet or Google Pay). Joe then places his phone over the product&#8217;s NFC reader to pair it with his WiFi network.<br />
<strong>How it works:</strong> The product app grabs WiFi creds on Joe&#8217;s phone and creates a digital NFC pass with the creds as it&#8217;s payload. Once Joe adds the pass to his mobile wallet he can pass this over to the product via NFC. The product then securely decodes the WiFi creds and connects to the network. We have implemented this in a demo app called <a href="https://flomio.com/passninja/">PassNinja</a> as shown in this video:</p>
<p align="center"><iframe width="500" height="281" src="https://www.youtube.com/embed/7C9O7zpn4ZE?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></p>
<h3><span class="dropcap3">3</span> <em>Your product has WiFi and NFC passive tag built in, an accessory NFC writer is included.</em></h3>
<p><strong>User Story:</strong> Joe installs product app from app store, launches app and pairs it with accessory device. Then taps accessory on NFC surface to pair product with his WiFi network.<br />
<strong>How it works:</strong> The product app grabs WiFi creds on Joe&#8217;s phone and sends them through the accessory to the product via the built in NFC tag interface. The accessory is required since NFC writing capability is not available broadly across mobile devices (notably iPhones lack this feature) but there&#8217;s a good chance that will change in the near future. We&#8217;ve implemented this on our <a href="https://itunes.apple.com/us/app/nfc-actions/id654830234?mt=8">NFC Actions app on the App Store</a> and here&#8217;s a video of it in action:</p>
<p align="center"><iframe width="500" height="281" src="https://www.youtube.com/embed/rhJtWERFnag?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></p>
<p>At Flomio we are passionate about building turn-key tools for IoT developers. Having served over 2500 customers across 55 countries we&#8217;ve learned a great deal. If you&#8217;re working on an IoT project and think we can help, LET US KNOW! We provide free support on <a href="https://flomio.com/forums/forum/ask-the-flomies/">our Forums</a> where we typically answer within 24 hours or 1-on-1 premium support through the purchase of <a href="https://flomio.com/shop/apps/flomio-service-instantly-support-your-needs/">Flomio Service</a> bundles.</p>
<p style="text-align: center;"><a class="avia-button on-primary-color primary-background primary-border caption-slideshow-button slideshow_button_class" style="font-size: x-large;" title="Get project help" href="https://flomio.com/forums/forum/ask-the-flomies/#new-post">Get project help</a></p>
<p>The post <a rel="nofollow" href="https://flomio.com/2018/03/best-ux-provisioning-headless-iot-devices/">Best UX: Provisioning Headless IoT Devices</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2018/03/best-ux-provisioning-headless-iot-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SmartCart @ AWS re:Invent</title>
		<link>https://flomio.com/2017/12/smartcart-aws-reinvent/</link>
		<comments>https://flomio.com/2017/12/smartcart-aws-reinvent/#respond</comments>
		<pubDate>Tue, 05 Dec 2017 18:19:32 +0000</pubDate>
		<dc:creator><![CDATA[Richard]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=61738</guid>
		<description><![CDATA[<p>Last week we announced our latest retail innovations alongside Amazon at their AWS re:Invent conference. An event filled with technology experts, it was a great place for us to introduce our SmartCart system. We got feedback from hundreds of developers including some involved with the AmazonGo store. Like AmazonGo, we aim to deliver the same &#8211;a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/12/smartcart-aws-reinvent/">SmartCart @ AWS re:Invent</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><a href="https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207.jpg"><img class="alignright wp-image-61740" style="margin: 20px;" title="AWS IoT Shopping Experience" src="https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-600x494.jpg" alt="AWS IoT Shopping Experience" width="305" height="251" srcset="https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-600x494.jpg 600w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-450x370.jpg 450w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-80x66.jpg 80w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-768x632.jpg 768w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-630x518.jpg 630w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-930x765.jpg 930w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207-150x123.jpg 150w, https://flomio.com/wp-content/uploads/2017/12/AWS-Shopping-Experience-e1512444099207.jpg 1017w" sizes="(max-width: 305px) 100vw, 305px" /></a>Last week we announced our latest retail innovations alongside Amazon at their <a href="https://techcrunch.com/2017/12/02/aws-kept-the-announcements-coming-at-a-frenetic-pace-this-week/">AWS re:Invent conference</a>. An event filled with technology experts, it was a great place for us to introduce our SmartCart system. We got feedback from hundreds of developers including some involved with the <a href="https://youtu.be/NrmMk1Myrxc">AmazonGo store</a>. Like AmazonGo, we aim to deliver the same &#8211;a streamlined purchase experience where shopper convenience is paramount&#8211; but with a different approach. We believe we can offer merchants a retrofit solution for their existing stores whereas AmazonGo is building their stores entirely from the ground up. What&#8217;s great is that we&#8217;re both built on the same AWS serverless infrastructure with flexible service options and endless scalability.</p>
<p><span id="more-61738"></span></p>
<p>Flomio&#8217;s SmartCart system offers product discovery, inventory control, loss prevention, and payment as independent components so that merchants can phase them in as they see fit. The system centers around the SmartCart &#8211;available in <a href="https://flomio.com/product-category/systems/">several modalities</a>&#8212; and a mobile app. Similar to AmazonGo, the SmartCart technology detects what products shoppers put inside it and reflects this activity on the their mobile device. If shoppers remove products from their SmartCart, these are removed from their checkout list and their running total is updated. Once they are ready to pay, shoppers can do so directly from their mobile device and without having to wait in any lines. Here&#8217;s a live demo from the conference that captures the experience:</p>
<div style="text-align: center;"><iframe style="margin: 20px;" src="https://www.youtube.com/embed/pF0rnnfNUVQ" width="560" height="315" frameborder="20" allowfullscreen="allowfullscreen"></iframe></div>
<p>Unlike AmazonGo, the SmartCart system can be deployed in an existing store with little operational impact or infrastructure upgrades. Products need to be tagged and integrated with the store&#8217;s inventory backend, but after that SmartCart checkouts can take place alongside traditional register checkouts. SmartCarts will be able to track shopper activity and location throughout the store, so they can work in tandem with loss prevention portals to reduce shrink. And that&#8217;s just the beginning.</p>
<p><a href="https://flomio.com/wp-content/uploads/2017/12/SmartCart-on-Apple-Watch-e1512454611183.jpg"><img class="alignleft wp-image-61743" style="margin: 20px;" src="https://flomio.com/wp-content/uploads/2017/12/SmartCart-on-Apple-Watch-e1512454611183.jpg" alt="SmartCart on Apple Watch" width="186" height="248" srcset="https://flomio.com/wp-content/uploads/2017/12/SmartCart-on-Apple-Watch-e1512454611183.jpg 298w, https://flomio.com/wp-content/uploads/2017/12/SmartCart-on-Apple-Watch-e1512454611183-60x80.jpg 60w, https://flomio.com/wp-content/uploads/2017/12/SmartCart-on-Apple-Watch-e1512454611183-150x200.jpg 150w" sizes="(max-width: 186px) 100vw, 186px" /></a></p>
<p>Since the SmartCart app knows what shoppers are buying, it can also vastly improve product discovery and drive sales lift for merchants. Shoppers get suggestions on great add-on products and instructions on where to find these in-store. All this happens instantaneously while they are still actively shopping instead of &#8211;after the fact&#8211; at the checkout counter.</p>
<p>The SmartCart app leverages the AWS IoT infrastructure to capture &#8211;in real time&#8211; streams of shopper activity in the cloud. Once analyzed, this data can deliver new insights for merchants as well as open up new revenue channels. For instance, it could be used to train machine learning models that reduce cart abandonment, improve forecasting, and even institute dynamic pricing. At our re:Invent talk <a href="https://youtu.be/ad_ac-iYDjE?list=PLQIXwy54op7Ca4ZoCvqBv0jTw1hYO5jjs&amp;t=1871">ATC304 &#8211; RFID Advertising</a>, we introduced the concept of a new Ad Unit where product suppliers can sponsor suggestions. These techniques have proven very successful in online commerce and are now possible in physical stores.</p>
<p style="text-align: center;"><a class="avia-button on-primary-color primary-background primary-border caption-slideshow-button slideshow_button_class" title="Check out slides" href="https://www.slideshare.net/AmazonWebServices/atc304rfid-really-freaking-indispensable-and-decisive-advertising">Check out slides</a></p>
<h3>Flomio is to Android like AmazonGo is to iOS</h3>
<p>At Flomio we have always embraced an open ecosystem of tools and services that allows developers and enterprises to build solutions that best fit their needs. This is similar to how Android opened their platform in the smartphone industry and <a href="https://youtu.be/ePJbekKUU5U?t=570">Comma.ai aims to do it for self-driving cars</a>. Companies like Apple, Tesla, and Amazon have the luxury of building closed product ecosystems, however our strategy is to fill the void they create in doing so.</p>
<p><a href="https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM.png"><img class="alignright wp-image-61752" src="https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM.png" alt="SmartCart system architecture" width="374" height="222" srcset="https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM.png 1108w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-450x268.png 450w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-80x48.png 80w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-600x357.png 600w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-768x457.png 768w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-1024x609.png 1024w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-630x375.png 630w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-930x553.png 930w, https://flomio.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-04-at-11.22.46-PM-150x89.png 150w" sizes="(max-width: 374px) 100vw, 374px" /></a></p>
<p>At AWS re:Invent we disclosed all of the details of our retail platform architecture and are illustrated here (right). Our SmartCart app is available for any merchant to white label and use with their customers. It&#8217;s built onour mature <a href="https://flomio.com/shop/apps/flomio-sdk-basic-turnkey-oem-support/">Flomio SDK</a> for easy integration with different SmartCart hardware as well as tagging and loss prevention systems. We are have pilots planned with merchants in early 2018 and presenting our lessons learned at <a href="https://www.rfidjournallive.com/">RFID Journal Live</a> on April 10th. If you&#8217;re interested in participating and have stores located in the Miami area, please let us know.</p>
<p style="text-align: center;"><a class="avia-button on-primary-color primary-background primary-border caption-slideshow-button slideshow_button_class" title="Schedule a demo" href="http:/flomio.com/contact?avia_subject=SmartBasket%20%7C%20Shopping%20Basket%20for%20Self%20Checkout">Schedule a demo</a></p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/12/smartcart-aws-reinvent/">SmartCart @ AWS re:Invent</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/12/smartcart-aws-reinvent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BagBot: Money2020 hackaton winner!</title>
		<link>https://flomio.com/2017/10/bagbot-money2020-hackaton-winner/</link>
		<comments>https://flomio.com/2017/10/bagbot-money2020-hackaton-winner/#respond</comments>
		<pubDate>Thu, 26 Oct 2017 02:09:52 +0000</pubDate>
		<dc:creator><![CDATA[Richard]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=61578</guid>
		<description><![CDATA[<p>Over the weekend, the team at Flomio had the opportunity to participate in the Money 20/20 Hackathon. 500 of the brightest minds in FinTech gathered in a ballroom at the Venetian in Las Vegas for a 24 hour all-night code fest. With over $125,000 in prizes on the line, the competition was fierce, so we [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/10/bagbot-money2020-hackaton-winner/">BagBot: Money2020 hackaton winner!</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><a href="https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1.jpg"><img class="alignright wp-image-61579 " src="https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-600x493.jpg" alt="" width="260" height="213" srcset="https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-600x493.jpg 600w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-450x370.jpg 450w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-80x66.jpg 80w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-768x631.jpg 768w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-1024x841.jpg 1024w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-630x518.jpg 630w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-930x764.jpg 930w, https://flomio.com/wp-content/uploads/2017/11/IMG_20171022_182832_1-150x123.jpg 150w" sizes="(max-width: 260px) 100vw, 260px" /></a>Over the weekend, the team at Flomio had the opportunity to participate in the Money 20/20 Hackathon. 500 of the brightest minds in FinTech gathered in a ballroom at the Venetian in Las Vegas for a 24 hour all-night code fest. With over $125,000 in prizes on the line, the competition was fierce, so we were honored when our entry, BagBot, was selected across 120 teams as the winner.</p>
<p><span id="more-61578"></span>BagBot made use of the Synchrony Financial’s pioneering APIs to bring the type of suggestive selling that consumers currently only enjoy while shopping online directly into the store. Flomio leveraged the experience gained while working on projects such as Visa’s SmartCart to build an RFID-enabled shopping bag that could suggest additional items to shoppers as they shop.</p>
<p><a href="https://flomio.com/wp-content/uploads/2017/11/IMG_0524.jpg"><img class="wp-image-61646 alignleft" src="https://flomio.com/wp-content/uploads/2017/11/IMG_0524-600x395.jpg" alt="" width="299" height="197" srcset="https://flomio.com/wp-content/uploads/2017/11/IMG_0524-600x395.jpg 600w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-450x296.jpg 450w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-80x53.jpg 80w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-768x505.jpg 768w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-1024x674.jpg 1024w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-630x415.jpg 630w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-930x612.jpg 930w, https://flomio.com/wp-content/uploads/2017/11/IMG_0524-150x99.jpg 150w" sizes="(max-width: 299px) 100vw, 299px" /></a>Synchrony’s goal is to leverage AI to pour over the vast amounts of data they receive from their retail partners to better predict what a shopper is going to purchase next. BagBot used their <code>loyalty</code> and <code>next_purchase</code>API endpoints to give shoppers intelligent suggestions and relevant discounts as soon as an item was placed in our shopping bag.</p>
<p>Bagbot is a great example of how shopping should be in the 21st century. It combines cutting edge sensor technology, mobile and AI to deliver a customer experience that delights. The customer journey begins with pairing their phone with the smart shopping bag by tapping their mobile phone to it. Then placing any item in the bag will be scanned and relayed to their checkout list. The BagBot then surfaces targeted rewards and related items to drive sales lift. Payment is taken directly in the app and items are taken out of inventory. This avoid loss prevention portals from alarming on exit.</p>
<p><a href="https://flomio.com/wp-content/uploads/2017/11/SmartBagGIF.gif"><img class="alignright wp-image-61647" src="https://flomio.com/wp-content/uploads/2017/11/SmartBagGIF.gif" alt="" width="192" height="192" /></a>The BagBot hardware features a two part design comprised of an insulated shopping bag and a magnetically detachable scanner module. This approach allows shoppers to own their bags and avoid a re-bagging step before leaving the store. It also reduces the total cost of ownership for the retailer since they only need to cover the scanner modules that get recycled. Lastly, the same loss prevention and inventory control technology common in retail today is directly compatible with the BagBot hardware. So the system can be easily retrofitted into existing retail stores without massive infrastructure changes.</p>
<p>We wanted to give a big thanks to everyone at Money 20/20 and the team at Synchrony Financial for their inputs and support. We look to pilot the solution with retailers in 2018 and report back our learnings at the conference next year.</p>
<p>&#8211; Richard</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/10/bagbot-money2020-hackaton-winner/">BagBot: Money2020 hackaton winner!</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/10/bagbot-money2020-hackaton-winner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone7 NFC Reader Performance Tests</title>
		<link>https://flomio.com/2017/06/iphone7-nfc-reader-performance-tests/</link>
		<comments>https://flomio.com/2017/06/iphone7-nfc-reader-performance-tests/#respond</comments>
		<pubDate>Sun, 11 Jun 2017 00:04:56 +0000</pubDate>
		<dc:creator><![CDATA[Richard]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=60090</guid>
		<description><![CDATA[<p>So the iPhone7 can now read NFC tags natively. W00T! But how well is it performing? We sought to figure that out objectively and benchmark it against Flomio readers and some Android devices. This should help enterprises and developers make best decisions on how to deploy robust solutions effectively. This is a benchmark test of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/06/iphone7-nfc-reader-performance-tests/">iPhone7 NFC Reader Performance Tests</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>So the iPhone7 can now read NFC tags natively. <img class="alignright wp-image-60091" src="https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-308x600.png" alt="" width="148" height="288" srcset="https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-308x600.png 308w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-450x876.png 450w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-41x80.png 41w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-526x1024.png 526w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-513x999.png 513w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-478x930.png 478w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog-150x292.png 150w, https://flomio.com/wp-content/uploads/2017/06/IPhone-NFC-Dialog.png 686w" sizes="(max-width: 148px) 100vw, 148px" />W00T! But how well is it performing? We sought to figure that out objectively and benchmark it against Flomio readers and some Android devices. This should help enterprises and developers make best decisions on how to deploy robust solutions effectively.</p>
<p><span id="more-60090"></span></p>
<p><iframe width="500" height="375" src="https://www.youtube.com/embed/FzsO-LmkA6s?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>This is a benchmark test of the iPhone7 NFC reader mode performance against the Samsung S7 Edge and FloBLE Plus. The iPhone7 outputs only 1.5A/m in an inconsistent pattern (4 quick bursts for 2s, and then 1 burst every 2s). The FloBLE Plus and S7 Edge consistently output 2A/m twice a second (1 burst every half second).</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/06/iphone7-nfc-reader-performance-tests/">iPhone7 NFC Reader Performance Tests</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/06/iphone7-nfc-reader-performance-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple opens NFC to Developers with iOS11</title>
		<link>https://flomio.com/2017/06/apple-opens-nfc-developers-ios11/</link>
		<comments>https://flomio.com/2017/06/apple-opens-nfc-developers-ios11/#respond</comments>
		<pubDate>Tue, 06 Jun 2017 14:20:25 +0000</pubDate>
		<dc:creator><![CDATA[Richard]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=60017</guid>
		<description><![CDATA[<p>After almost 8 years since Google introduced NFC on Android smartphones, Apple has officially joined the party. iOS11 was announced yesterday at WWDC, Apple&#8217;s annual developer&#8217;s conference, as small footnote amongst a host of new features. Since you could have missed it if you weren&#8217;t paying attention, we figured we&#8217;d elaborate on what this means for developers [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/06/apple-opens-nfc-developers-ios11/">Apple opens NFC to Developers with iOS11</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><img class="alignright wp-image-60021" src="https://flomio.com/wp-content/uploads/2017/06/iOS11-includes-NFC-reader-mode.jpg" alt="" width="400" height="236" srcset="https://flomio.com/wp-content/uploads/2017/06/iOS11-includes-NFC-reader-mode.jpg 500w, https://flomio.com/wp-content/uploads/2017/06/iOS11-includes-NFC-reader-mode-450x266.jpg 450w" sizes="(max-width: 400px) 100vw, 400px" />After almost 8 years since Google introduced NFC on Android smartphones, Apple has officially joined the party. iOS11 was announced yesterday at WWDC, Apple&#8217;s annual developer&#8217;s conference, as small footnote amongst a host of new features. Since you could have missed it if you weren&#8217;t paying attention, we figured we&#8217;d elaborate on what this means for developers and enterprises.</p>
<p><strong>TL;DR:</strong> Only enabled on iPhone7/7+ devices.Supports ISO14443 and ISO15693 tags. Only reads NDEF data (no writing, no APDUs). App must run in the foreground (no background support). iOS11 general release out in September, 2017.</p>
<p><span id="more-60017"></span></p>
<h2>For use with iPhone7/7+</h2>
<p>According to the API documentation, Apple has chosen to only enable NFC reader support on their latest iPhone hardware, the iPhone7 and 7+. This makes sense since the <a href="https://stackoverflow.com/questions/25753473/reading-nfc-tags-with-iphone-6-ios-8/26637240#26637240">iPhone6 wasn&#8217;t designed with NFC reading in mind</a>. The glass back on the iPhone7 design is a lot more amenable to interrogate tags of various geometries.</p>
<p>This contrasts the iPhone6 with a metal back that limits a good scan field. It&#8217;s not to say that it&#8217;s not possible though as <a href="https://9to5mac.com/2017/05/19/developer-hacks-nfc-iphone-6s-respond-nfc-devices/">this hacker showed on his jailbroken iPhone6</a>. Which ever the case, Apple is wise to stick with what will work best. When NFC performs great it&#8217;s lifts the whole ecosystem up.</p>
<h2>ISO14443 and ISO15693</h2>
<p>The NFC Forum specification defines 5 tag types all of which are supported by the <a href="https://developer.apple.com/documentation/corenfc">CoreNFC framework</a> in Apple&#8217;s iOS11 release. This means that physical layers defined by both ISO14443 and ISO15693 specifications are covered. It&#8217;s a great achievement given there are niche use cases where ISO15693 is most suitable. <a href="https://flomio.com/forums/topic/murata-magicstrap-smallest-nfc-tag-datasheet/">Like for small geometry tags</a>.</p>
<p>That being said, there&#8217;s no API access to the different layers of the protocols so reading tag UUID or raw data blocks is not possible. This will be a problem for most developers who are looking to build integration off of the uniqueness of tag UUID, but it&#8217;s a smart move from Apple. It avoids the overwhelming support costs of educating the market on low level commands while moving applications away from the vulnerabilities and privacy concerns around UUID-based solutions.</p>
<h2>Reading NDEF Data</h2>
<p>Though Apple won&#8217;t give you tag UUIDs, it will let you read NDEF messages off of tags. That&#8217;s pretty useful given the <a href="https://flomio.com/2012/05/ndef-basics/">WellKnownType definition</a> includes URI, Text, Smart Poster, Connection Handover, and Signature Record. The most useful of these is the URI type with ability of sharing URLs, emails, phone numbers, or even a drafted SMS message. Along with an app, NDEF messages can deliver some fascinating use cases. The most compelling I would argue involve launching a web site, <a href="https://www.hidglobal.com/solutions/trusted-tag-services">proving geospatial presence</a>, and connecting to WiFi.</p>
<h2>NFC Actions FTW!<img class="box-shadow: 2px 2px 5px #888888; alignright wp-image-59658" src="https://flomio.com/wp-content/uploads/2017/05/nfcactions_demo_websiteTap.gif" alt="" width="200" height="356" srcset="https://flomio.com/wp-content/uploads/2017/05/nfcactions_demo_websiteTap.gif 600w, https://flomio.com/wp-content/uploads/2017/05/nfcactions_demo_websiteTap-450x800.gif 450w" sizes="(max-width: 200px) 100vw, 200px" /></h2>
<p>In order to reap the benefits of these experiences, iPhone7 users will need an app. This is because -unlike Android- the iOS11 release doesn&#8217;t offer system level NFC support. So you&#8217;ll need to have an app installed and in the foreground in order to detect NFC tags with NDEF messages on them. <a href="https://flomio.com/nfc-actions/">Our NFC Actions app</a> is a perfect solution for that.</p>
<p>NFC Actions is available for <a href="https://itunes.apple.com/ie/app/nfc-actions/id654830234?mt=8">download from the App Store</a> and integrated with Flomio&#8217;s NFC readers as well as the iPhone&#8217;s native NFC functionality. It will not only let you read NFC tags but <strong>write</strong> them as well! Also, along with it&#8217;s tight integration with IFTTT and AWS, you&#8217;ll be able to build end-to-end solutions using it.</p>
<p><a href="https://itunes.apple.com/ie/app/nfc-actions/id654830234?mt=8"><img class="size-medium alignnone" src="https://upload.wikimedia.org/wikipedia/commons/3/3c/Download_on_the_App_Store_Badge.svg" width="135" height="40" /></a></p>
<p>-Richard</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/06/apple-opens-nfc-developers-ios11/">Apple opens NFC to Developers with iOS11</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/06/apple-opens-nfc-developers-ios11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Scanning With FloBLE (ACR1255U-J1)</title>
		<link>https://flomio.com/2017/04/continuous-scanning-floble-acr1255u-j1/</link>
		<comments>https://flomio.com/2017/04/continuous-scanning-floble-acr1255u-j1/#respond</comments>
		<pubDate>Tue, 04 Apr 2017 17:46:29 +0000</pubDate>
		<dc:creator><![CDATA[Jim]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=59160</guid>
		<description><![CDATA[<p>Customers have reported that FloBLE readers are losing connection while operating for long stretches. We thought this could be because batteries were draining out so we studied the overall power performance of the FloBLE Plus (ACR1255U-J1) in detail.  Ultimately, we wanted to know if a standard USB port (USB1.0 from PC) would enough to keep a FloBLE connected and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/04/continuous-scanning-floble-acr1255u-j1/">Continuous Scanning With FloBLE (ACR1255U-J1)</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<div id="attachment_59170" style="width: 290px" class="wp-caption alignleft"><img class="wp-image-59170" src="https://flomio.com/wp-content/uploads/2017/04/image04.jpg" alt="ACR1255U-J1 power probe" width="280" height="210" srcset="https://flomio.com/wp-content/uploads/2017/04/image04.jpg 1999w, https://flomio.com/wp-content/uploads/2017/04/image04-450x338.jpg 450w" sizes="(max-width: 280px) 100vw, 280px" /><p class="wp-caption-text">FloBLE Plus power probe</p></div>
<p><a href="https://flomio.com/forums/topic/floble-plus-continuous-operation">Customers have reported</a> that FloBLE readers are losing connection while operating for long stretches. We thought this could be because batteries were draining out so we studied the overall power performance of the FloBLE Plus (ACR1255U-J1) in detail.  Ultimately, we wanted to know if a standard USB port (USB1.0 from PC) would enough to keep a FloBLE connected and scanning continuously. TL;DR: Yes! <a href="https://flomio.com/2016/02/continuous-scanning-flojack-acr35/">like the FloJack (ACR35)</a>, the FloBLE (ACR1255U-J1) is capable of continuously scanning NFC tags while powered by a standard USB port from a PC or wall adapter.</p>
<p><span id="more-59160"></span></p>
<p>The main question is if a USB port can charge the FloBLE/ACR1255U-J1 battery faster than it’s being discharged while polling for tags. To answer this it’s important to see how the battery is functioning over time. By looking at the current drawn from the battery as well as delivered by the charger and comparing that to both the ratings of the battery and the power supply, we&#8217;ll know if the supply can keep up with the load. We&#8217;ll use the lowest power supply option which is a standard USB port on a PC.</p>
<h2>Equipment</h2>
<p>The FloBLE/ACR1255u-J1 pulses a magnetic field to detect NFC tags. Currents during the time the field is active are significantly higher than times when it&#8217;s inactive. We&#8217;ll use an oscilloscope to capture the power fluctuations being supplied by the battery during these operations.</p>
<div id="attachment_59179" style="width: 290px" class="wp-caption alignright"><a href="https://flomio.com/wp-content/uploads/2017/04/image02.jpg"><img class="wp-image-59179" src="https://flomio.com/wp-content/uploads/2017/04/image02.jpg" alt="" width="280" height="334" srcset="https://flomio.com/wp-content/uploads/2017/04/image02.jpg 816w, https://flomio.com/wp-content/uploads/2017/04/image02-450x536.jpg 450w" sizes="(max-width: 280px) 100vw, 280px" /></a><p class="wp-caption-text">Shunt circuit across FloBLE/ACR1255U-j1</p></div>
<p>We&#8217;ll need a shunt circuit to transduce the battery current into a bipolar voltage that represents the magnitude and direction of the current flowing through the battery. We&#8217;ll record this voltage along with the battery voltage to understand the battery function. The circuit will need to allow the test battery to still power the reader. Lastly, we&#8217;ll use a current production unit of FloBLE Plus/ACR1255U-J1 along with by version 2.2 (11) of the Flomio Test App on an iPad.</p>
<p>The sketch here is the shunt circuit. It has an amplifier with a filtered shunt resistor in series with the battery and a reference voltage to bias the amplifier output to a midpoint voltage so that current can be observed into and out of the battery.</p>
<blockquote><p>The fixed gain of the amp and resistor value result in an output of 1.25 V/Amp</p></blockquote>
<p>We built the circuit on a bare PCB so as to attach the battery to the shunt while connected via a cable to the reader. This circuit is interchangeable with a variety of our readers for consistent battery testing.</p>
<h2>Testing FloBLE/ACR1255U-J1</h2>
<p>We attached the oscilloscope to TP2 with the ground lead tied to the reference voltage at TP3. The output of the circuit while the FloBLE Plus/ACR1255U-J1 was polling for tags and NOT connected to a USB supply is shown here. You can see the battery supplying a steady current of 12ma and a pulse of 150ma with a width of 13.2 ms every 500ms. Note that the current out of the battery is positive and we had to calibrate out a slight offset in the circuit to get these results.</p>
<div id="attachment_59180" style="width: 290px" class="wp-caption alignleft"><a href="https://flomio.com/wp-content/uploads/2017/04/image00.jpg"><img class="wp-image-59180" src="https://flomio.com/wp-content/uploads/2017/04/image00.jpg" alt="" width="280" height="211" srcset="https://flomio.com/wp-content/uploads/2017/04/image00.jpg 1448w, https://flomio.com/wp-content/uploads/2017/04/image00-450x338.jpg 450w" sizes="(max-width: 280px) 100vw, 280px" /></a><p class="wp-caption-text">Current draw without USB supply</p></div>
<p>The battery has a capacity of 320 mAh. Integrating the current for a complete 500ms cycle and solving for the RMS current results in a drain on the battery of 16ma RMS, which is several orders of magnitude lower than the ratings of USB port supply (500mA).</p>
<p>This means the battery will supply the reader polling continuously for nearly 20 hours without being connected to a charger. Additionally, a standard USB 1.0/2.0 port can supply the remaining 484 ma of current to charge the battery. Note that the reader IS NOT scanning tags, when it does the current remains at the peak current of the pulse while the card is present. While high at 150ma the standard USB 1.0/2.0 port would still be able to supply the reader with enough power for the NFC field AND still be able to charge the battery.</p>
<div id="attachment_59181" style="width: 290px" class="wp-caption alignright"><a href="https://flomio.com/wp-content/uploads/2017/04/image01.jpg"><img class="wp-image-59181" src="https://flomio.com/wp-content/uploads/2017/04/image01.jpg" alt="" width="280" height="210" srcset="https://flomio.com/wp-content/uploads/2017/04/image01.jpg 1379w, https://flomio.com/wp-content/uploads/2017/04/image01-450x338.jpg 450w" sizes="(max-width: 280px) 100vw, 280px" /></a><p class="wp-caption-text">Current draw with USB supply</p></div>
<p>Furthermore, we allowed the battery to discharge to a low level and then connected the reader to a standard USB 1.0/2.0 port. The resulting plot illustrates the reader staying in the charging mode (positive voltage) while still charging the battery.</p>
<p>The unusual surge in charging current immediately after the NFC pulse is most likely a capacitor bank recharging after being discharged during the pulse. The charging current being delivered to the battery is approximately 235ma when not pulsing. This current is a function of how deeply discharged the battery is and tails off as the battery approaches full charge. It appears that the charging circuit in the reader is limiting the current applied to the battery and is not being limited by the USB supply current.</p>
<h2>Observations</h2>
<p>The FloBLE Plus/ACR1255U-J1 was left connected to a USB port and tested while polling for tags continuously and recording the battery voltage for a full day. Below is the full capture across the 17hrs and 10mins of testing. In this plot the battery voltage varies slightly between 4.164V and 4.200V. Note that the voltage was scaled with a divider to allow for a more compressed voltage range (0 to +/- 4V) on the oscilloscope. The actual battery voltage is Vplot x 2.13:</p>
<div id="attachment_59182" style="width: 410px" class="wp-caption aligncenter"><a href="https://flomio.com/wp-content/uploads/2017/04/image06.jpg"><img class="wp-image-59182" src="https://flomio.com/wp-content/uploads/2017/04/image06.jpg" alt="" width="400" height="314" srcset="https://flomio.com/wp-content/uploads/2017/04/image06.jpg 1675w, https://flomio.com/wp-content/uploads/2017/04/image06-450x354.jpg 450w" sizes="(max-width: 400px) 100vw, 400px" /></a><p class="wp-caption-text">FloBLE/ACR1255U-J1 battery charging profile</p></div>
<p>The voltages are far from the discharged battery (&lt;3.7V) voltage and show the reader cycling between charging and discharging about once per hour. During charging the current draw is low, approximately 50ma and well below the capacity of the USB port.</p>
<p>The plot here shows typical charge cycles of the reader during continuous scanning for NFC tags. These currents are typically seen while the battery indicator LED is red. The LED is seen to cycle on and off with the charging cycle.</p>
<p align="center"><a href="https://flomio.com/wp-content/uploads/2017/04/image05.jpg"><img class="alignnone wp-image-59185" src="https://flomio.com/wp-content/uploads/2017/04/Architecture-Data-Models-and-Workflows-copy.png" alt="" width="147" height="220" /><img class="alignnone wp-image-59184" src="https://flomio.com/wp-content/uploads/2017/04/image05.jpg" alt="" width="285" height="220" srcset="https://flomio.com/wp-content/uploads/2017/04/image05.jpg 1585w, https://flomio.com/wp-content/uploads/2017/04/image05-450x347.jpg 450w" sizes="(max-width: 285px) 100vw, 285px" /></a></p>
<p>Note that the USB port supplies enough current for the field pulse and battery charging at the same time. There is no current flowing out of the battery (positive voltage) the current continues to flow into the battery even during the pulse.</p>
<p>As a final test, we fully charged a FloBLE Plus (ACR1255U-J1) and connected to the Flomio Test app set to scan continuously. We then observed the reader&#8217;s behavior until the battery discharged to the point that the system stopped functioning. <a href="https://flomio.com/wp-content/uploads/2017/04/image02-1.jpg"><img class="wp-image-59211 alignright" src="https://flomio.com/wp-content/uploads/2017/04/image02-1.jpg" alt="" width="280" height="209" srcset="https://flomio.com/wp-content/uploads/2017/04/image02-1.jpg 1724w, https://flomio.com/wp-content/uploads/2017/04/image02-1-450x335.jpg 450w" sizes="(max-width: 280px) 100vw, 280px" /></a>The battery lasted 19 hours and 42 minutes before the Test app reported the reader was disconnected. About 1 hour before the reader disconnected the battery LED flashed red and the Test App indicated the battery had 10% of charge remaining. The following screenshot shows the battery discharge curve. The battery transitions from functional to non functional very rapidly as seen by the abrupt “knee” in the discharge curve during the last hour of operation. When connecting to power after being discharged, the reader and <span style="font-weight: 400;">app reconnected as expected and scanning resumed normally. The battery then recharged fully while continuously scanning in about 1 hour (note there is a delay between discharge and the reconnection to the USB port).</span></p>
<h2>Conclusion</h2>
<p>The test results showed that the FloBLE Plus/ACR1255U-J1 reader draws on average 16ma while polling continuously for tags. Computer USB 1.0/2.0 ports can supply up to 500ma and USB 3.0 900ma which is well above what the reader requires. The reader’s battery stays nearly fully charged while connected to a USB 2.0 port while polling. The reader employs a shallow discharge and recharge cycle rather than a trickle charge strategy to keep the battery fully charged. With a tag in the field the reader will draw a continuous 150ma and would still be able to charge the battery if connected to a USB 2.0 port indefinitely. With a fully discharged battery the reader is capable of operating normally connected to a USB port and polling and still able to recharge the battery.</p>
<p>Therefore, intermittent problems reported by customers are more likely due to data communication problems than to resets caused by discharged batteries.</p>
<p>&#8211; Jim Disser</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/04/continuous-scanning-floble-acr1255u-j1/">Continuous Scanning With FloBLE (ACR1255U-J1)</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/04/continuous-scanning-floble-acr1255u-j1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to help closed-loop mobile payments get off the launch pad?</title>
		<link>https://flomio.com/2017/01/how-to-help-closed-loop-mobile-payments-get-off-the-launch-pad/</link>
		<comments>https://flomio.com/2017/01/how-to-help-closed-loop-mobile-payments-get-off-the-launch-pad/#respond</comments>
		<pubDate>Fri, 27 Jan 2017 20:16:46 +0000</pubDate>
		<dc:creator><![CDATA[Daniel]]></dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Closed-loop]]></category>
		<category><![CDATA[Closed-loop payments]]></category>
		<category><![CDATA[NFC]]></category>
		<category><![CDATA[NFC Enabled Pass]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=57562</guid>
		<description><![CDATA[<p>Despite the growing popularity of mobile payment apps like Apple Pay and Android Pay, over the past couple years, retail stores have been slow to adopt them. A little more than a third of consumers (36 percent) have used some form of mobile payment applications in the past year. Source: Walker Sands Future of Retail [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/01/how-to-help-closed-loop-mobile-payments-get-off-the-launch-pad/">How to help closed-loop mobile payments get off the launch pad?</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Despite the growing popularity of mobile payment apps like Apple Pay and Android Pay, over the past couple years, retail stores have been slow to adopt them.</p>
<blockquote>
<p style="text-align: center;">A little more than a third of consumers (36 percent) have used some form of mobile payment applications in the past year.</p>
</blockquote>
<p style="text-align: right;"><em>Source: Walker Sands Future of Retail Study 2016</em></p>
<p>Despite the lack of enthusiasm in embracing this technology, brick-and-mortar retail stores are trying to remove as much friction as possible from the payment process to eliminate consumer frustration and enhance the &#8216;buyer’s experience&#8217;.</p>
<p>To this end, retailers have adopted proprietary retail mobile apps that enable the customer to pay only in their stores (closed-loop payment).</p>
<div id="attachment_57563" style="width: 985px" class="wp-caption aligncenter"><img class="wp-image-57563 size-full" src="https://flomio.com/wp-content/uploads/2016/12/Picture1.png" alt="" width="975" height="484" srcset="https://flomio.com/wp-content/uploads/2016/12/Picture1.png 975w, https://flomio.com/wp-content/uploads/2016/12/Picture1-450x223.png 450w, https://flomio.com/wp-content/uploads/2016/12/Picture1-80x40.png 80w, https://flomio.com/wp-content/uploads/2016/12/Picture1-600x298.png 600w, https://flomio.com/wp-content/uploads/2016/12/Picture1-768x381.png 768w, https://flomio.com/wp-content/uploads/2016/12/Picture1-630x313.png 630w, https://flomio.com/wp-content/uploads/2016/12/Picture1-930x462.png 930w, https://flomio.com/wp-content/uploads/2016/12/Picture1-150x74.png 150w" sizes="(max-width: 975px) 100vw, 975px" /><p class="wp-caption-text">Figure 1: Source: Walker Sands Future of Retail Study 2016</p></div>
<p><span id="more-57562"></span></p>
<p>Stores are interested in creating a better in-store experience for both their brands and their customers, beyond payments. The key factor of that experience is: “all-in-one payment and reward.”</p>
<p>In-house  proprietary payment (closed-loop) solutions have pros and cons. Some of the benefits of <a href="https://flomio.com/wp-content/uploads/2017/01/White_Paper_Direct_Pay.pdf">closed-loop payment</a> systems are:</p>
<ul>
<li>Integrate payment, reward and receipt delivery into one transaction,</li>
<li>Improve loyalty,</li>
<li>Enable capturing big data on customers transactions, including customers buying habits, popular items, and even ROI measures on marketing campaigns,</li>
<li>Minimize internal payment processing, which can lower merchant’s costs,</li>
<li>Maintain ownership over the entire merchant/customer process.</li>
</ul>
<p>Notwithstanding, using closed-loop payments also have several shortcomings:</p>
<ul>
<li>Customers can only use the system for purchasing and paying at the store (it cannot be used at other locations),</li>
<li>Creates user fragmentation, affecting the adoption of the store app.</li>
</ul>
<h3>How stores are reducing the friction at checkout?</h3>
<p>Currently, barcode is the technology mostly used to perform payment transactions at checkouts. <a href="https://flomio.com/2017/01/trends-on-closed-loop-payment/">Barcodes have been around for decades</a> and have helped to integrate payments with the store’s loyalty programs. However, barcodes do not completely reduce friction because customers still need to:</p>
<ul>
<li>Pull up the app,</li>
<li>Go to the barcode,</li>
<li>Show the store associate the display to initiate payment,</li>
<li>Associate will scan the barcode, and</li>
<li>Only <em>then</em> can the transaction be completed.</li>
</ul>
<h3>NFC is the way to go</h3>
<p>NFC is a more robust solution compared with barcodes, and definitely more secure.</p>
<p><iframe src="https://www.youtube.com/embed/xOi4s9G2cZU?rel=0&amp;controls=0?ecver=1" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<p>Until recently, the acceptance of NFC-based smartphones has not been massive, thus preventing the use of NFC for this type of proprietary solution.</p>
<p>Apple launched the first version of NFC-enabled iPhone in 2014 (iPhone 6), however, NFC was not available for any other use, other than payments, until 2015 which saw the introduction of NFC-enabled passes. Meanwhile, Android had been supporting all-in-one payments and rewards for quite some time.</p>
<p>With the introduction of <a href="https://flomio.com/2016/07/apple-wallet-guide/">NFC-enabled passes on the iPhone</a>, stores can now implement solutions such as ‘all-in-one payment and reward’ on iOS supported devices as well.</p>
<p>From the user’s perspective, using NFC closed-loop payments is faster and simpler. For example, using Apple Wallet, the shopper simply needs to hold the phone just above the card reader with a finger placed on the home button. It does not need to be connected to any network, nor does the shopper need to launch an app, key-in a password or manipulate the app in any way. The device does not even need to be unlocked.</p>
<p>NFC-enabled passes also simplify the distribution of reward cards; the reward passes can be downloaded from the Internet, sent by email, obtained from an app, etc.</p>
<p>Main drivers that will help accelerate the adoption of in-store NFC-enabled payments are:</p>
<ul>
<li><a href="https://flomio.com/wp-content/uploads/2017/01/UX.pdf">UX: Contactless transactions are more frictionless than their barcode counterparts.</a></li>
<li><a href="https://flomio.com/2016/07/nfc-enabled-passes-on-apple-wallet/">Integrated transactions: Stores want loyalty programs and payments transactions into one.</a></li>
<li>Increases Throughput: NFC offers faster (at least 2x faster) and easier transactions.</li>
</ul>
<p>&#8211; Daniel Baudino</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/01/how-to-help-closed-loop-mobile-payments-get-off-the-launch-pad/">How to help closed-loop mobile payments get off the launch pad?</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/01/how-to-help-closed-loop-mobile-payments-get-off-the-launch-pad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trends in Closed-Loop Payments</title>
		<link>https://flomio.com/2017/01/trends-on-closed-loop-payment/</link>
		<comments>https://flomio.com/2017/01/trends-on-closed-loop-payment/#respond</comments>
		<pubDate>Tue, 10 Jan 2017 12:57:26 +0000</pubDate>
		<dc:creator><![CDATA[Daniel]]></dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[barcode]]></category>
		<category><![CDATA[Closed-loop]]></category>
		<category><![CDATA[NFC]]></category>
		<category><![CDATA[Payment]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=57560</guid>
		<description><![CDATA[<p>Barcodes have been around for decades but strangely enough, the use of barcodes in mobile payments have only recently been picking up. Starbucks has been a pioneer in mobile payments using barcodes. Walmart and CVS have recently introduced a similar solution. Because of the embedded cameras, smartphones have been always capable of reading barcodes and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/01/trends-on-closed-loop-payment/">Trends in Closed-Loop Payments</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><img class="size-full wp-image-58151 aligncenter" src="https://flomio.com/wp-content/uploads/2017/01/prod5-1.jpg" alt="" width="827" height="424" srcset="https://flomio.com/wp-content/uploads/2017/01/prod5-1.jpg 827w, https://flomio.com/wp-content/uploads/2017/01/prod5-1-450x231.jpg 450w, https://flomio.com/wp-content/uploads/2017/01/prod5-1-80x41.jpg 80w, https://flomio.com/wp-content/uploads/2017/01/prod5-1-600x308.jpg 600w, https://flomio.com/wp-content/uploads/2017/01/prod5-1-768x394.jpg 768w, https://flomio.com/wp-content/uploads/2017/01/prod5-1-630x323.jpg 630w, https://flomio.com/wp-content/uploads/2017/01/prod5-1-150x77.jpg 150w" sizes="(max-width: 827px) 100vw, 827px" /></p>
<p>Barcodes have been around for decades but strangely enough, the use of barcodes in mobile payments have only recently been picking up. Starbucks has been a pioneer in mobile payments using barcodes. Walmart and CVS have recently introduced a similar solution. Because of the embedded cameras, smartphones have been always capable of reading barcodes and that is one of the main reasons why barcodes are so ubiquitous.</p>
<p><span id="more-57560"></span></p>
<blockquote>
<p style="text-align: center;"><em>83% of North American consumers are aware of QR codes</em></p>
</blockquote>
<p style="text-align: right;"><em>Source: BrandSpark International</em></p>
<blockquote>
<p style="text-align: center;"><em>1 in 5 smartphone users have scanned a QR code with their mobile device</em></p>
</blockquote>
<p style="text-align: right;"><em>Source: MarketingCharts</em></p>
<p>Smartphones can display and read barcodes, which enables multiple options for defining the user experience (UX):</p>
<p><strong>&#8211; Displaying barcode:</strong> The barcode is generated by the app, and it usually contains the user ID. For an in-store payment, the user opens the app on the smartphone, navigates the menu to display the barcode, and then presents the screen to be scanned at the register. Starbucks uses this approach.<br />
<strong>&#8211; Read a barcode:</strong> The app reads a barcode presented by the merchant. The user opens the store app, launches the camera within the app and scans the code presented by the store. Walmart uses this approach.</p>
<h3><strong>Main drivers of the barcode popularity</strong></h3>
<p>The proliferation of smartphones capable of reading and displaying a barcode is one of the main drivers, but there are others:</p>
<ul>
<li>Barcode readers are less expensive than NFC readers.</li>
<li>Barcodes are easy to generate, print or display on a screen.</li>
<li>The adoption of NFC-enabled smartphones has been slow.</li>
<li>NFC-enabled ecosystem is complex and has numerous stakeholders.</li>
</ul>
<p>Based on this, it makes more sense for companies to adopt barcodes for mobile payments. However, and despite their popularity, barcode technology is not the best solution; the UX is subpar and, most importantly, barcodes are not secure (on-screen barcodes could be replicated with a simple screen grab).</p>
<p><center><iframe src="https://www.youtube.com/embed/xOi4s9G2cZU?rel=0&amp;controls=0" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></center>Even though barcodes helped to build the bridge between store apps offering loyalty rewards and payments with electronic payment methods, such as credit cards and mobile wallets, their shortcomings called for another solution.</p>
<h3><strong>Adoption of NFC on Payments.</strong></h3>
<p>Contactless payments (NFC-based) seem to be taking off, driven by Apple, Google, and Samsung Pay, which offer a different solution compared with barcode systems.</p>
<p>In-store barcode <a href="https://flomio.com/wp-content/uploads/2017/01/White_Paper_Direct_Pay.pdf">payments are closed-loop payments</a>. They are all proprietary solutions that help the store to include loyalty and payment in the same transaction.</p>
<p>NFC is a more robust solution than barcodes, and definitely more secure. The NFC Forum Survey says that, as users get familiar with NFC, they favor it over barcodes. Using NFC, transactions are faster, easier and more secure.</p>
<p>The previously listed circumstances that helped barcodes to become popular have held true until now, but things are changing:</p>
<ul>
<li><a href="https://flomio.com/2016/07/apple-wallet-guide/">NFC-enabled devices are becoming more ubiquitous</a></li>
<li>Contactless readers are becoming more affordable</li>
<li>NFC-enabled ecosystems have become simpler and they can be integrated with other existing solutions.</li>
</ul>
<p>Other drivers that will help accelerate the adoption of in-store NFC-enabled payments are:</p>
<ul>
<li><a href="https://flomio.com/2017/01/how-to-help-closed-loop-mobile-payments-get-off-the-launch-pad/">UX: Contactless transactions are more frictionless than their barcode counterparts.</a></li>
<li>Integrated transactions: Stores want to take advantage of loyalty programs and payments by bundling all transactions into one. <a href="https://flomio.com/2016/07/nfc-enabled-passes-on-apple-wallet/">The same solution can be achieved using the NFC Value Added Service (VAS) protocol</a></li>
<li>Increases Throughput: NFC offers faster (at least 2x faster) and easier transactions.</li>
</ul>
<p>–Daniel Baudino</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2017/01/trends-on-closed-loop-payment/">Trends in Closed-Loop Payments</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2017/01/trends-on-closed-loop-payment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EASyPOS makes shopping as easy as shoplifting™</title>
		<link>https://flomio.com/2016/12/easypos-makes-shopping-as-easy-as-shoplifting/</link>
		<comments>https://flomio.com/2016/12/easypos-makes-shopping-as-easy-as-shoplifting/#respond</comments>
		<pubDate>Fri, 02 Dec 2016 01:59:34 +0000</pubDate>
		<dc:creator><![CDATA[Richard]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=57540</guid>
		<description><![CDATA[<p>Have you avoided going to a store lately because it&#8217;s just not worth the hassle? Unsure you&#8217;ll find what you need and if you do, unwilling to wait through checkout lines? It&#8217;s no wonder shopping online is often the best option. At Flomio, we think we can change that. We&#8217;ve worked with the leaders in payments, loss prevention, and security [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2016/12/easypos-makes-shopping-as-easy-as-shoplifting/">EASyPOS makes shopping as easy as shoplifting™</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p><img class="alignright wp-image-57541" src="https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-600x465.png" width="400" height="310" srcset="https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-600x465.png 600w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-450x348.png 450w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-80x62.png 80w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-768x595.png 768w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-630x488.png 630w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-930x720.png 930w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM-150x116.png 150w, https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM.png 961w" sizes="(max-width: 400px) 100vw, 400px" />Have you avoided going to a store lately because it&#8217;s just not worth the hassle? Unsure you&#8217;ll find what you need and if you do, unwilling to wait through checkout lines? <a href="https://flomio.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-30-at-5.35.20-PM.png" rel="attachment wp-att-57541"><br />
</a>It&#8217;s no wonder shopping online is often the best option. At Flomio, we think we can change that. We&#8217;ve worked with the leaders in payments, loss prevention, and security industries to design the EASyPOS; a product so innovative, that it stands to fundamentally redefine the retail experience.  In fact, it makes shopping so easy, it feels like you&#8217;re shoplifting!</p>
<p><span id="more-57540"></span></p>
<h3><strong>What&#8217;s an EASyPOS?</strong></h3>
<p>EASyPOS is an item level point of sale. A light weight terminal that connects wirelessly to the payment network to securely process transactions and unlock from products for consumers to take. EASyPOS is the first of its kind and though placing a POS on every item may seem impractical, it offers several advantages. For one, the device is able to monitor its location with a high degree of accuracy, guiding shoppers directly to the products they seek and consistently delivering positive purchase experiences. Also, inventory accuracy is all but guaranteed so omnichannel commerce and other popular retail trends are supported. Finally, EASyPOS has lights and sound alerts to enable smart filtering and encourage impulse buys.</p>
<p><img class="aligncenter wp-image-57545 size-full" src="https://flomio.com/wp-content/uploads/2016/12/EASyPOS-PaymentOnProduct.gif" alt="EASyPOS Payment On Product with Apple Pay" width="320" height="240" /></p>
<h3><strong>How do I use it?</strong></h3>
<p>Using the EASyPOS is —in fact— “easy”. Follow these steps to complete your purchase:</p>
<ul>
<li>Grab the product you want to purchase.</li>
<li>Place your Contactless Payment credential on the surface of the contactless payment logo and wait for 4 LEDs to blink green. EASyPOS is now disarmed.</li>
<li>Slide apart the magnetic halves and remove from your purchase.</li>
<li>Place EASyPOS in the drop-off bin on your way out.</li>
</ul>
<h3><strong>How is it built?<img class="alignright wp-image-57544" src="https://flomio.com/wp-content/uploads/2016/12/VisaTycoNXP-471x600.png" alt="Visa Tyco NXP" width="170" height="211" /></strong></h3>
<p>The EASyPOS was built by Flomio in collaboration with <a href="https://usa.visa.com/">Visa</a>, <a href="https://www.sensormatic.com/">Tyco Retail</a><br />
<a href="https://www.sensormatic.com/">Solutions (Sensormatic)</a> and <a href="http://blog.nxp.com/security/nxp-point-of-sale-solutions-sparking-innovation">NXP Semiconductors</a>. It operates at very low power while actively monitoring for payment engagements, remote notifications, tamper attacks, and location changes throughout the retail environment. Smaller than a deck of cards, the EASyPOS is a payments certifiable device that leverages the hardened security and miniaturization advances of NXP. It is split into two assemblies, the top hosting active components like the freakishly loud 90dB speaker and the bottom containing the wireless recharging power system.</p>
<p><img class="wp-image-57583 size-medium aligncenter" src="https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-600x340.png" alt="EASyPOS Exploded View" width="600" height="340" srcset="https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-600x340.png 600w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-450x255.png 450w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-80x45.png 80w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-768x436.png 768w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-1024x581.png 1024w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-630x357.png 630w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-930x528.png 930w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView-150x85.png 150w, https://flomio.com/wp-content/uploads/2016/12/EASyPOS_ExplodedView.png 1167w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<h3><strong>How secure is it? Will it prevent theft?</strong></h3>
<p>The EASyPOS achieves strong security without adding purchase friction by leveraging an established tamperproof design and adding sensor fusion and machine learning software. As a secure IoT device, it forms a self-healing network with neighboring units to monitor it&#8217;s location, movements, and physical health. It connects to the <a href="https://aws.amazon.com/iot-platform/?nc2=h_iot">AWS IoT backbone</a> to easily integrate with in-store surveillance systems like cameras and other loss prevention infrastructure. For instance, if the customer attempts to exit the store without removing the EASyPOS then <a href="https://www.sensormatic.com/products/detection-systems/synergy-series/">Tyco&#8217;s Synergy portals</a> can detect that and sound the alarm(s). In the same vien, if a customer removes the EASyPOS while armed (product unpaid) then the unit will alarm along with notifying the in-store staff via the local network. If the customer pays for the item but fails to drop off the unit in a recharging bin, then a lower priority alert can sound and if needed, the merchant can charge a fee for the cost of the EASyPOS itself.</p>
<h3><strong>How can I add it do my store?</strong></h3>
<p>The EASyPOS integrates with merchant inventory systems and payment processors to provide an awesome purchase experience to consumers. This requires a few infrastructure elements that we are happy to assist merchants in adopting. We are currently working with large retailers planning pilot deployments and are streamlining a lot of these activities. Because of the flexibility of the system, you don&#8217;t have to have an EASyPOS on every item in your store. You can effectively phase in the solution starting with high value or high demand items and work your way throughout. The benefit of having more EASyPOS devices on the floor is increased location accuracy for seeking a product or filtering across a bunch of products in sight.</p>
<p style="text-align: center;"><a class="avia-button on-primary-color primary-background primary-border caption-slideshow-button slideshow_button_class" style="font-size: xx-large; padding-top: 10px; padding-bottom: 10px;" title="I'm interested" href="http:/flomio.com/contact?avia_subject=EASyPOS%20%7C%20Item%20level%20POS%20tag">I&#8217;m interested</a></p>
<p>The post <a rel="nofollow" href="https://flomio.com/2016/12/easypos-makes-shopping-as-easy-as-shoplifting/">EASyPOS makes shopping as easy as shoplifting™</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2016/12/easypos-makes-shopping-as-easy-as-shoplifting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extreme-Posters</title>
		<link>https://flomio.com/2016/10/extreme-posters/</link>
		<comments>https://flomio.com/2016/10/extreme-posters/#respond</comments>
		<pubDate>Tue, 18 Oct 2016 01:45:54 +0000</pubDate>
		<dc:creator><![CDATA[Daniel]]></dc:creator>
				<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">https://flomio.com/?p=56928</guid>
		<description><![CDATA[<p>In 2012 the company Xius started to include NFC readers on  Smart-posters and began calling them Active-posters. The poster is embedded with an NFC reader (instead of a passive NFC tag) while the smartphone emulates an NFC tag. Using Active-posters, smartphones need to emulate tags (Card Emulation Mode), just like Smart-posters. Until the iPhone 6, that [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2016/10/extreme-posters/">Extreme-Posters</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>In 2012<img class="wp-image-56929 alignright" src="https://flomio.com/wp-content/uploads/2016/10/Picture1.png" alt="Picture1" width="480" height="321" srcset="https://flomio.com/wp-content/uploads/2016/10/Picture1.png 675w, https://flomio.com/wp-content/uploads/2016/10/Picture1-450x301.png 450w, https://flomio.com/wp-content/uploads/2016/10/Picture1-80x53.png 80w, https://flomio.com/wp-content/uploads/2016/10/Picture1-600x401.png 600w, https://flomio.com/wp-content/uploads/2016/10/Picture1-630x421.png 630w, https://flomio.com/wp-content/uploads/2016/10/Picture1-150x100.png 150w" sizes="(max-width: 480px) 100vw, 480px" /> the company <a href="http://xius.com/mtt.html">Xius</a> started to include NFC readers on  Smart-posters and began calling them Active-posters. The poster is embedded with an NFC reader (instead of a passive NFC tag) while the smartphone emulates an NFC tag.</p>
<p>Using Active-posters, smartphones need to emulate tags (Card Emulation Mode), just like Smart-posters. Until the iPhone 6, that behavior was unique to Android devices.</p>
<p>iPhone 6 added support for tag (card) emulation, but only for payment purposes (emulating a contactless credit card), since it was needed for their Apple Pay service. iOS 9 expanded the support of NFC beyond payment and launched the NFC-enabled passes.</p>
<p>Using NFC-enabled passes, iPhones can now interact with Active-poster. With the iPhone, the experience must be initiated from the Apple Wallet and then can be passed onto an app. With Android, the experience can start and continue directly from an app.</p>
<p><span id="more-56928"></span></p>
<p>Further improving on the concept of Smarts and Active-posters, Flomio introduces NFC-on-Glass technology. NFC-on-Glass is what makes “Extreme-posters” simply amazing. It augments iPads and TV screens with “Tap-to-Get” areas within the screen real estate.</p>
<p>Doing so allows advertisers to be more creative with their messaging and capture more engagement. Software applications managing “Extreme-posters” can dynamically guide the user journey using animations, pictures, etc. to heighten the overall experience and drive more conversions. Each interaction can be animated as well, for instance, to show a successful transaction, exit data needed, indicate errors, and so on. The experience is focused right where it needs to be.</p>
<p>Moreover, multiple “Tap-to-Get” areas can be defined on a single display and each area could require a different prompt from the user, for example; signature capture, information exchange, checking in, payment, etc.</p>
<h2></h2>
<h2>Extreme-posters Highlights</h2>
<p>&nbsp;</p>
<ul>
<li>Must be powered</li>
<li>NFC readers (Antennas) are embedded inside a TV or iPAD</li>
<li>User experience is more engaging (animations improves the interaction with the user)</li>
</ul>
<p>For more information on Extreme-posters download the <a href="https://flomio.com/wp-content/uploads/2016/10/White-Paper-Extreme-Posters.pdf">White Paper</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img class="aligncenter wp-image-56952 size-full" src="https://flomio.com/wp-content/uploads/2016/10/infog3.jpg" alt="Extreme-Posters, Smart-Poster, Active Poster" width="1393" height="2400" srcset="https://flomio.com/wp-content/uploads/2016/10/infog3.jpg 1393w, https://flomio.com/wp-content/uploads/2016/10/infog3-450x775.jpg 450w, https://flomio.com/wp-content/uploads/2016/10/infog3-46x80.jpg 46w, https://flomio.com/wp-content/uploads/2016/10/infog3-348x600.jpg 348w, https://flomio.com/wp-content/uploads/2016/10/infog3-768x1323.jpg 768w, https://flomio.com/wp-content/uploads/2016/10/infog3-594x1024.jpg 594w, https://flomio.com/wp-content/uploads/2016/10/infog3-580x999.jpg 580w, https://flomio.com/wp-content/uploads/2016/10/infog3-540x930.jpg 540w, https://flomio.com/wp-content/uploads/2016/10/infog3-150x258.jpg 150w" sizes="(max-width: 1393px) 100vw, 1393px" /></p>
<p>&#8211;Daniel Baudino</p>
<p>The post <a rel="nofollow" href="https://flomio.com/2016/10/extreme-posters/">Extreme-Posters</a> appeared first on <a rel="nofollow" href="https://flomio.com">Flomio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://flomio.com/2016/10/extreme-posters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
