Thanks, I tried to add a little to the description hoping to more views. We will see if calling the best will help. I have tried a few different ideas. Notice the thumbnails are just random shots of the video.
That is how I normally do it. I am letting youtube pick for a few to see if I get more hits. Maybe having them all the same is having the opposite effect. I am going to add some randomness to my channel.
I'm probably a big pain in the ass by now :). Coding just on the nextion display. If you have two number boxes and one button. And you want the button to only function when the two values in the number boxes match the one set by the button. Example If(n0.val==2)&(n0.val==1) { page 2 } If i add it like that it says "invalid number of arguments". Any advice? Don't think i would have gotten this far with coding if it wasn't for your videos. Thanks alot.
I am never sure how much you can pack in a single line on the nextion. Sometimes you can have multiple statements and sometimes you can't. if(n0.val==2) { if(n1.val==1) { page 2 } } You can try this I assume you didn't mean to use n0.val twice
Excellent idea of implementing passwords! I have a question though. Instead of the secret page, how would I activate KEYPAD for a field. (I simply want to restrict the entry to that field). The KEYPAD is at page 6. If I direct to page 6 upon completion of password, the keypad displays but does not changes the value in the corresponding field. (EDITED) I got it....... click objectname,1 click objectname,0
@@abuhafss1 I would like to look at it. You would have to go over to cheap controls website and submit a comment so we can email or you can go to Facebook and message me with the details.
Hi I have remade the secret page password project. I found out that when you only click the last hotspot, you succed to the next page. this only works without touching the other hotspots. can you help me to fix it? this is the code of the last hotspot of 4: if(password==3) { page 2 n0.val=password }else { password=0 n0.val=password }
Oh i see the problem. This occurs when you enter the secret page but then click back to password page. then you will succes to the secret page by only clicking on the last hotspot. Is there a way to reset the counting after succeeding the password?
A appreciate your compliments. I have a new video almost ready to publish. I am going through a move to a new home so I am not able to make as many videos as normal but I hope to back to normal soon.
Great video, it was very helpful. Thank you 🙂
I appreciate the kind words. thank you for watching
This is great. Everything I need to make my Nextion work is in these videos.
Thanks, I tried to add a little to the description hoping to more views. We will see if calling the best will help. I have tried a few different ideas. Notice the thumbnails are just random shots of the video.
@@CheapControls
You can specify the Thumbnails in TH-cam Studio.
That is how I normally do it. I am letting youtube pick for a few to see if I get more hits. Maybe having them all the same is having the opposite effect. I am going to add some randomness to my channel.
Great share, as always, thank you. All the best.
Many thanks
I'm probably a big pain in the ass by now :). Coding just on the nextion display. If you have two number boxes and one button. And you want the button to only function when the two values in the number boxes match the one set by the button.
Example
If(n0.val==2)&(n0.val==1)
{
page 2
}
If i add it like that it says "invalid number of arguments".
Any advice?
Don't think i would have gotten this far with coding if it wasn't for your videos.
Thanks alot.
I am never sure how much you can pack in a single line on the nextion. Sometimes you can have multiple statements and sometimes you can't.
if(n0.val==2)
{
if(n1.val==1)
{
page 2
}
}
You can try this I assume you didn't mean to use n0.val twice
Excellent idea of implementing passwords!
I have a question though. Instead of the secret page, how would I activate KEYPAD for a field. (I simply want to restrict the entry to that field).
The KEYPAD is at page 6. If I direct to page 6 upon completion of password, the keypad displays but does not changes the value in the corresponding field.
(EDITED)
I got it.......
click objectname,1
click objectname,0
I am not sure exactly what you are asking but I am glad you figured it out on your own It can be more satisfying that way.
@@CheapControls I can send you the details if you are interested. You might consider posting a new video for it to help others.
@@abuhafss1 I would like to look at it. You would have to go over to cheap controls website and submit a comment so we can email or you can go to Facebook and message me with the details.
@@CheapControls I have sent email at info@cheapcontrols.com, please check it.
Thanks
No problem
Hi I have remade the secret page password project. I found out that when you only click the last hotspot, you succed to the next page. this only works without touching the other hotspots. can you help me to fix it?
this is the code of the last hotspot of 4:
if(password==3)
{
page 2
n0.val=password
}else
{
password=0
n0.val=password
}
Oh i see the problem. This occurs when you enter the secret page but then click back to password page. then you will succes to the secret page by only clicking on the last hotspot. Is there a way to reset the counting after succeeding the password?
fixed it myself:
if(password==3)
{
password=0
page 2
}else
{
password=0
n0.val=password
}
That is great. It always feels good to solve a problem. Thanks for watching.
@@CheapControls your videos are great! I learn so much from you
A appreciate your compliments. I have a new video almost ready to publish. I am going through a move to a new home so I am not able to make as many videos as normal but I hope to back to normal soon.