#include SoftwareSerial bluetoothSerial(12, 2); char bluetoothCommand; void setup() {Serial.begin(9600); bluetoothSerial.begin(9600); } void loop() { Serial.println (bluetoothCommand); if (bluetoothSerial.available() > 0) {bluetoothCommand = bluetoothSerial.read();} }