-
Notifications
You must be signed in to change notification settings - Fork 34
numeric variable value not being fetched #33
Comments
Does anything work on the Mega? There is nothing platform specific about the protocol. |
all other things like updating stuff on the display work; only problem is fetching variable values; I try to set the value of a variable on nextion when a button is clicked and in the loop in arduino code I try to get value of the variable; this works very well on the NANO and UNO but on a MEGA it isn't working; |
Does anything that requires receiving work? |
Code is same on both boards;
…On Wed, Aug 16, 2017 at 4:43 PM, Dan Nixon ***@***.***> wrote:
Does anything that requires receiving work?
Is the code identical on both boards?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#33 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWd8IYPGr__aZlJWx8GTnKtxTGDSq2Wjks5sYs7AgaJpZM4O4BHe>
.
|
I dont really receive anything else so not sure on that
…On Wed, Aug 16, 2017 at 10:24 PM, techniche ***@***.***> wrote:
Code is same on both boards;
On Wed, Aug 16, 2017 at 4:43 PM, Dan Nixon ***@***.***>
wrote:
> Does anything that requires receiving work?
> Is the code identical on both boards?
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#33 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AWd8IYPGr__aZlJWx8GTnKtxTGDSq2Wjks5sYs7AgaJpZM4O4BHe>
> .
>
|
tried getting other values; none of the values are being fetched; |
you solve your problem using which port on Mega ( RX3/TX3 , RX/TX2 or RX/TX1 ) ? |
this is the solution For UNO For MEGA #define MEGA_RX_PIN 53 SoftwareSerial nextionSerial(MEGA_RX_PIN, MEGA_TX_PIN); // RX, TX For Mega do not use RX1/TX1 ,RX2/TX2 and RX3/TX3 !! |
Thank you a lot Dan for your great Library !! |
numeric variable values are fetched fine on arduino nano but same code does not work on mega; any ideas? any changes needed specifically for mega?
The text was updated successfully, but these errors were encountered: