SlideShare a Scribd company logo
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 514
Arduino Based Scientific Calculator
Ma Hnin Yu Myaing1, Ma Naing2
1Lecturer, Department of Electronic Engineering, Technological University, Mandalay, Myanmar
2Lecturer, Department of Electronic Engineering, Technological University, Magway, Myanmar
How to cite this paper: Ma Hnin Yu
Myaing | Ma Naing "Arduino Based
Scientific Calculator" Published in
International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-5, August
2019, pp.514-518,
https://doi.org/10.31142/ijtsrd26395
Copyright © 2019 by author(s) and
International Journalof Trendin Scientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
CommonsAttribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
This paper describes the implementation of electronic scientific calculator
using Arduino. The mathematical process for scientific calculation processes
are based on the digital electronic technology. The calculator takes inputfrom
a user in real-time via a keypad and displays output on a LCD display module.
The control, arithmetic algorithm and calculation functions are performed
using a Arduino Mega 2560. The prototype of the system is configuredand the
simulation results for basic mathematical functions and some scientific
functions of calculator are expressed with the help of Proteus simulation
software. And then the experimental results are tested with the constructed
calculator circuit.
KEYWORDS: Arduino Mega, LCD, Keypad, Proteus, C Programming
I. INTRODUCTION
Scientific calculators all use the same order for carrying out mathematical
operations. This order is not necessarily the same as just reading a calculation
from left to right. The rules for carrying out mathematical calculations specify
the priority and so the order in which a calculation should be done – scientific
calculators follow the same order. This order is sometimes abbreviated by
terms such as BODMAS and BIDMAS to help students remember the order of
doing calculations.
Brackets (all calculations within bracket are done first)
Operations (eg. squaring, square rooting, sin, cosine)
Division and Multiplication
Addition and Subtraction
Being aware of this order is necessary in order to use a
scientific calculator properly. This order should always be
used in all mathematical calculations whether using a
calculator or not. The calculator is an extension of a
mathematician and it has opened upnewpossibilitieswithin
mathematics. It is a machine though, and it is only capable of
doing what it is programmed to do. Accordingly, this work
aims to develop the internal programmed computational
code in the form of a computer program that a scientific
calculator could use to compute functions such as square
root, sine function and cosine functions. The idea of this
project is to develop the basic addition, subtraction,
multiplication, division and integer splicing functions. Then
using these basic functions, the program will then compute
other more complicated functions Arduino software found
on a typical scientific calculator such as the sine and
logarithmic functions. the C programming language is chose
to work. Computing multiplication and division takes
significantly longer time than computing addition and
subtraction, and therefore should be avoided whenever
possible. Thus throughout the program there are instances
where addition and subtraction is used toeliminatetheneed
for multiplication. Another issue is that the program is
constantly rounding numbers and thus losing trailing digits.
II. Hardware Implementation
The calculator takes input from a user in real-time via a
keypad and displays output on LCD display module. The
control and arithmeticalgorithmisperformed usingArduino
Software. A high level block diagram of the hardware
implementation is shown Figure1.
Arduino Mega 2560Power Supply 16x2 LCD
4x5 Keypad
Figure1. Block Diagram of the Hardware Implementation
5V
SCL GNDSDA
VCC
I2C LCD display
SDA
SCL
Arduino Mega 2560
Figure2. The connection of LCD and Arduino Mega
IJTSRD26395
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 515
III. Overall Circuit Operation
Figure3 shows the overall circuit diagram of the scientific calculator. The system includes Arduino Mega 2560, 4x5 keypad,
16x2 LCD display and other peripheral circuit components.TheArduinoMegaisused asarithmeticlogicunitand all calculation
function perform. And then the result displays on LCD. Each part of the circuit and theirconnectiontoArduinoare describedin
below.
Figure3. Overall Circuit Diagram
IV. Flowchart of the System Operation
The basic calculation flowchart of arithmetic operations and all other operations of calculator are carried out can be found in
the following figures. Firstly start the program, define the input/output pins and initialize I2C LCD display. Pin connection
between keypad and Arduino board are described in Figure. The result is evaluated depending on the valuestoredinArduino.
If the user press the button number 40, the Arduino knows as addition operation. And then add two operands and display the
result on LCD. Other operations are also evaluated in this manner.
Start
Define I/O
Initialize I2C LCD
Read First
Button
Read
Operation
Button
Read Second
Button
Read Equal
Button
A
Addition? Add two number
Display Result
Subtraction?
Subtract two
number
Display Result
C
Yes
No
Yes
No
C
Figure4. Flowchart of Scientific Calculator Program
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 516
A
Multiplication? Multiply two number
Display Result
Division? Divide two number
Display Result
Square? Square the number
Display Result
B
Square Root?
Square Root the
number
Display Result
Yes
No
Yes
No
Yes
No
Yes
No
C
C
Figure5. Flowchart of Scientific Calculator Program
B
Sine?
Take Sine function of the
number
Display Result
Cosine?
Take Cosine function of the
number
Display Result
Read again?
End
C
Yes
No
Yes
Yes
No
C
Clear LCD
No
Figure6. Flowchart of Scientific Calculator Program
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 517
V. Results
All of first, the calculator circuit is designed and the calculation program is implemented. After that the calculator circuit is
simulated using Proteus software. The schematic diagram of the main components of the calculator including the Arduino
circuit is drawn in the Proteus software and then run the simulator program. A screenshot of the Proteus schematic capture
and interactive simulation test is shown in Figure7and Figure8. After testing the calculator function withtheProteusSoftware
the small model of the system is configured as shown in Figure9 and Figure10. Basic mathematical functions and some
scientific functions can calculate in this constructed calculator. In this system, basic mathematical functions and scientific
functions can be calculated. These functions are as follows:
1. Addition
2. Subtraction
3. Multiplication
4. Division
5. Square
6. Square root
7. Sine
8. Cosine
Figure7. Screenshot of the Proteus Schematic Capture
Figure8. Simulation Result of Addition Function
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 518
Figure9. Photo of the Constructed Calculator Circuit
Figure10. Experimental Result of “Addition” Function
VI. Discussions
This scientific calculator contains the basic arithmetic
operations and some scientific functions that can be used
easily. Scientific calculator all use the same order for
carrying out mathematical operations. This order is not
necessarily the same as just reading a calculationfromleftto
right. There are two types of scientific calculator, the most
recent type being algebraic scientific calculators. Algebraic
scientific calculators allowtheuserstotypeincalculationsin
the order in which they have been written down. Older
scientific calculators need users to press the mathematical
operation key after they have entered the number. For
example to find the Sine of ninety, in algebraic scientific
calculator it must be pressed [SINE, 90, =]. In non algebraic
scientific calculator, it is need to press [90, SINE, =]. In this
study, non algebraic type scientific calculator is developed.
This research aims to develop the Arduino based scientific
calculator that can use to compute the basic mathematical
functions and some scientific functions such as square,
square root, sine function and cosine function. The systemis
demonstrated with a small model whichiscomposedofLCD,
a keypad and the Arduino Mega.
VII. Conclusion
This paper aims to develop the Arduino based scientific
calculator that can use to compute the basic mathematical
functions and some scientific functions such as square,
square root, sine function and cosine function. The systemis
demonstrated with a small model whichiscomposedofLCD,
a keypad and the Arduino Mega. The code is as easily
programmed as possible and that the program is to be as
efficient as possible at computing the functions. In theory
and through all practical testing, it is found that the
calculations that are output are accurate to the two
significant Figure requirement. It is extremely unlikely for
any realistic design of a commercial calculator to use a
Arduino Mega Board. The role and operation of Arduino in
scientific calculator are explained. This focus on successful
algorithm implementation that could properlyhandleallthe
cases of calculation functions.
VIII. REFERENCES
[1] [18Ano1] Anonymous, Arduino–ArduinoBoard
Mega2560, 2018.http://www.ard-uino.cc/en/Main
/ArduinoBoard Mega2560?setlang
[2] [18Ano2] Anonymous, Arduino-PinMapping 2560,
2018.http://www.arduino.cc/en/Hacking/PinMapping
2560
[3] [17Tar] Tarun Agarwal, Different Types of Arduino
Boards, 2017. http://www. elprocus. com/different-
types-of-arduino boards/
[4] [13Wik] Wikipedia: Push-button, 2013.
https://en.wikipedia.org/wiki/Push-button
[5] [12Ano] Anonymous, Serial I2C 1602 16x2 Character
LCD Module, 2012.www. geeetech.com/
Serial_I2C_1602_16x2_Character_LCD_Module
[6] [08Ano] Anonymous, LCD - Liquid Crystal Display
tutorial, 2008.
http://www.microcontrollerboard.com/lcd.html
[7] [06Ano] Anonymous, Liquid Crystal Display (LCD),
2006.http://www.chipdoc.com/datasheets/liquidcryst
aldisplay.html

More Related Content

What's hot

Automatic railway gate control using arduino uno
Automatic railway gate control using arduino unoAutomatic railway gate control using arduino uno
Automatic railway gate control using arduino uno
selvalakshmi24
 
Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...
Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...
Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...
ijtsrd
 
L298 Motor Driver
L298 Motor DriverL298 Motor Driver
L298 Motor Driver
Raghav Shetty
 
Wireless Electronic Notice Board
Wireless Electronic Notice BoardWireless Electronic Notice Board
Wireless Electronic Notice Board
Sajan CK
 
ACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEMACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEM
anand bedre
 
PPT-IOT HEART ATTACK final ppt.pptx
PPT-IOT HEART ATTACK final ppt.pptxPPT-IOT HEART ATTACK final ppt.pptx
PPT-IOT HEART ATTACK final ppt.pptx
PoojaG86
 
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-siteMajor Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
Utkarsh Chaubey
 
Electronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi ReportElectronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi Report
Vaibhav Pandey
 
Real Life Application of Digital Electronics
Real Life Application of Digital ElectronicsReal Life Application of Digital Electronics
Real Life Application of Digital Electronics
Taslima Yasmin Tarin
 
wireless notice board
 wireless notice board wireless notice board
wireless notice board
Anmol Purohit
 
Vlsi ppt priyanka
Vlsi ppt priyankaVlsi ppt priyanka
Vlsi ppt priyanka
Priyanka Gaur
 
Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051
Maulik Sanchela
 
E- Notice Board Presentation
E- Notice Board PresentationE- Notice Board Presentation
E- Notice Board Presentation
ayushi jain
 
projectreport on bicycle lock
projectreport on bicycle lockprojectreport on bicycle lock
projectreport on bicycle lock
Dilip Kolli
 
Calculator.ppt Andriod Application topic
Calculator.ppt Andriod Application topicCalculator.ppt Andriod Application topic
Calculator.ppt Andriod Application topic
noor ul ain
 
Vehicle Over Speed Detection on Highways
Vehicle Over Speed Detection on HighwaysVehicle Over Speed Detection on Highways
Vehicle Over Speed Detection on Highways
Edgefxkits & Solutions
 
Line Following Robot using Arduino UNO
Line Following Robot using Arduino UNOLine Following Robot using Arduino UNO
Line Following Robot using Arduino UNO
Viswanadh Ivaturi
 
Vehicle to Vehicle Communication using Bluetooth and GPS.
Vehicle to Vehicle Communication using Bluetooth and GPS.Vehicle to Vehicle Communication using Bluetooth and GPS.
Vehicle to Vehicle Communication using Bluetooth and GPS.
Mayur Wadekar
 
Light Emitting Diode Presentation Report
Light Emitting Diode  Presentation ReportLight Emitting Diode  Presentation Report
Light Emitting Diode Presentation Report
Devansh Gupta
 
Communication Interface of The Embedded Systems
Communication Interface of The Embedded Systems Communication Interface of The Embedded Systems
Communication Interface of The Embedded Systems
VijayKumar5738
 

What's hot (20)

Automatic railway gate control using arduino uno
Automatic railway gate control using arduino unoAutomatic railway gate control using arduino uno
Automatic railway gate control using arduino uno
 
Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...
Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...
Internet of Things IoT Based Healthcare Monitoring System using NodeMCU and A...
 
L298 Motor Driver
L298 Motor DriverL298 Motor Driver
L298 Motor Driver
 
Wireless Electronic Notice Board
Wireless Electronic Notice BoardWireless Electronic Notice Board
Wireless Electronic Notice Board
 
ACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEMACCIDENT PREVENTION AND DETECTION SYSTEM
ACCIDENT PREVENTION AND DETECTION SYSTEM
 
PPT-IOT HEART ATTACK final ppt.pptx
PPT-IOT HEART ATTACK final ppt.pptxPPT-IOT HEART ATTACK final ppt.pptx
PPT-IOT HEART ATTACK final ppt.pptx
 
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-siteMajor Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
 
Electronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi ReportElectronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi Report
 
Real Life Application of Digital Electronics
Real Life Application of Digital ElectronicsReal Life Application of Digital Electronics
Real Life Application of Digital Electronics
 
wireless notice board
 wireless notice board wireless notice board
wireless notice board
 
Vlsi ppt priyanka
Vlsi ppt priyankaVlsi ppt priyanka
Vlsi ppt priyanka
 
Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051
 
E- Notice Board Presentation
E- Notice Board PresentationE- Notice Board Presentation
E- Notice Board Presentation
 
projectreport on bicycle lock
projectreport on bicycle lockprojectreport on bicycle lock
projectreport on bicycle lock
 
Calculator.ppt Andriod Application topic
Calculator.ppt Andriod Application topicCalculator.ppt Andriod Application topic
Calculator.ppt Andriod Application topic
 
Vehicle Over Speed Detection on Highways
Vehicle Over Speed Detection on HighwaysVehicle Over Speed Detection on Highways
Vehicle Over Speed Detection on Highways
 
Line Following Robot using Arduino UNO
Line Following Robot using Arduino UNOLine Following Robot using Arduino UNO
Line Following Robot using Arduino UNO
 
Vehicle to Vehicle Communication using Bluetooth and GPS.
Vehicle to Vehicle Communication using Bluetooth and GPS.Vehicle to Vehicle Communication using Bluetooth and GPS.
Vehicle to Vehicle Communication using Bluetooth and GPS.
 
Light Emitting Diode Presentation Report
Light Emitting Diode  Presentation ReportLight Emitting Diode  Presentation Report
Light Emitting Diode Presentation Report
 
Communication Interface of The Embedded Systems
Communication Interface of The Embedded Systems Communication Interface of The Embedded Systems
Communication Interface of The Embedded Systems
 

Similar to Arduino Based Scientific Calculator

Automatic Plant Watering System using Arduino UNO for University Park
Automatic Plant Watering System using Arduino UNO for University ParkAutomatic Plant Watering System using Arduino UNO for University Park
Automatic Plant Watering System using Arduino UNO for University Park
ijtsrd
 
Automatic_Plant_Watering_System_using_Arduino_UNO_.pptx
Automatic_Plant_Watering_System_using_Arduino_UNO_.pptxAutomatic_Plant_Watering_System_using_Arduino_UNO_.pptx
Automatic_Plant_Watering_System_using_Arduino_UNO_.pptx
Syeda Nasiha
 
IRJET - New Generation Multilevel based Atm Security System
IRJET - New Generation Multilevel based Atm Security SystemIRJET - New Generation Multilevel based Atm Security System
IRJET - New Generation Multilevel based Atm Security System
IRJET Journal
 
IRJET- New Generation Multilevel based Atm Security System
IRJET- New Generation Multilevel based Atm Security SystemIRJET- New Generation Multilevel based Atm Security System
IRJET- New Generation Multilevel based Atm Security System
IRJET Journal
 
IRJET- Easy, Efficient and Integrated Billing System
IRJET- Easy, Efficient and Integrated Billing SystemIRJET- Easy, Efficient and Integrated Billing System
IRJET- Easy, Efficient and Integrated Billing System
IRJET Journal
 
Implementation of 32 Bit RISC Processor using Reversible Gates
Implementation of 32 Bit RISC Processor using Reversible GatesImplementation of 32 Bit RISC Processor using Reversible Gates
Implementation of 32 Bit RISC Processor using Reversible Gates
ijtsrd
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
IRJET Journal
 
IRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature SensorIRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET Journal
 
IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”
IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”
IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”
IRJET Journal
 
Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...
Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...
Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...
ijtsrd
 
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoTIRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET Journal
 
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
IRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling SystemIRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling System
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
IRJET Journal
 
Machine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with RMachine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with R
IRJET Journal
 
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET Journal
 
Al04605265270
Al04605265270Al04605265270
Al04605265270
IJERA Editor
 
IRJET- KC Draw using Arduino
IRJET- KC Draw using ArduinoIRJET- KC Draw using Arduino
IRJET- KC Draw using Arduino
IRJET Journal
 
Energy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counterEnergy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counter
IRJET Journal
 
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
IRJET Journal
 
IRJET- Smartwatch using Eduarm Kit
IRJET- Smartwatch using Eduarm KitIRJET- Smartwatch using Eduarm Kit
IRJET- Smartwatch using Eduarm Kit
IRJET Journal
 
3 Axis Drawing Machine
3 Axis Drawing Machine3 Axis Drawing Machine
3 Axis Drawing Machine
IRJET Journal
 

Similar to Arduino Based Scientific Calculator (20)

Automatic Plant Watering System using Arduino UNO for University Park
Automatic Plant Watering System using Arduino UNO for University ParkAutomatic Plant Watering System using Arduino UNO for University Park
Automatic Plant Watering System using Arduino UNO for University Park
 
Automatic_Plant_Watering_System_using_Arduino_UNO_.pptx
Automatic_Plant_Watering_System_using_Arduino_UNO_.pptxAutomatic_Plant_Watering_System_using_Arduino_UNO_.pptx
Automatic_Plant_Watering_System_using_Arduino_UNO_.pptx
 
IRJET - New Generation Multilevel based Atm Security System
IRJET - New Generation Multilevel based Atm Security SystemIRJET - New Generation Multilevel based Atm Security System
IRJET - New Generation Multilevel based Atm Security System
 
IRJET- New Generation Multilevel based Atm Security System
IRJET- New Generation Multilevel based Atm Security SystemIRJET- New Generation Multilevel based Atm Security System
IRJET- New Generation Multilevel based Atm Security System
 
IRJET- Easy, Efficient and Integrated Billing System
IRJET- Easy, Efficient and Integrated Billing SystemIRJET- Easy, Efficient and Integrated Billing System
IRJET- Easy, Efficient and Integrated Billing System
 
Implementation of 32 Bit RISC Processor using Reversible Gates
Implementation of 32 Bit RISC Processor using Reversible GatesImplementation of 32 Bit RISC Processor using Reversible Gates
Implementation of 32 Bit RISC Processor using Reversible Gates
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
 
IRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature SensorIRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature Sensor
 
IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”
IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”
IRJET- Student Teacher Integrated Network Ground – “S.T.I.N.G”
 
Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...
Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...
Use Arduino and the Mblock as the Process Control of Innovation Study Tool: C...
 
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoTIRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoT
 
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
IRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling SystemIRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling System
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
 
Machine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with RMachine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with R
 
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
 
Al04605265270
Al04605265270Al04605265270
Al04605265270
 
IRJET- KC Draw using Arduino
IRJET- KC Draw using ArduinoIRJET- KC Draw using Arduino
IRJET- KC Draw using Arduino
 
Energy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counterEnergy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counter
 
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
 
IRJET- Smartwatch using Eduarm Kit
IRJET- Smartwatch using Eduarm KitIRJET- Smartwatch using Eduarm Kit
IRJET- Smartwatch using Eduarm Kit
 
3 Axis Drawing Machine
3 Axis Drawing Machine3 Axis Drawing Machine
3 Axis Drawing Machine
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
ijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
ijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
ijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
ijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
ijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
ijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
ijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
Celine George
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 

Recently uploaded (20)

clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 

Arduino Based Scientific Calculator

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 514 Arduino Based Scientific Calculator Ma Hnin Yu Myaing1, Ma Naing2 1Lecturer, Department of Electronic Engineering, Technological University, Mandalay, Myanmar 2Lecturer, Department of Electronic Engineering, Technological University, Magway, Myanmar How to cite this paper: Ma Hnin Yu Myaing | Ma Naing "Arduino Based Scientific Calculator" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.514-518, https://doi.org/10.31142/ijtsrd26395 Copyright © 2019 by author(s) and International Journalof Trendin Scientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative CommonsAttribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT This paper describes the implementation of electronic scientific calculator using Arduino. The mathematical process for scientific calculation processes are based on the digital electronic technology. The calculator takes inputfrom a user in real-time via a keypad and displays output on a LCD display module. The control, arithmetic algorithm and calculation functions are performed using a Arduino Mega 2560. The prototype of the system is configuredand the simulation results for basic mathematical functions and some scientific functions of calculator are expressed with the help of Proteus simulation software. And then the experimental results are tested with the constructed calculator circuit. KEYWORDS: Arduino Mega, LCD, Keypad, Proteus, C Programming I. INTRODUCTION Scientific calculators all use the same order for carrying out mathematical operations. This order is not necessarily the same as just reading a calculation from left to right. The rules for carrying out mathematical calculations specify the priority and so the order in which a calculation should be done – scientific calculators follow the same order. This order is sometimes abbreviated by terms such as BODMAS and BIDMAS to help students remember the order of doing calculations. Brackets (all calculations within bracket are done first) Operations (eg. squaring, square rooting, sin, cosine) Division and Multiplication Addition and Subtraction Being aware of this order is necessary in order to use a scientific calculator properly. This order should always be used in all mathematical calculations whether using a calculator or not. The calculator is an extension of a mathematician and it has opened upnewpossibilitieswithin mathematics. It is a machine though, and it is only capable of doing what it is programmed to do. Accordingly, this work aims to develop the internal programmed computational code in the form of a computer program that a scientific calculator could use to compute functions such as square root, sine function and cosine functions. The idea of this project is to develop the basic addition, subtraction, multiplication, division and integer splicing functions. Then using these basic functions, the program will then compute other more complicated functions Arduino software found on a typical scientific calculator such as the sine and logarithmic functions. the C programming language is chose to work. Computing multiplication and division takes significantly longer time than computing addition and subtraction, and therefore should be avoided whenever possible. Thus throughout the program there are instances where addition and subtraction is used toeliminatetheneed for multiplication. Another issue is that the program is constantly rounding numbers and thus losing trailing digits. II. Hardware Implementation The calculator takes input from a user in real-time via a keypad and displays output on LCD display module. The control and arithmeticalgorithmisperformed usingArduino Software. A high level block diagram of the hardware implementation is shown Figure1. Arduino Mega 2560Power Supply 16x2 LCD 4x5 Keypad Figure1. Block Diagram of the Hardware Implementation 5V SCL GNDSDA VCC I2C LCD display SDA SCL Arduino Mega 2560 Figure2. The connection of LCD and Arduino Mega IJTSRD26395
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 515 III. Overall Circuit Operation Figure3 shows the overall circuit diagram of the scientific calculator. The system includes Arduino Mega 2560, 4x5 keypad, 16x2 LCD display and other peripheral circuit components.TheArduinoMegaisused asarithmeticlogicunitand all calculation function perform. And then the result displays on LCD. Each part of the circuit and theirconnectiontoArduinoare describedin below. Figure3. Overall Circuit Diagram IV. Flowchart of the System Operation The basic calculation flowchart of arithmetic operations and all other operations of calculator are carried out can be found in the following figures. Firstly start the program, define the input/output pins and initialize I2C LCD display. Pin connection between keypad and Arduino board are described in Figure. The result is evaluated depending on the valuestoredinArduino. If the user press the button number 40, the Arduino knows as addition operation. And then add two operands and display the result on LCD. Other operations are also evaluated in this manner. Start Define I/O Initialize I2C LCD Read First Button Read Operation Button Read Second Button Read Equal Button A Addition? Add two number Display Result Subtraction? Subtract two number Display Result C Yes No Yes No C Figure4. Flowchart of Scientific Calculator Program
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 516 A Multiplication? Multiply two number Display Result Division? Divide two number Display Result Square? Square the number Display Result B Square Root? Square Root the number Display Result Yes No Yes No Yes No Yes No C C Figure5. Flowchart of Scientific Calculator Program B Sine? Take Sine function of the number Display Result Cosine? Take Cosine function of the number Display Result Read again? End C Yes No Yes Yes No C Clear LCD No Figure6. Flowchart of Scientific Calculator Program
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 517 V. Results All of first, the calculator circuit is designed and the calculation program is implemented. After that the calculator circuit is simulated using Proteus software. The schematic diagram of the main components of the calculator including the Arduino circuit is drawn in the Proteus software and then run the simulator program. A screenshot of the Proteus schematic capture and interactive simulation test is shown in Figure7and Figure8. After testing the calculator function withtheProteusSoftware the small model of the system is configured as shown in Figure9 and Figure10. Basic mathematical functions and some scientific functions can calculate in this constructed calculator. In this system, basic mathematical functions and scientific functions can be calculated. These functions are as follows: 1. Addition 2. Subtraction 3. Multiplication 4. Division 5. Square 6. Square root 7. Sine 8. Cosine Figure7. Screenshot of the Proteus Schematic Capture Figure8. Simulation Result of Addition Function
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26395 | Volume – 3 | Issue – 5 | July - August 2019 Page 518 Figure9. Photo of the Constructed Calculator Circuit Figure10. Experimental Result of “Addition” Function VI. Discussions This scientific calculator contains the basic arithmetic operations and some scientific functions that can be used easily. Scientific calculator all use the same order for carrying out mathematical operations. This order is not necessarily the same as just reading a calculationfromleftto right. There are two types of scientific calculator, the most recent type being algebraic scientific calculators. Algebraic scientific calculators allowtheuserstotypeincalculationsin the order in which they have been written down. Older scientific calculators need users to press the mathematical operation key after they have entered the number. For example to find the Sine of ninety, in algebraic scientific calculator it must be pressed [SINE, 90, =]. In non algebraic scientific calculator, it is need to press [90, SINE, =]. In this study, non algebraic type scientific calculator is developed. This research aims to develop the Arduino based scientific calculator that can use to compute the basic mathematical functions and some scientific functions such as square, square root, sine function and cosine function. The systemis demonstrated with a small model whichiscomposedofLCD, a keypad and the Arduino Mega. VII. Conclusion This paper aims to develop the Arduino based scientific calculator that can use to compute the basic mathematical functions and some scientific functions such as square, square root, sine function and cosine function. The systemis demonstrated with a small model whichiscomposedofLCD, a keypad and the Arduino Mega. The code is as easily programmed as possible and that the program is to be as efficient as possible at computing the functions. In theory and through all practical testing, it is found that the calculations that are output are accurate to the two significant Figure requirement. It is extremely unlikely for any realistic design of a commercial calculator to use a Arduino Mega Board. The role and operation of Arduino in scientific calculator are explained. This focus on successful algorithm implementation that could properlyhandleallthe cases of calculation functions. VIII. REFERENCES [1] [18Ano1] Anonymous, Arduino–ArduinoBoard Mega2560, 2018.http://www.ard-uino.cc/en/Main /ArduinoBoard Mega2560?setlang [2] [18Ano2] Anonymous, Arduino-PinMapping 2560, 2018.http://www.arduino.cc/en/Hacking/PinMapping 2560 [3] [17Tar] Tarun Agarwal, Different Types of Arduino Boards, 2017. http://www. elprocus. com/different- types-of-arduino boards/ [4] [13Wik] Wikipedia: Push-button, 2013. https://en.wikipedia.org/wiki/Push-button [5] [12Ano] Anonymous, Serial I2C 1602 16x2 Character LCD Module, 2012.www. geeetech.com/ Serial_I2C_1602_16x2_Character_LCD_Module [6] [08Ano] Anonymous, LCD - Liquid Crystal Display tutorial, 2008. http://www.microcontrollerboard.com/lcd.html [7] [06Ano] Anonymous, Liquid Crystal Display (LCD), 2006.http://www.chipdoc.com/datasheets/liquidcryst aldisplay.html