From c72c9a4578dd91c7a42eecd77bcd45cd33ef7658 Mon Sep 17 00:00:00 2001 From: Kristian Lauszus Date: Thu, 9 Aug 2012 21:51:29 +0200 Subject: [PATCH] Removed L2 and R2 from digitalOutput string --- examples/Bluetooth/PS3SPP/PS3SPP.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/Bluetooth/PS3SPP/PS3SPP.ino b/examples/Bluetooth/PS3SPP/PS3SPP.ino index cdfeac3d..10fa0e00 100644 --- a/examples/Bluetooth/PS3SPP/PS3SPP.ino +++ b/examples/Bluetooth/PS3SPP/PS3SPP.ino @@ -142,14 +142,14 @@ void loop() { if(PS3.getButton(L1)) digitalOutput += " - L1"; - if(PS3.getButton(L2)) - digitalOutput += " - L2"; + //if(PS3.getButton(L2)) + //digitalOutput += " - L2"; if(PS3.getButton(L3)) digitalOutput += " - L3"; if(PS3.getButton(R1)) digitalOutput += " - R1"; - if(PS3.getButton(R2)) - digitalOutput += " - R2"; + //if(PS3.getButton(R2)) + //digitalOutput += " - R2"; if(PS3.getButton(R3)) digitalOutput += " - R3";