Hack the SpikenzieLabs Calculator Kit into a Subnet Calculator

SpikenzieLabs Calculator KitWhen I heard about the programmable SpikenzieLabs Calculator Kit I knew just what I wanted it to do.  I wanted to hack the SpikenzieLabs calculator kit into a subnet calculator.

I support over 800 Internet devices so every day I run across the need to calculate subnets to find the useable host IP range.  I end up Googleing “subnet calculators”.  Then enter the IP and subnet mask to get first and last usable IP in the range.   It’s not hard to do but just a PITA.

I thought it would be cool to add subnet calculation functionality to the SpikenzieLabs calculator.  All my subnet calculations are on Class C / CIDR subnets so I can easily represent everything I need on a 6 digit display.

I hacked the stock SpikenzeLabs v1.1 calculator sketch that I downloaded from the SpikenzieLabs website to add the subnet calculator functionality.   Because I have not programmed in many years and this is my first Arduino project I prefer to call my work a hack as not to insult real programmers.  I am sure there are some bitwize operations that could do the CDIR calculations but I just hacked my code together using case statements.  I was more interested in the functionality then I was in elegant coding and conserving RAM or CPU cycles.  If anyone can clean up my code feel free to do as you wish.

 

How to use the subnet calculator on the SpikenzieLabs calculator kit using my custom sketch vt1.1

In this example I will be using an IP of 64.193.49.123 and subnet mask of 255.255.255.248 (ie /29).  This has 6 usable IPs with a range of 64.193.49.12164.193.49.126.

On the calculator
1. enter the last octet of the IP 123.

LED-123

2. press +        ( pause a second to let the key debounce )
Key-Plus

 

3. press +        ( this second + tells the calculator you are doing a subnet calculation)
Key-Plus

 

4. enter the last octet of the subnet mask 248 or the CDIR notation 29.  For CDIR do not enter the forward slash (/).

LED-248 or LED-29

5. press =
Key-Equal

 

6. The result 121.126 will be displayed representing the first usable IP 121 before the decimal and the last usable IP 126 after the decimal.
LED-121.126

 

 

 

I am more then thrilled with the SpikenzieLabs Calculator Kit and my subnet calculator hack.  I always keep it within arms reach on my desk.  The best part is how fast it is compared to using an online subnet calculator.  Now I can calculate a usable IP range from an IP and subnet in less then 10 seconds.

Download the custom subnet calculator sketch vt1.1

Leave a Reply