adalogger feather bluefruit 32 u4 with serLCD

Our weekly LIVE video chat. Every Wednesday at 8pm ET!

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
shikhartandon1993
 
Posts: 1
Joined: Fri Sep 29, 2017 2:13 pm

adalogger feather bluefruit 32 u4 with serLCD

Post by shikhartandon1993 »

WHICH library should i use to run the LCD with feather bluefruit 32u4.
along with below code I have also added serLCD.cpp and serLCD.h files.

//#include <SoftwareSerial.h>
#include <SerLCD.h>

int pin = 12;
const int Serialdelay=10; // conservative, 2 actually works

SoftwareSerial NSS(0,2); // Note that SerLCD only has Rx and no Tx, so only really need a Tx from Arduino
SerLCD lcd(NSS);

void setup()
{
Serial.begin(9600);// start serial comunication
pinMode(12,OUTPUT);
digitalWrite(12,HIGH);
}

void loop()
{

lcd.clear();
lcd.setPosition(0,0);
lcd.write(2);
delay(10);

}
ERROR
C:\Users\hp\Documents\Arduino\libraries\SoftwareSerial\SoftwareSerial.cpp:125:2: error: #error This version of SoftwareSerial supports only 20, 16 and 8MHz processors

#error This version of SoftwareSerial supports only 20, 16 and 8MHz processors

Locked
Please be positive and constructive with your questions and comments.

Return to “Ask an Engineer! VIDEO CHAT (closed)”