<?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>Projects Archives - Tauro Technologies</title>
	<atom:link href="https://taurotech.com/blog/category/projects/feed/" rel="self" type="application/rss+xml" />
	<link>https://taurotech.com/blog/category/projects/</link>
	<description>IoT and Embedded Systems Development</description>
	<lastBuildDate>Fri, 03 Apr 2026 11:02:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Introduction to Linux Device Tree</title>
		<link>https://taurotech.com/blog/linux-device-tree/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=linux-device-tree</link>
		
		<dc:creator><![CDATA[Paul Kuepfer]]></dc:creator>
		<pubDate>Wed, 06 Jul 2022 11:55:28 +0000</pubDate>
				<category><![CDATA[Embedded Systems]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[ARM Development]]></category>
		<category><![CDATA[BSP Development]]></category>
		<category><![CDATA[Device Tree Compiler]]></category>
		<category><![CDATA[Embedded systems]]></category>
		<category><![CDATA[Hardware Configuration]]></category>
		<category><![CDATA[Linux Device Tree]]></category>
		<guid isPermaLink="false">https://taurotech.com/?p=2103</guid>

					<description><![CDATA[<p>Introduction to Linux Device Tree Most modern laptop or desktop computers have their peripheral devices (storage, media, or cameras) connected to the main processor through a peripheral bus such as PCIe or USB.&#160; Windows or Linux operating systems running on the computer can discover the connected peripherals through a process called enumeration or ‘plug and&#8230;</p>
<p>The post <a href="https://taurotech.com/blog/linux-device-tree/">Introduction to Linux Device Tree</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading has-text-align-center">Introduction to Linux Device Tree</h1>



<p>Most modern laptop or desktop computers have their peripheral devices (storage, media, or cameras) connected to the main processor through a peripheral bus such as PCIe or USB.&nbsp; Windows or Linux operating systems running on the computer can discover the connected peripherals through a process called enumeration or ‘plug and play’.&nbsp; This provides information about device type, manufacturer and device configuration thus enabling the OS to load the appropriate drivers for the device and making device operational.&nbsp;&nbsp;</p>



<p>However, in embedded systems, this is not the case as many peripherals are connected to the main processor using busses such as I2C, SPI, and UART which do not support enumeration.&nbsp;&nbsp;</p>



<p>To enable the system to recognize the peripheral devices in an embedded system, developers use a Linux Device Tree which is used to provide the hardware description for the operating system.&nbsp; Prior to using device tree, developers would compile the hardware description into the linux kernel and modify the kernel for each change in platform or peripheral device.&nbsp;&nbsp;</p>



<h2 class="wp-block-heading">What is a Device Tree?</h2>



<p>A Device Tree is a tree data structure with nodes that describe the devices in a system. Each node has property/value pairs that describe the characteristics of the device being represented. Each node has exactly one parent except for the root node, which has no parent.</p>



<p> In the Device Tree each node is named according to the following convention: <code>&lt;name&gt;[@&lt;unit-address&gt;]</code>.</p>



<ul class="wp-block-list">
<li><code>&lt;name&gt;</code>&nbsp;is a simple ASCII string and can be up to 31 characters in length. In general, nodes are named according to device type it represents. A node for a 3com Ethernet adapter would use the name <code>ethernet</code>, not&nbsp;<code>3com509</code>.</li>



<li><code>&lt;unit-address&gt;</code> component of the name is specific to the bus type on which the node resides. The <code>&lt;unit-address&gt;</code> must match the first address specified in the reg property of the node. If the node has no reg property, the <code>@&lt;unit-address&gt;</code> must be omitted and the <code>&lt;name&gt;</code> alone differentiates the node from other nodes under the same level in the tree hierarchy. In case <code>&lt;name&gt;</code>&nbsp;is used without <code>@&lt;unit-address&gt;</code>, the <code>&lt;name&gt;</code>&nbsp;shall be unique within the same level in the tree hierarchy.</li>
</ul>



<p>Figure 1 represents simple tree:</p>



<ul class="wp-block-list">
<li>The nodes with the name <code>cpu </code>are distinguished by their <code>unit-address</code> values of <code>0</code> and <code>1</code>.</li>



<li>The nodes with the name <code>ethernet </code>are distinguished by their unit-address values of <code>fe002000 </code>and <code>fe003000</code>.</li>
</ul>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img fetchpriority="high" decoding="async" width="624" height="313" src="https://taurotech.com/wp-content/uploads/2022/07/Device-Tree.png" alt="A technical diagram titled &quot;Figure 1: Examples of Node Names,&quot; illustrating a hierarchical tree structure for a Device Tree (DT). It shows a root node &quot;/&quot; branching into subnodes including &quot;cpus&quot; (with child nodes &quot;cpu@0&quot; and &quot;cpu@1&quot;), &quot;memory@0&quot;, &quot;uart@fe001000&quot;, and two &quot;ethernet&quot; nodes with specific memory addresses." class="wp-image-2105"/><figcaption class="wp-element-caption">Figure 1: Examples of Node Names</figcaption></figure>
</div>


<p>A node in the Device Tree can be uniquely identified by specifying the full path from the root node, through all descendant nodes, to the desired node.</p>



<p>The convention for specifying a device path is: <code>/node-name-1/node-name-2/node-name-N</code>.</p>



<p>Each node in the device tree has properties that describe the characteristics of the node. Properties consist of a name and a value. A property value is an array of zero or more bytes that containz information associated with the property.</p>



<p>With the Linux Device Tree, the developers can create a single linux kernel image specific to a processor architecture and create multiple device tree images specific to a platform or a product.&nbsp; This makes it much easier to support and update the peripheral changes in various products and platforms that one desires to support.</p>



<p>In x86 based platforms, ACPI is commonly used to describe the hardware peripherals and it can be used with or without the Linux Device Tree.&nbsp; However, in non-x86 platforms such as ARM based systems, Linux Device Tree is becoming the common method of enumerating hardware peripherals.</p>



<h2 class="wp-block-heading"><strong>How is Device Tree data managed?</strong></h2>



<p>Data from the Linux Device Tree can be shown in multiple different ways. Usually, the device tree data is in a format that is readable to humans in <code>.dts</code> or <code>.dtsi </code>source files. The Linux kernel pre-processes the <code>dts</code> files before passing them to the device tree compiler.&nbsp; The source code of the device tree is compiled into a<code> .dtb</code> blob file in a binary format, this format is generally called a Flattened Device Tree (FDT). With this data, the Linux OS is able to find and identify devices in the system. The raw form of the FDT is accessed by the OS during very early stages of the system booting up, but is then further expanded into a kernel data form called the Expanded Device Tree (EDT) so that it can be accessed later during and after the booting up of the system more efficiently.&nbsp;</p>



<p>As of today, device tree support is enabled in linux kernel for Microblaze, Sparc, ARM, PowerPC and x86 architectures. To unify the handling of description of platforms in various kernel architectures, there is interest to extend device tree support to other platforms.</p>



<h2 class="wp-block-heading">Device Tree Advantages and Disadvantages:</h2>



<p>In summary, here are the advantages and disadvantages of Linux Device Tree.</p>



<h3 class="wp-block-heading">Advantages of the Linux Device Tree include:</h3>



<ol style="list-style-type:1" class="wp-block-list">
<li>It makes changing the configuration of parts of the system very simple without having to recompile any of the linux kernel source code.</li>



<li>Easier support for new/additional hardware.</li>



<li>Can reuse <code>.dts</code> files that are already existing within the system and can override old functionality.&nbsp;</li>



<li>It makes it easier to understand the descriptions of hardware peripherals.</li>
</ol>



<h3 class="wp-block-heading">However, disadvantages include:</h3>



<ol style="list-style-type:1" class="wp-block-list">
<li>Creation of <code>.dts</code> files require extensive knowledge of hardware and thus may not be easy to create.</li>



<li>Figuring out all the necessary syntax to match the intended system function may be difficult even if the user knows all the bus and device details.</li>
</ol>



<p></p>



<p>We trust this generic insight into Linux Device Trees is helpful for your system development.&nbsp;Tauro Technologies implements and customizes device trees as part of Board Support Package (BSP) development and board bring-up.&nbsp; </p>



<p>Interested to know more? <a href="https://taurotech.com/contact-us/" target="_blank" rel="noreferrer noopener">Get in touch with us for details</a></p>



<p></p>
<p>The post <a href="https://taurotech.com/blog/linux-device-tree/">Introduction to Linux Device Tree</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ultrasonic Testing. New Generation of Non-Destructive Inspection Devices</title>
		<link>https://taurotech.com/blog/ultrasonic-testing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ultrasonic-testing</link>
		
		<dc:creator><![CDATA[Paul Kuepfer]]></dc:creator>
		<pubDate>Wed, 30 Jun 2021 16:54:08 +0000</pubDate>
				<category><![CDATA[Hardware design]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[gauges]]></category>
		<category><![CDATA[industrial inspection]]></category>
		<category><![CDATA[NDT]]></category>
		<category><![CDATA[non-destructive testing]]></category>
		<category><![CDATA[thickness measurement]]></category>
		<category><![CDATA[transducers]]></category>
		<category><![CDATA[ultrasonic testing]]></category>
		<category><![CDATA[Ut]]></category>
		<guid isPermaLink="false">https://taurotech.com/?p=1416</guid>

					<description><![CDATA[<p>Ultrasonic Testing. New Generation of Non-Destructive Inspection Devices Ultrasonic testing (UT) with gauges and transducers is one of the most important non-destructive testing (NDT) techniques available today, and it has multiple powerful applications across various industries. Just recently, Tauro Tech’s engineers have finished an important project in this field, designing and producing a new ultrasonic&#8230;</p>
<p>The post <a href="https://taurotech.com/blog/ultrasonic-testing/">Ultrasonic Testing. New Generation of Non-Destructive Inspection Devices</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading has-text-align-center">Ultrasonic Testing. New Generation of Non-Destructive Inspection Devices</h1>



<p>Ultrasonic testing (UT) with gauges and transducers is one of the most important non-destructive testing (NDT) techniques available today, and it has multiple powerful applications across various industries. Just recently, Tauro Tech’s engineers have finished an important project in this field, designing and producing a new ultrasonic thickness gauge device that implements IoT and other tech innovations to achieve a new level of industrial inspection effectiveness.&nbsp;</p>



<p>Today, in the era of digital transformation, we have unprecedented opportunities to empower already advanced techniques, such as ultrasonic testing, with latest technological solutions and automation capabilities, producing a new generation of devices able to perform processes with greater efficiency.&nbsp;</p>



<h2 class="wp-block-heading"><strong>What is Ultrasonic Testing?&nbsp;</strong></h2>



<p>Ultrasonic testing is a non-destructive testing technology that is based on the propagation of high-frequency sound waves in the material or object tested in order to detect internal flaws or gather information about the state and character of the materials. Normally, UT is conducted by transmitting ultrasonic pulse-waves (frequencies typically ranging from&nbsp; 0.1-15 MHz up to 50 MHz) with ultrasonic transducers or thickness gauges.</p>



<ul class="wp-block-list">
<li><strong>What is an ultrasonic transducer?&nbsp;</strong></li>
</ul>



<p>An ultrasonic transducer is basically any device that is able to convert electrical energy into high-frequency sound waves, as well as detecting sound waves with ultrasonic sensors and converting it back to electrical energy. There are three types of ultrasonic transducers:&nbsp;</p>



<ul class="wp-block-list">
<li>Transmitters (they convert electrical signals into ultrasound),</li>



<li>Receivers (they convert ultrasound into electrical signals),</li>



<li>Transceivers (they can do both).&nbsp;</li>
</ul>



<p>Today typical ultrasonic transducers are small hand-held devices that can come in various forms, shapes and with different sensors depending on the specific type of ultrasonic testing they are used for.&nbsp;</p>



<ul class="wp-block-list">
<li><strong>What is an ultrasonic thickness gauge?&nbsp;</strong></li>
</ul>



<p>Ultrasonic thickness gauge is a type of ultrasonic testing device that works on the same principle and is used to check material properties, for all kinds of thickness measurements primarily. Various types of ultrasonic thickness gauges are used to test the thickness and other parameters of common materials such as metal, cement, glass, ceramics, etc.&nbsp;</p>



<h2 class="wp-block-heading"><strong>Applications of Ultrasonic Testing&nbsp;</strong></h2>



<p>Ultrasonic testing is commonly applied across industries for two types of measurements:&nbsp;</p>



<ol class="wp-block-list">
<li><strong>Detection of fractures, cracks and other kinds of defects in objects.</strong></li>



<li><strong>Measuring the thickness of the material.&nbsp;</strong></li>
</ol>



<p>Today, UT is the primary way of testing industrial installations and facilities made from materials with dense structures such as metals and alloys. But UT can also be used to test multiple other materials, including plastics, composites, ceramics, concrete, wood, and others.&nbsp;</p>



<p>Ultrasonic transducers can detect a wide variety of structural integrity problems with an object or material, including voids, cracks, disbounds, etc. Here are some of the most typical applications of ultrasonic transducers when it comes to specific products:&nbsp;</p>



<ul class="wp-block-list">
<li>Railroad rails,&nbsp;</li>



<li>Metal pipelines and tanks,</li>



<li>Steel beams,</li>



<li>Structural welds,</li>



<li>Aircrafts (frames and engines)</li>



<li>Automobiles and heavy machinery,</li>



<li>Ship hulls.</li>
</ul>



<p>Ultrasonic gauges are typically used to measure the wall thickness in metal pipes and tanks, but have multiple other applications in areas where a precise measurement of a wall thickness needs to be done without the access inside or emptying a pipe/tank. To name a few examples:&nbsp;</p>



<ul class="wp-block-list">
<li>Precision machines or cast parts,</li>



<li>Molded plastic containers,</li>



<li>Small diameter medical tubing,</li>



<li>Rubber tires and conveyor belts,</li>



<li>Contact lenses.&nbsp;</li>
</ul>



<figure class="wp-block-image"><img decoding="async" src="https://lh6.googleusercontent.com/iFLkQz7Lx23JeA08WXyT_6sx_bXezqJBNf7qwSQtndgtOtpv4iuhz400Kt613VxWLl_YEMWUQ3FsprLvgJNEjxHcwuLdOOGYMz8TXLzKZQhI1wE09hrDxV6mkaw6d59PoZjKAFRl" alt="A quality control inspector wearing a white hard hat and safety glasses performs phased array ultrasonic testing (PAUT) on a large industrial pipe weld using an Olympus OmniScan flaw detector."/></figure>



<h2 class="wp-block-heading"><strong>Pros and Cons of Ultrasonic Testing&nbsp;</strong></h2>



<p>As you can see, ultrasonic testing is quite a unique technology that has a wide range of extremely useful applications across industries. Naturally, like any solution, it has its set of strengths and weaknesses.&nbsp;</p>



<h3 class="wp-block-heading"><strong>Pros of UT</strong></h3>



<ol class="wp-block-list">
<li>High sensitivity. UT allows to detect even micro flaws and cracks in objects/materials.&nbsp;</li>
</ol>



<ol start="2" class="wp-block-list">
<li>Great penetration power. Thanks to high penetration of UT, even flaws deep in the part can be successfully detected.&nbsp;</li>
</ol>



<ol start="3" class="wp-block-list">
<li>High precision. Ultrasonic testing is more accurate than most other nondestructive testing methods.</li>
</ol>



<ol start="4" class="wp-block-list">
<li>Safety. UT is also completely safe both for human personnel and equipment or materials, which makes it easy to use UT for inspection without the need to stop the production or operations of the facility.&nbsp;</li>
</ol>



<ol start="5" class="wp-block-list">
<li>Quick results. Another strength of UT is the fact that testing results are available immediately.</li>
</ol>



<ol start="6" class="wp-block-list">
<li>Portable and automated.<strong> </strong>Ultrasonic testing is also a very portable and easy to automate technology, which is an important factor for many large-scale projects.&nbsp;</li>
</ol>



<h3 class="wp-block-heading"><strong>Cons of UT&nbsp;</strong></h3>



<p>UT as a technology also has a number of weaknesses, and when designing a new IoT thickness gauge device we at Tauro Technologies were aiming at eliminating or minimizing them as much as possible.&nbsp;</p>



<ol class="wp-block-list">
<li>Trained operator is required to set up and conduct the inspection procedure.&nbsp;</li>
</ol>



<ol start="2" class="wp-block-list">
<li>Inspection of complex, irregular or rough objects can be challenging.&nbsp;</li>
</ol>



<ol start="3" class="wp-block-list">
<li>UT testing devices must be separately calibrated to every material measured.&nbsp;</li>
</ol>



<ol start="4" class="wp-block-list">
<li>Surfaces need to be prepared for inspection by cleaning and removing some types of coating and paint.&nbsp;</li>
</ol>



<ol start="5" class="wp-block-list">
<li>Complex measurement projects typically require multiple setups.&nbsp;</li>
</ol>



<ol start="6" class="wp-block-list">
<li>Ultrasonic testing equipment normally is more expensive compared to mechanical measurement devices.</li>
</ol>



<h2 class="wp-block-heading"><strong>Ultrasonic Non-Destructive Testing Process</strong></h2>



<p>When it comes to the actual UT inspection, it requires an ultrasonic transducer equipped with a set of sensors necessary to conduct the testing, and a display device. The transducer is then connected to the diagnostic machine and applied to the tested object/material. The surface of the tested object should be separated from the transducer with a couplant such as oil or water.&nbsp;</p>



<p>During the operational stage, ultrasonic waves penetrate through the tested object and reflect back when they hit the boundary with another medium. Being recorded and interpreted by the measurement devices, this data allows qualified technicians to identify flaws and cracks in objects, as well as to measure their thickness.&nbsp;</p>



<h2 class="wp-block-heading"><strong>Ultrasonic IoT Thickness Gauge Device by Tauro Technologies</strong>&nbsp;</h2>



<p>As it should be clear from the above, one of the most crucial challenges about the non-destructive ultrasonic testing process the way it is typically conducted today is that it requires a trained technician walking around the facility and manually measuring the thickness of pipe walls and other installations. Needless to say, this makes ultrasonic testing a tedious process, requiring a lot of time and manual labour.&nbsp;</p>



<p>And this is the problem we at Tauro Technologies wanted to solve by developing a new battery-powered ultrasonic IoT thickness gauge device that uses off-the-shelf ultrasonic transducers such as Yushi PT-8.</p>



<p>Our UT device can be permanently installed in predefined locations on the manufacturing floor. The IoT sensor will be activated during fixed time intervals that can be set up by the user to perform thickness measurements using echo-to-echo detection technique.&nbsp;</p>



<ul class="wp-block-list">
<li><strong>What is echo-to-echo?</strong></li>
</ul>



<p>There are two primary methods used for the ultrasonic non-destructive testing process: echo-to-echo and pulse-echo.</p>



<ol class="wp-block-list">
<li><strong>Pulse-echo</strong></li>
</ol>



<p>In the pulse-echo technique, an ultrasound wave is excited and detected by two transducers (transmitter and receiver) that are glued to polished opposite sides of a sample. When a radiofrequency (RF) signal is applied to the transmitter, it generates an ultrasound pulse spreading across the sample and producing an RF pulse in return, which then propagates back and forth creating additional RF pulses at the receiver. The sound velocity and attenuation are then used by the device to obtain the material measurement results.&nbsp;</p>



<ol start="2" class="wp-block-list">
<li><strong>Echo-to-echo</strong></li>
</ol>



<p>The echo-to-echo technique uses gates set around two consecutive backwall echoes and measures the difference between them, which allows to extract the coating thickness from the measurement results and return just the part thickness.&nbsp;</p>



<p>As the coating can add a significant error to the measurement results, echo-to-echo is the method that supports non-destructive ultrasonic testing with highest level of accuracy.&nbsp;</p>



<p>Once the measurements are collected, the IoT thickness gauge developed by Tauro Technologies automatically performs all the necessary calculations to come up with the measurement results based on the selected material type. The measurement report is then being transferred to a cloud-based server where all this data can be safely stored, accessed and visualized if needed.&nbsp;</p>



<h2 class="wp-block-heading"><strong>Summary&nbsp;</strong></h2>



<p>Thanks to its multiple strengths, today UT is a truly indispensable way to conduct non-destructive testing of objects and materials. And with new-generation UT devices, such as the IoT thickness gauge by Tauro Technologies, ultrasonic testing gets more accessible, reliable and cost-effective than ever before.</p>



<p>Interested to know more? <a href="https://taurotech.com/contact-us/">Get in touch</a> with us for details.</p>



<p></p>
<p>The post <a href="https://taurotech.com/blog/ultrasonic-testing/">Ultrasonic Testing. New Generation of Non-Destructive Inspection Devices</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Digital Lateral Flow Testing and Possible Applications</title>
		<link>https://taurotech.com/blog/digital-lateral-flow-test/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=digital-lateral-flow-test</link>
		
		<dc:creator><![CDATA[Paul Kuepfer]]></dc:creator>
		<pubDate>Mon, 03 May 2021 18:53:02 +0000</pubDate>
				<category><![CDATA[Hardware design]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Digital Health Devices]]></category>
		<category><![CDATA[IoT Medical Solutions]]></category>
		<category><![CDATA[Lateral Flow Testing]]></category>
		<category><![CDATA[Point-of-Care Testing]]></category>
		<category><![CDATA[Rapid Diagnostic Tests]]></category>
		<category><![CDATA[Smart LFT Devices]]></category>
		<guid isPermaLink="false">https://taurotech.com/?p=1373</guid>

					<description><![CDATA[<p>Digital Lateral Flow Testing and Possible Applications Lateral flow tests (LFTs), also known as lateral flow assays or rapid tests, are currently widely used in medical diagnostics due to simplicity of this technology and the fact that LFTs don’t require complex and expensive equipment. Today, with a new generation of connected smart devices, this technology&#8230;</p>
<p>The post <a href="https://taurotech.com/blog/digital-lateral-flow-test/">Digital Lateral Flow Testing and Possible Applications</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading has-text-align-center">Digital Lateral Flow Testing and Possible Applications</h1>



<p>Lateral flow tests (LFTs), also known as lateral flow assays or rapid tests, are currently widely used in medical diagnostics due to simplicity of this technology and the fact that LFTs don’t require complex and expensive equipment. Today, with a new generation of connected smart devices, this technology gets even more accessible, and the number of its applications in various fields of healthcare and beyond is growing rapidly.&nbsp;</p>



<h2 class="wp-block-heading">What is lateral flow testing?&nbsp;</h2>



<p>Lateral flow tests are designed to analyze various body fluids in order to detect the presence of target substances in these samples automatically, without the need to use complex laboratory equipment and trained staff.&nbsp;&nbsp;</p>



<p>Most LFTs operate in the following way: a liquid body fluid sample runs along the surface of a pad with reactive molecules that make the pad show a visual result (either negative or positive). The pads are made of a series of paper and polymer-based capillary beds that are able to transport fluid. They act as a sponge and hold fluid, which then moves to the second conjugate pad, which contains the reagents required for the chemical reaction between the targeted molecule and its antibodies to take place.&nbsp;</p>



<p>The reaction produces particles that pass through the pad and end up on the test and control lines for the LFT. The test line shows a signal, typically colored, to specify the result of the testing. Home pregnancy tests would be a good example of such an LFT, where the reactive molecules are targeted to detect a certain hormone, and the result is shown in the form of colored lines.</p>



<p>This technology makes it possible to produce simple, cheap and very effective test devices that are able to show results within a 5 to 15 minute time frame, which is much faster compared to other medical testing methods, which often take days to get the results.</p>



<h2 class="wp-block-heading">Lateral flow tests production and usage is on the rise&nbsp;</h2>



<p>For the reasons stated above, such as simplicity, affordability, and flexibility (LFTs can be utilized to diagnose various diseases and used in other fields beyond medical diagnostics), the adoption of lateral flow tests is growing globally, and rather quickly.&nbsp;</p>



<p>According to a <a href="https://www.researchandmarkets.com/reports/5203877/lateral-flow-assays-market-by-application?utm_source=CI&amp;utm_medium=PressRelease&amp;utm_code=qh6t8l&amp;utm_campaign=1504577+-+Global+Lateral+Flow+Assays+Market+(2020+to+2025)+-+Evolving+Applications+of+Lateral+Flow+Assays+Present+Opportunities&amp;utm_exec=jamu273prd">new report</a> by ResearchAndMarkets.com, the global lateral flow tests market is projected to reach US$10,2 bn by 2025 from US$8,2 bn in 2020, at a CAGR of 4.5% during the forecast period. Growing prevalence of infectious diseases globally, increasing aging population, growing demand for point-of-care and home-based LFT devices, and increasing demand in food and environment safety and veterinary diagnostics industry are the major factors driving the growth of this market, researchers found.&nbsp;</p>



<p>Today lateral flow tests are <a href="https://www.bbc.com/news/uk-56632084">widely used</a> to conduct rapid COVID-19 testing as they are capable of detecting even people with COVID-19 who are not showing symptoms.</p>



<p>The technological development is another major reason why LFTs are growing in popularity.&nbsp;</p>



<figure class="wp-block-image"><img decoding="async" src="https://lh6.googleusercontent.com/4v4hsXeM3y3kua0TWEXnUj950msQXXxRe9ngAnkizB3yl646wPpANES6dNfvAbAmFf4nfsXChlNlvppEITz4X_lb1p1EOssvqr3w7PLelTLuwNvxGqeU7L7shYsdakiWS6gzw6s" alt="An illustrative graphic of a medical diagnostic test kit featuring a sterile nasal swab held by a gloved hand, a collection tube with a label, and stylized COVID-19 virus particles in the background."/></figure>



<h2 class="wp-block-heading">Digital lateral flow tester by Tauro Technologies&nbsp;</h2>



<p>At Tauro Technologies, we enhanced lateral flow testing technology with the power of modern-day IoT solutions by creating a smart lateral flow tester able to detect various diseases with high accuracy.&nbsp;&nbsp;</p>



<p>Available at a retail price as low as $10, our digital tester can be integrated with any lateral flow test assay, automating lateral flow testing and reporting the test results. The test is augmented with a mobile application and cloud based data management enabling seamless and secure reporting of the test results with public institutions and hospitals.  Rapid test results combined with digital monitoring enable institutions to rapidly respond to health crisis such as pandemics.&nbsp;&nbsp;</p>



<p>Digital lateral flow test devices by Tauro Technologies can house any type of any fluid-based (saliva or other body fluids such as urine and blood) lateral flow test assay which makes it a universal solution for turning a regular lateral flow test into a cloud-connected solution. It takes 5 to 15 minutes for the test to show the result, making it a desirable and easy to implement solution for various kinds of medical testing, such as COVID-19 tests.&nbsp;</p>



<p>As LFT is a flexible and universal technology, our digital lateral flow testing devices can be custom designed to be a perfect fit for application specific deployments in different fields.&nbsp;</p>



<h2 class="wp-block-heading">Common applications of lateral flow testing</h2>



<p>Lateral flow tests usage is broadly segmented across several fields, with new application areas being added to this list on a regular basis as LFTs are able to handle a wide variety of samples and perform many sample-handling tasks, such as filtration, concentration, and removal of cross-reactive elements.</p>



<p>These are the most common application areas for lateral flow testing devices today.&nbsp;</p>



<ul class="wp-block-list">
<li><strong>Medical diagnostics;&nbsp;</strong></li>
</ul>



<ul class="wp-block-list">
<li><strong>Clinical testing;</strong></li>
</ul>



<ul class="wp-block-list">
<li><strong>Drug development &amp; quality testing;</strong></li>
</ul>



<ul class="wp-block-list">
<li><strong>Veterinary diagnostics;</strong></li>
</ul>



<ul class="wp-block-list">
<li><strong>Food safety &amp; environment testing.</strong></li>
</ul>



<p>Naturally, LFTs applications in medical fields are the most common, and are normally divided into market segments based on the type of sample fluids they are designed to test (blood, urine, saliva, and other samples).</p>



<p>But today other fields and industries are also increasingly adopting this new technology. According to ResearchAndMarkets’ LFT market analysis, the food safety and environment testing segment of this market is projected to grow at the highest rate in the next five years. This is due to the fact that LFTs are emerging as simple and rapid alternatives to traditional methods for the detection of foodborne pathogens and contaminants.&nbsp;</p>



<p>In case of environment testing, LFTs are finding wide applications due to their ability to handle a wide variety of environment-related samples, detecting different kinds of substances, such as industrial waste elements or toxic substances in water.</p>



<h2 class="wp-block-heading">Summary&nbsp;</h2>



<p>As the lateral flow testing technology is gaining adoption across different industries and is getting increasingly utilized to serve various purposes, it is important to make sure that all the advantages and capabilities of this technology are supported, and empowered, by the hardware, which has to be not just consistently accurate and reliable, but also affordable.&nbsp;</p>



<p>We believe that Tauro Technologies has developed such an LFT device. Our digital lateral flow tester, supported by a powerful mobile app, can be adopted to a variety of applications in various fields, being used to perform highly accurate tests at low costs. <a href="https://taurotech.com/contact-us/">Get in touch</a> for further information.</p>



<p></p>
<p>The post <a href="https://taurotech.com/blog/digital-lateral-flow-test/">Digital Lateral Flow Testing and Possible Applications</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Conformal Coating FAQs</title>
		<link>https://taurotech.com/blog/conformal-coating-faqs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=conformal-coating-faqs</link>
		
		<dc:creator><![CDATA[Paul Kuepfer]]></dc:creator>
		<pubDate>Thu, 12 Nov 2020 19:22:55 +0000</pubDate>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Conformal Coating]]></category>
		<category><![CDATA[Electronics Manufacturing]]></category>
		<category><![CDATA[Harsh Environment Electronics]]></category>
		<category><![CDATA[PCB Insulation]]></category>
		<category><![CDATA[PCB Protection]]></category>
		<category><![CDATA[Vibration and Shock Protection]]></category>
		<guid isPermaLink="false">https://taurotech.com/?p=527</guid>

					<description><![CDATA[<p>Conformal Coating FAQs Conformal coating is most commonly used to prevent corrosion damage and provide humidity protection to printed circuit boards in harsh environments.&#160; However, there are other benefits to conformal coating, and we are often asked if your products should add this to the manufacturing process.&#160; What is conformal coating? What are the benefits&#8230;</p>
<p>The post <a href="https://taurotech.com/blog/conformal-coating-faqs/">Conformal Coating FAQs</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading has-text-align-center">Conformal Coating FAQs</h1>



<p>Conformal coating is most commonly used to prevent corrosion damage and provide humidity protection to printed circuit boards in harsh environments.&nbsp; However, there are other benefits to conformal coating, and we are often asked if your products should add this to the manufacturing process.&nbsp;</p>



<h2 class="wp-block-heading">What is conformal coating?</h2>



<ul class="wp-block-list">
<li>It is a manufacturing process that a applies a layer of engineered polymeric product that forms a thin film on printed circuit boards that are populated with components.&nbsp; The film protects electrical circuits and components from environmental contaminants including moisture, static, mold growth, chemicals, and sea salt.&nbsp;</li>



<li>There are many varieties of conformal coating products and most fit into 5 main categories based on their chemical composition: Urethane Resin (UR), Epoxy Resin (ER), Acrylic Resin (AR), Silicone Resin (SR), and Parylene (XY).&nbsp;</li>
</ul>



<h2 class="wp-block-heading">What are the benefits of conformal coating?</h2>



<ul class="wp-block-list">
<li>Protection from harsh environments is the main objective of most products that are conformal coated in manufacturing.&nbsp; Extremely harsh environments that expose the PCB to chemicals or salt spray can quickly deteriorate the copper traces and solder and cause field failures. &nbsp;Products in more benign environments experience the standard oxidation of the components over time and it results in shortened product life-cycles.&nbsp;</li>



<li>Products that are subject to shock and vibration also benefit from conformal coating.&nbsp; Boards without vibration protection inevitably form microscopic cracks in the solder joints over time and will eventually exhibit intermittent failures.&nbsp; For example, AR coatings will cure hard and offer cost-effective mechanical support.</li>



<li>Conformal coating can be used to improve insulation between components on heavily populated printed circuit boards.&nbsp; Reduced spacing gives designers the ability to shrink product sizes.&nbsp; Further, conformal coating protects the PCB assembly from failures due to Foreign Object Debris (FOD) such as metal shavings or dirt.</li>



<li>Black colored coatings are an inexpensive method for Intellectual Property (IP) protection by obscuring component part numbers.</li>
</ul>



<h2 class="wp-block-heading">Are there drawbacks to conformal coating?</h2>



<ul class="wp-block-list">
<li>After boards are coated, it is difficult to remove the coatings and rework the boards.&nbsp; Typically, conformal coating is employed after products are released to production.</li>



<li>&nbsp;Conformal coating increases the production costs especially in products that require lots of masking for components such as connectors.</li>
</ul>



<h2 class="wp-block-heading">How do I evaluate if conformal coating is needed for my project?</h2>



<ul class="wp-block-list">
<li>Tauro Technologies uses many types of conformal coating chosen to fit the end application requirements.&nbsp; </li>
</ul>



<p><a href="https://taurotech.com/contact-us/">Get in touch</a> with us for details.</p>
<p>The post <a href="https://taurotech.com/blog/conformal-coating-faqs/">Conformal Coating FAQs</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Indoor Tracking Systems</title>
		<link>https://taurotech.com/blog/indoor-tracking-system/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=indoor-tracking-system</link>
		
		<dc:creator><![CDATA[Paul Kuepfer]]></dc:creator>
		<pubDate>Tue, 11 Aug 2020 16:43:00 +0000</pubDate>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[BLE and LoRa]]></category>
		<category><![CDATA[Emergency Response Technology]]></category>
		<category><![CDATA[Indoor Tracking Systems]]></category>
		<category><![CDATA[IoT Location Solutions]]></category>
		<category><![CDATA[Real-Time Location]]></category>
		<category><![CDATA[UWB Tracking]]></category>
		<guid isPermaLink="false">https://taurotech.com/?p=468</guid>

					<description><![CDATA[<p>Indoor Tracking Systems Modern day warehouses are like a complex living organisms with rapidly moving machinery, products, robots, and personnel. Real-time tracking of the locations of the moving pieces is necessary for efficient and effective functioning on a minute-by-minute basis. Tauro Technologies also employed this technology to address emergency situations. They are often dynamic and&#8230;</p>
<p>The post <a href="https://taurotech.com/blog/indoor-tracking-system/">Indoor Tracking Systems</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading has-text-align-center">Indoor Tracking Systems</h1>



<p>Modern day warehouses are like a complex living organisms with rapidly moving machinery, products, robots, and personnel.  Real-time tracking of the locations of the moving pieces is necessary for efficient and effective functioning on a minute-by-minute basis.  </p>



<p>Tauro Technologies also employed this technology to address emergency situations.  They are often dynamic and in a frenzied state for police, fire fighters, and medical personnel.&nbsp; Fast, accurate decisions can save lives, keep the first-responders safe and are dependent on accurate real-time information to make mission critical split second decisions. &nbsp; In partnership with a client, Tauro Technologies developed the hardware and triangulation software system for indoor location tracking to meet these requirements.   </p>



<p>Providing real-time location and bio-metric feedback allows the first-responders to rapidly make informed decisions based on the health and status of their teams as they respond to the dynamic evolution of the emergency event.&nbsp; The tracking system was designed with the following features:</p>



<ol class="wp-block-list">
<li>It supports various RF technologies including UWB radio (ultra-wideband), BLE (Bluetooth Low Energy) and LoRa simultaneously operating on the same board.&nbsp; Utilizing LoRa technology enables long range reliable communication of several kilometers and enables remote management of the operations.</li>



<li>The design is compact and is optimized for low-power operation in harsh environments&nbsp; and features long battery life.&nbsp; The batteries are recharged wirelessly reducing the need of cabling and increasing the flexibility of the system.&nbsp;</li>



<li>Location detection is accomplished via multiple beacons dropped around the emergency site and personnel location is calculated on ToF (Time of Flight) from the individual RF tag to the beacon. &nbsp; In addition, the location and biometric data is uploaded to the base unit in real-time.&nbsp;&nbsp;</li>
</ol>



<p>Tauro Technologies’ experience in power management, wireless communication, and RF hardware, firmware, and software design is keeping our first responders safe. Tauro Technologies has experience in a wide variety of applications, including military, scientific, medical, industrial robotics, and communications. <a href="https://taurotech.com/contact-us/">Get in touch</a> with us for more information.</p>



<p></p>
<p>The post <a href="https://taurotech.com/blog/indoor-tracking-system/">Indoor Tracking Systems</a> appeared first on <a href="https://taurotech.com">Tauro Technologies</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
