Reading an Arduino program?

Hey, I'm currently (still) trying to send data from my Arduino to a database in MySQL. However, nothing is coming through, and the Arduino keeps blinking TX (which stands for sending data, right?).

Here is the VSC program:

 var mysql = require('mysql'); var SerialPort = require("serialport"); var column_name = 'Wert' var table_name = 'Wertetabelle' const parsers = SerialPort.parsers; const parser = new parsers.Readline({    delimiter: '\r\n' }); var port = new SerialPort('COM4', {    baudRate: 9600,    dataBits: 8,    parity: 'none',    stopBits: 1,    flowControl: false }); port.pipe(parser); //Determine the connection to MySQL var con = mysql.createConnection({  host: "localhost",  user: "root",  password: "",  database: "werte_datenbank" }); //Connect with Database con.connect(function(err) {    // Build the connection    if (err) throw err;    console.log("Connected!"); }); parser.on('data', function(data){    console.log(data);    // Deklariert was genau wo gespeichert werden soll    var sql = "INSERT INTO `werte_tabelle` (`Wert`) VALUES ('" + data + "');"    // Speichert bei Änderungen die neuen Daten in der Datenbank    con.query(sql, function (err, result) {      if (err) throw err;      console.log("1 record inserted");    }); }); //DELETE FROM `werte_tabelle` WHERE 1 var sql = "DELETE FROM `werte_tabelle` WHERE 1" // Löscht die Datenbank con.query(sql, function (err, result) {    if (err) throw err;    console.log("Every Entry deleted");

});

Here is the program from the Arduino Editor:

 int pinPx = 3; int x = 1; const long intervall = 20000; bool zeitspanne = true; float zeit_now = millis(); void setup() {  Serial.begin(9600);  pinMode(pinPx, INPUT); } void loop() {  zeit_now = millis();  while (zeitspanne == true) {    if (digitalRead(pinPx) == true) {      Serial.write(x);    }    if (millis() > (zeit_now + intervall)) {      zeitspanne = false;    }  }  pinPx = pinPx + 1;  x = x + 1;  zeitspanne = true; }

Thank you!!

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
5 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
iEdik
10 months ago

Hello,

you have 3 problems in the code:

first, you only do the pin 3 and query as input, later in the loop you do this pin by 1 each increase all 20 seconds, then nothing will happen.

then 2. Problem immediately in the first 20 sec as soon as the pin 3 stands on HIGH several hundred times in the second of the value 3 are written to the serial interface.SO will quickly not process your code for database.

and leave your arduino only once after the high-signal on the pin On Serial writing.. then only in 20 seconds..usw

Third problem

However, if you want to query all the entries 20s ..DANN you need to start again at 3 after the reach of pin 13.

achja..simulier like me just your code online:

https://wokwi.com/projects/new/arduino-uno

connect a switch with pin3 and 3.3v

and I recommend Serial.print function for debugging

I hope you can access it:

https://wokwi.com/projects/398886182499186689

ntechde
10 months ago

You’re talking to the localhost database. This would mean that the database server is on the Arduino. Take an IP address from the right server!

smiregal8472
10 months ago
Reply to  ntechde

The database is not addressed by the Arduino program…

ntechde
10 months ago
Reply to  arduinoinspace

Local on the Arduino????? I can’t imagine.

Tell your setup!