Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use chalk for color log instead of colors #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/board.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var events = require('events'),
child = require('child_process'),
util = require('util'),
colors = require('colors'),
chalk = require('chalk'),
serial = require('serialport');

/*
Expand All @@ -29,7 +29,7 @@ var Board = function (options) {

self.log('info', 'binding serial events');
self.serial.on('data', function(data){
self.log('receive', data.toString().red);
self.log('receive', chalk.red(data.toString()));
self.emit('data', data);
});

Expand Down Expand Up @@ -132,7 +132,7 @@ Board.prototype.write = function (m) {
this.log('write', m);
this.serial.write('!' + m + '.');
} else {
this.log('info', 'serial not ready, buffering message: ' + m.red);
this.log('info', 'serial not ready, buffering message: ' + chalk.red(m));
this.writeBuffer.push(m);
}
}
Expand Down Expand Up @@ -181,7 +181,7 @@ Board.prototype.pinMode = function (pin, val) {
Board.prototype.digitalWrite = function (pin, val) {
pin = this.normalizePin(pin);
val = this.normalizeVal(val);
this.log('info', 'digitalWrite to pin ' + pin + ': ' + val.green);
this.log('info', 'digitalWrite to pin ' + pin + ': ' + chalk.green(val));
this.write('01' + pin + val);
}

Expand All @@ -197,7 +197,7 @@ Board.prototype.digitalRead = function (pin) {
Board.prototype.analogWrite = function (pin, val) {
pin = this.normalizePin(pin);
val = this.normalizeVal(val);
this.log('info', 'analogWrite to pin ' + pin + ': ' + val.green);
this.log('info', 'analogWrite to pin ' + pin + ': ' + chalk.green(val));
this.write('03' + pin + val);
}
Board.prototype.analogRead = function (pin) {
Expand All @@ -220,7 +220,7 @@ Board.prototype.delay = function (ms) {
Board.prototype.log = function (/*level, message*/) {
var args = [].slice.call(arguments);
if (this.debug) {
console.log(String(+new Date()).grey + ' duino '.blue + args.shift().magenta + ' ' + args.join(', '));
console.log(chalk.gray(Date.now()) + chalk.blue(' duino ') + chalk.magenta(args.shift()) + ' ' + args.join(', '));
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"dependencies": {
"serialport": "*",
"colors": "*"
"chalk": "*"
},
"devDependencies": {}
}