Currently,I am making a project with help of temperature sensor and arduino.
I want to display the value of temperature, obtain with those two on the software(that i made on netbeans with help of java application) and that software will save the data into mySQL database(so in future to display that temperature again, in that software).
As of now, I manage to do the project in parts(completed the software & mySql connection).
But I cant figure out the way to connect the software and Arduino IDE together.
I think you are not understanding the purpose of the Arduino IDE. The Arduino IDE is merely used to write, compile, and upload code that will run on the microcontroller of your Arduino board. It sounds like you want to connect your software with the Arduino board, not the Arduino IDE.
You do not use the IDE (integrated development environment) because you are not developing at that point.
The arduino will output serial information (what you see in the serial monitor). The IDE is just one way to see what the arduino is doing. For your program, you instead want it to see what the arduino is doing. Your problem is connecting the software to the arduino's output. Your problem is NOT about connecting the software to the IDE software.
Arduino data >> IDE
Arduino data >> software
You are wrong for thinking it is
Arduino data >> IDE >> software
INTP:
You do not use the IDE (integrated development environment) because you are not developing at that point.
The arduino will output serial information (what you see in the serial monitor). The IDE is just one way to see what the arduino is doing. For your program, you instead want it to see what the arduino is doing. Your problem is connecting the software to the arduino's output. Your problem is NOT about connecting the software to the IDE software.
Arduino data >> IDE
Arduino data >> software
You are wrong for thinking it is
Arduino data >> IDE >> software
thanks for reply.
And yeah, thats what I want to do but I don't the way to do it.