Can't believe you got so few views. This stuff is golden, it is so hard to find decent tutorials on Nextion displays! I am really happy to find this! Thank you.
@CheapControls3 жыл бұрын
To make it easier to search through my videos I am add them to www.cheapcontrols.com and I will include a search feature which I hope will make it easier to find the video you want. I am doing this for myself also. I sometimes forget things and I want an easy way to find them.
@kawamxahin10884 жыл бұрын
Bro, loving your way of describeing all this issues and solutions along with some of your little jokes.
@CheapControls4 жыл бұрын
Thanks for the kind words and thanks for watching.
@aksel_brawlstars5 жыл бұрын
Excellent tutorials, love the way you explain in details. Well Done!
@CheapControls5 жыл бұрын
Thanks
@jamesgibbs36562 жыл бұрын
Love your tutorial(s)!! You might want to put in a comment to say that the pageX does not work any more - syntax needs to be p[x] got stumped on this for a while. I know this vid is a few years old though thanks for all your wonderful work!! Couldn't do this without you.
@CheapControls2 жыл бұрын
Thanks for the tip. I was not aware of the change. Thanks for watching and I am glad you like them
@CheapControls2 жыл бұрын
I went back to that video and using the complete name of the page still appears to work for me. page0 and page1. What version of the IDE are you using? I appreciate the feedback.
@TheDefpom5 жыл бұрын
On arduino if you use”readUntil” it can check for an ending char which makes it faster, otherwise it waits for the serial timeout.
@CheapControls5 жыл бұрын
Thanks for the tip. I have not used "readUntil" but I will definitely look into it. It is funny how you can use something for years and still learn something new almost every day. Thanks again.
@ezion679 ай бұрын
Hook up the page change to the release event of the object and there is no problem.
@CheapControls9 ай бұрын
That is a great observation.
@DarkmasterTR933 жыл бұрын
I am having troubles with the cov h0.val,page0.t0.txt,0 I get Invalid Variables, am I missing something? I have set both to global
@CheapControls3 жыл бұрын
I think cov needs to be covx. or leave the comma zero off the end
@alirezatooghi77205 ай бұрын
@@CheapControls I have a same problem and I used the covx with mo zero at the end, but still the same error
@CheapControls5 ай бұрын
@@alirezatooghi7720 Make sure you have the periods and commas correct. If you have a comma instead of a period or a period instead of a comma the ide will interpret variables wrong
@jackfeng14104 жыл бұрын
Excuse me, I don’t use any mediation library. How to display page1 t1.txt="ON" text page0 t0.txt="ON" ....? Thanks
@CheapControls4 жыл бұрын
It depends on if t1.txt is global or local. Please reply with your situation and I will supply a little code.
@jackfeng14104 жыл бұрын
@@CheapControls global
@CheapControls4 жыл бұрын
Serial.print("page1.t1.txt=\"ON\""); Serial.write(0xff); Serial.write(0xff); Serial.write(0xff); Serial.print("page0.t1.txt=\"ON\""); Serial.write(0xff); Serial.write(0xff); Serial.write(0xff); Notice the backslash and qoutes \" You need the backslash so the arduino knows to send the quote in the string. if you are sending a value you dont use the /" Serial.print("page1.n1.val=356"); Serial.write(0xff); Serial.write(0xff); Serial.write(0xff); Let me know if I answered your question or if I got your question wrong please rephrase it so I get you the answer you need. As always thanks for watching.
@jackfeng14104 жыл бұрын
@@CheapControls 這方式我試過了...無效
@CheapControls4 жыл бұрын
Go to my Cheap Controls Facebook page. You can message me with you code. I will review it if you want.