From 90b3f7bfbc19466c38f83f106e224504835f7306 Mon Sep 17 00:00:00 2001 From: Farrin Reid Date: Sat, 23 Jun 2012 01:03:04 -0800 Subject: [PATCH] [fix] Changed require('sys') to require('util') for compatibility with node v0.8 --- lib/arduino.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/arduino.js b/lib/arduino.js index a05e91d..bddfe69 100644 --- a/lib/arduino.js +++ b/lib/arduino.js @@ -5,7 +5,7 @@ * node-arduino is freely distributable under the terms of the MIT license. */ -var sys = require('sys') +var util = require('util') , SerialPort = require('serialport').SerialPort ;