mirror of
https://github.com/mysensors/MySensors.git
synced 2026-03-06 16:16:59 +01:00
minimal adjustment to the dallas temperature sensor as an example added scripts to drop the database and to set a reboot manually for debugging purposes
18 lines
656 B
JavaScript
18 lines
656 B
JavaScript
const dbAddress = '127.0.0.1';
|
|
const dbPort = 27017;
|
|
const dbName = 'MySensorsDb';
|
|
|
|
var dbc = require('mongodb').MongoClient;
|
|
dbc.connect('mongodb://' + dbAddress + ':' + dbPort + '/' + dbName, function(err, db) {
|
|
if (err) {
|
|
console.log('Error connecting to database at mongodb://' + dbAddress + ':' + dbPort + '/' + dbName);
|
|
} else {
|
|
db.dropDatabase(function(err, result) {
|
|
if (err)
|
|
console.log('Error dropping database at mongodb://' + dbAddress + ':' + dbPort + '/' + dbName);
|
|
else
|
|
console.log('Successfully dropped database at mongodb://' + dbAddress + ':' + dbPort + '/' + dbName);
|
|
});
|
|
}
|
|
});
|