top of page

Tool Setter, Touch probes, edge finder

Contact

Kindly fill out the form for scheduling live/Virtual demo of our products

Thanks for contacting us, we will reach out to you as soon as possible!

Main office

Manleo Designs Pvt Limited

No 888, 5th Main, Kempegowda Main Road, BHEL Layout 2nd Stage Extension, Rajarajeshwari Nagar
Bangalore - 560098 Karnataka, India

 

Mail: sales@manleo.com

Tel: +91-9886127932

Service Ticket
arrow&v

Thanks for submitting!
We’ll get back to you shortly.

bottom of page
//t the user for the required inputs var costOfProbe = parseFloat(prompt("Enter the cost of the probe:")); var costSavingsPerHour = parseFloat(prompt("Enter the cost savings per hour:")); var hoursSavedPerWeek = parseFloat(prompt("Enter the number of hours saved per week:")); var weeksPerYear = parseFloat(prompt("Enter the number of weeks the machine is in use per year:")); // Calculate the ROI var annualCostSavings = costSavingsPerHour * hoursSavedPerWeek * weeksPerYear; var roi = (annualCostSavings / costOfProbe) * 100; // Display the results document.write("By using a probe, you can save $" + annualCostSavings + " per year."); document.write("Your ROI for purchasing the probe is " + roi + "%.");