BleuLlama / TinyBasicPlus

A C implementation of Tiny Basic, with a focus on support for Arduino
401 stars 117 forks source link

is there a Way to connect an 1602/2004 screen to an Arduino running Tinybasic and showing everything on it? #53

Open leandrofriedrich opened 3 years ago

leandrofriedrich commented 3 years ago

Hello! I just found my first Arduino Uno and found out that i have put TinyBasic on it. And i like it!! I just went through the code and think that the stuff gets written to the Serial monitor with serial read/write. So, now to the question. Is it possible to display the stuff from the Serial Monitor to an LCD? i think i should be able to use lcd.write instead of Serial.read/write. Will that be possible? Best Regards ChaosLeo07

BleuLlama commented 3 years ago

That should work yes. Just be aware that the lcd library will likely use memory in the arduino, which is already quite tight.

Sent from your iPhone.

On Dec 28, 2020, at 6:37 AM, ChaosLeo07 notifications@github.com wrote:

 Hello! I just found my first Arduino Uno and found out that i have put TinyBasic on it. And i like it!! I just went through the code and think that the stuff gets written to the Serial monitor with serial read/write. So, now to the question. Is it possible to display the stuff from the Serial Monitor to an LCD? i think i should be able to use lcd.write instead of Serial.read/write. Will that be possible? Best Regards ChaosLeo07

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

leandrofriedrich commented 3 years ago

That should work yes. Just be aware that the lcd library will likely use memory in the arduino, which is already quite tight.

Sent from your iPhone.

On Dec 28, 2020, at 6:37 AM, ChaosLeo07 notifications@github.com wrote:

 Hello! I just found my first Arduino Uno and found out that i have put TinyBasic on it. And i like it!! I just went through the code and think that the stuff gets written to the Serial monitor with serial read/write. So, now to the question. Is it possible to display the stuff from the Serial Monitor to an LCD? i think i should be able to use lcd.write instead of Serial.read/write. Will that be possible? Best Regards ChaosLeo07

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

so if i would take an arduino with more ram, i will get better results?