Comments on: Advanced Arduino Robotics Project #2, Arduino Advanced Calculator https://vsa.edu.in/advanced-arduino-robotics-project-2-arduino-advanced-calculator/ Trusted name in education! Sat, 09 Jul 2022 17:45:15 +0000 hourly 1 https://wordpress.org/?v=6.8.1 By: Sameer Boarade https://vsa.edu.in/advanced-arduino-robotics-project-2-arduino-advanced-calculator/#comment-1009 Sat, 09 Jul 2022 17:45:15 +0000 http://localhost/wordpress/?p=3288#comment-1009 This actually answered my problem, thanks!
Great project sir!

]]>
By: Zadpe Shailesh https://vsa.edu.in/advanced-arduino-robotics-project-2-arduino-advanced-calculator/#comment-1008 Thu, 16 Jun 2022 23:11:25 +0000 http://localhost/wordpress/?p=3288#comment-1008 An interesting discussion is worth comment. I think that you should write more on this topic, it might not be a taboo subject but generally people are not enough to speak on such topics. To the next. Cheers

]]>
By: Yash Vidyasagar https://vsa.edu.in/advanced-arduino-robotics-project-2-arduino-advanced-calculator/#comment-1007 Thu, 24 Mar 2022 10:01:10 +0000 http://localhost/wordpress/?p=3288#comment-1007 You can also calculate the percentage by inserting following code in void calculate() function.

[php]
else if (math_operator == ‘%’)
{
answer = (first_number * 100) / second_number;
}
[/php]

]]>