<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Philipp Schweizer</title>
    <description>The latest articles on DEV Community by Philipp Schweizer (@raspberry_tips).</description>
    <link>https://dev.to/raspberry_tips</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3897586%2Fa3172889-de04-48b7-9781-0c24a7ee1f8f.png</url>
      <title>DEV Community: Philipp Schweizer</title>
      <link>https://dev.to/raspberry_tips</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/raspberry_tips"/>
    <language>en</language>
    <item>
      <title>Raspberry Pi IP Scanner App – Find Your Pi on the Network Instantly</title>
      <dc:creator>Philipp Schweizer</dc:creator>
      <pubDate>Sat, 25 Apr 2026 14:03:45 +0000</pubDate>
      <link>https://dev.to/raspberry_tips/raspberry-pi-ip-scanner-app-find-your-pi-on-the-network-instantly-2162</link>
      <guid>https://dev.to/raspberry_tips/raspberry-pi-ip-scanner-app-find-your-pi-on-the-network-instantly-2162</guid>
      <description>&lt;p&gt;Anyone running a Raspberry Pi in their home network knows the problem: &lt;strong&gt;What is the Pi's IP address right now?&lt;/strong&gt; DHCP assigns a new one after every restart, and digging through the router interface gets old fast.&lt;/p&gt;

&lt;p&gt;That's exactly why we built the &lt;strong&gt;raspberry.tips App for Android&lt;/strong&gt; — an IP scanner built specifically for Raspberry Pi, combined with all the tools from the website, right on your phone.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the App Does
&lt;/h2&gt;

&lt;p&gt;The app has three main sections:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;IP Scanner&lt;/strong&gt; — scans your local Wi-Fi and automatically detects all Raspberry Pis&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;My Devices&lt;/strong&gt; — saved devices at a glance, with one-tap browser and SSH access&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tools&lt;/strong&gt; — all raspberry.tips web tools (GPIO Pinout, WPA Supplicant Generator, Electronics Calculator, and more) directly in the app&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How the IP Scanner Works
&lt;/h2&gt;

&lt;p&gt;The scanner combines multiple techniques to reliably find Pis even in busy networks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;mDNS Discovery&lt;/strong&gt; — detects devices via Bonjour/Avahi instantly; if your Pi is reachable as &lt;code&gt;raspberrypi.local&lt;/code&gt; or &lt;code&gt;pi.local&lt;/code&gt;, it shows up within seconds&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MAC Address Recognition&lt;/strong&gt; — the app knows all Raspberry Pi Foundation and Raspberry Pi Trading Ltd MAC prefixes and automatically marks matching devices as confirmed Pis&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Port Scan&lt;/strong&gt; — all 254 hosts in the subnet are scanned in parallel for SSH (22), HTTP (80, 8080), and HTTPS (443)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reverse DNS&lt;/strong&gt; — hostnames are resolved via PTR lookup so you see what your Pi calls itself&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Results are split into three categories:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Raspberry Pis&lt;/td&gt;
&lt;td&gt;Confirmed via MAC address or hostname&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Possible Pis&lt;/td&gt;
&lt;td&gt;Characteristics match (e.g. SSH open, MAC unresolved)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Other Devices&lt;/td&gt;
&lt;td&gt;All other network participants with open ports&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;From the results, you can open the device in the browser or launch an SSH session directly. For SSH, the app hands off to a compatible app like Termius or JuiceSSH.&lt;/p&gt;

&lt;h2&gt;
  
  
  Save and Manage Devices
&lt;/h2&gt;

&lt;p&gt;Found Pis can be saved with a tap on the bookmark icon. In the &lt;strong&gt;My Devices&lt;/strong&gt; tab you'll see IP address, hostname, and last scan date — and you can rename devices, so &lt;code&gt;192.168.1.42&lt;/code&gt; becomes &lt;code&gt;Media Center Pi&lt;/code&gt; or &lt;code&gt;Pi-hole&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Integrated Tools
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;Tools&lt;/strong&gt; tab puts all raspberry.tips web tools in one place without opening a browser:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPIO Pinout – pin assignments for all Raspberry Pi models&lt;/li&gt;
&lt;li&gt;WPA Supplicant Generator – create Wi-Fi configs for headless setup&lt;/li&gt;
&lt;li&gt;Docker Compose Generator – build Docker Compose configurations&lt;/li&gt;
&lt;li&gt;Electronics Calculator – LED resistors, voltage dividers, color codes&lt;/li&gt;
&lt;li&gt;SD Card Calculator – estimate SD card lifespan&lt;/li&gt;
&lt;li&gt;Power Supply Calculator – determine wattage requirements&lt;/li&gt;
&lt;li&gt;Subnet Calculator – calculate IP addresses and networks&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Download
&lt;/h2&gt;

&lt;p&gt;The app is currently available as a direct APK download. You'll need to allow installation from unknown sources once in your Android settings (&lt;strong&gt;Apps &amp;gt; Unknown Sources&lt;/strong&gt; or &lt;strong&gt;Security &amp;gt; Install unknown apps&lt;/strong&gt;).&lt;/p&gt;

&lt;p&gt;➡️ &lt;a href="https://raspberry.tips/en/raspberrypi-tutorials/raspberry-pi-ip-scanner-app-raspberry-tips-for-android" rel="noopener noreferrer"&gt;Download APK&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A &lt;strong&gt;Google Play Store&lt;/strong&gt; release is coming soon.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Note: The Raspberry Pi must be on the same Wi-Fi network as your Android device for the scanner to work. An iOS version is not yet available but is planned.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The source code is open on GitHub: &lt;a href="https://github.com/raspberry-tips/rpi-app" rel="noopener noreferrer"&gt;github.com/raspberry-tips/rpi-app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback, bug reports, and feature requests are welcome in the comments!&lt;/p&gt;

</description>
      <category>raspberrypi</category>
      <category>android</category>
      <category>networking</category>
      <category>iot</category>
    </item>
  </channel>
</rss>
