You are not logged in.
If you see buttons after the "connectings" screen, it's that the UART connexion work! I think there is a problem in ID's... Nextion probably change all ID (don't know why) and so the software di not work anyway. Will try to fix this asap and talk about it on Nextion forum
Thx for that, the Nextion Forum moved to a new Adress. https://nextion.itead.cc/forums/forum/forum/
Offline
@Andre267 can you check the content of your errorOutput.log file in the nextion folder?! If it indicates the missing IP component it would give an explanation why you cant see the ip adress and also the rest of the code is ignored. In that case just follow the instructions in my previous post and it should work.
@juliendelnatte: did you read my previos post? The new dependencies (ip, drivelist, child_process) are missing in release v 0.3
As a temporary workaround, the components can be added manually after installing v 0.3:
sudo cd /home/pi/nextion
sudo npm i ip
sudo npm i drivelist
sudo npm i child_process
sudo shutdown -r now
Last edited by ToS (2018-05-18 07:56:55)
Offline
@ToS @juliendelnatte: this is my output on the errorOutput.log:
missing API key for pushbullet
{ Error: Cannot find module 'ip'
at Function.Module._resolveFilename (module.js:455:15)
at Function.Module._load (module.js:403:25)
at Module.require (module.js:483:17)
at require (internal/module.js:20:19)
at Home._callee$ (/home/pi/nextion/bin/plugins/nextion/pages/home.js:54:22)
at tryCatch (/home/pi/nextion/node_modules/regenerator-runtime/runtime.js:6$
at GeneratorFunctionPrototype.invoke [as _invoke] (/home/pi/nextion/node_mo$
at GeneratorFunctionPrototype.prototype.(anonymous function) [as next] (/ho$
at step (/home/pi/nextion/bin/plugins/nextion/pages/home.js:16:191)
at /home/pi/nextion/bin/plugins/nextion/pages/home.js:16:361 code: 'MODULE_$
Last edited by Andre267 (2018-05-18 15:56:48)
Offline
@Andre267 @juliendelnatte: there you have it "Error: Cannot find module 'ip'..."
@Andre267: you can fix this with executing those instructions of my previous post
@juliendelnatte: I doubt the issue in this case is caused by messed up control-ID's, maybe you could rather take a look into the potential issue with the modules and add ip, drivelist and child_process for v 0.3
Offline
@Andre267 @juliendelnatte: there you have it "Error: Cannot find module 'ip'..."
@Andre267: you can fix this with executing those instructions of my previous post
Did worked
Thx everything else works now aswell.
Cann't wait to get everything working and get more Updates.
Nice Work Guys
Offline
Hi, I'm following
Install guide for guys who using pi3 modeb, but stop at "Connecting printer..."
Thx for Tibus's help...
But when I get to point 4, honestly, I have no idea what to do. Can you help me please?
Offline
Solucionado.
Offline
Install through
But the screen time to select the plate. Do not see the USB and The machine will hold.
Thank You
***This message is translated from Google.
Offline
Hi, I have installed an NX4832T035_011 but it does not link me correctly.
When the printer is not printing, from the main screen, it does not let me do anything. When I put it to print from the computer, it lets me stop printing, but it does not do anything else either. I attach two videos.
Offline
Hello, I realized that when I turn on the screen, I see TCP / IP, instead of putting the address.
Could this be the cause of my problems?
Last edited by L.Merino (2018-05-28 16:00:33)
Offline
Hello, I realized that when I turn on the screen, I see TCP / IP, instead of putting the address.
Could this be the cause of my problems?
honestly? ...->
https://www.nanodlp.com/forum/viewtopic … 6752#p6752
Offline
I'm sorry, I do not speak English and I have a hard time following conversations.
Thank you for the answer.
When I put
sudo cd / home / pi / nextion
Tells me
sudo: cd: command not found
Offline
...
When I put
sudo cd / home / pi / nextion
Tells mesudo: cd: command not found
ah, my fault: no "sudo" for "cd"... just
cd /home/pi/nextion
(no additional spaces!!)
Offline
Thank you very much!!!
Offline
Thank you very much!!!
eeehhh.... did it solve your problem?
Offline
Yes
Offline
To install the latest version:
1. Download the latest version with the command $git clone https://github.com/Tibus/TouchScreen-For-NanoDLP.git
2. replace files from the /home/pi/nextion folder with TouchScreen-For-NanoDLP files
3. Install the IP module. To do this, go to the /home/p/nextion folder and run the command $sudo npm install ip
4. To view the current slice when printing: In the file /bin/plugins/nextion/pages/printingHome.js
remove the word "nextion" from the following block:case 11:
_context2.next = 13;
return this.nextion.getValue("t12.x");case 13:
this.imageX = _context2.sent;
_context2.next = 16;
return this.nextion.getValue("t12.y");case 16:
this.imageY = _context2.sent;
_context2.next = 19;
return this.nextion.getValue("t12.w");
Seems that you tried to fix the issue in the bin-folder, It should instead be fixed in the src-folder:
sudo nano /home/pi/nextion/src/plugins/nextion/pages/printingHome.js
then look at the following code section:
this.imageX = await this.nextion.getValue("t12.x");
this.imageY = await this.nextion.getValue("t12.y");
this.imageWidth = await this.nextion.getValue("t12.w");
and change it to
this.imageX = await this.getValue("m0.x");
this.imageY = await this.getValue("m0.y");
this.imageWidth = await this.getValue("m0.w");
Please be aware that not only the 'nextion.' was deleted, but also 't12' had to be changed to 'm0' (this is the object-name of the placeholder on the 'printing' and 'printingPause' screens).
Then the the changed src folder need to be compiled to the bin folders by...
cd /home/pi/nextion
sudo gulp
Most likely gulp is not installed on your raspberry pi by default. You need to install it first to compile the source code changes.
Regards
ToS
PS: as soon as I find time, I intend to upload changes to my fork on GitHub and initiate a pull-request to Tibus/ Julien. But it's uncertain how fast the code change will result in a V 0.4 (which would make sense anyway, as there is still the issue with missing packages in V 0.3)
Last edited by ToS (2018-06-01 08:08:18)
Offline
hi ~!
Thank you all in advance.
I like the attached picture, the basic function of nano dlp,
I want to create the ability to move layers one by one on the plate. What should I do?
and I would like to show the progress of the file uploading on the screen using the percentage or progress bar. I do not know when it will be completed, so I am frustrated .... haha
Last edited by uups (2018-08-08 15:41:58)
Offline
Hi there, is did all the following but still get TCP/IP instead the address displayed
cd /home/pi/nextion
sudo npm i ip
sudo npm i drivelist
sudo npm i child_process
sudo shutdown -r now
The Shutdown and the Reboot buttons also do not work, but the Plate and Settings Buttons are fine.
Offline
I reinstalled everything again and now it's working.
Offline
Nextion does not display the current print image.
Offline
Good morning,
I just finished installing my "nextion" screen, but I have a problem...
It connects well, but it's very long.
The menu displays well, the buttons change states when you touch them, but I can't navigate through the menus. Additional indication, the IP address field is empty...
I read a lot about the BT/SERIAl, but I'm lost!!!!
Has anyone ever had the problem?
Offline
Tell me please, if I buy a monitor like this, can I connect it without any problems so that everything works?
ebay.com/itm/3-5inch-USART-HMI-TFT-LCD-Touch-Display-Module-TJC4832T03-Resistive-Touch-Screen/392126389872?
Offline
I AM DESPAIRED !!! I spend many hours to get it work but i dont !!!
I want am clear manual for beginners to install the Nextion on an RPI3B+!!!!
It is very difficult for somebody with no programming skills to get the display work on rpi3B+
So i want to maken an PDF / Manual for beginners to help ...
But first i need to get it work by myself.
My display stops on CONNECTING TO PRINTER...
What i did :
Download the new Nano DLP RPI Image from
Nanodlp Homepage
If you use Windows download ETCHER and install it.
Unzip nanodlp and start ETCHER
Select Image you want to flash on your SD Card
Select nanodlp and flash it
Download Putty from putty homepage
Connect your RPI 3B+ with an ethernet cable to your router
After flashing sd put SD Card into the RPI 3B+ and start RPI
Go to your router interface ( in my case 10.0.0.138 ) and login
Watch in your Router Interface and look for RPI 3B+ ip-adress
Open Putty on PC and type in ip-adress from your RPI 3B+ and click open
Then you come to the putty interface box and you can login to your RPI 3B+
Login as: pi
pi@10.0.0.5´s password: raspberry
Now youre on the RPI 3B+
Type sudo raspi-config and make some settings in the “Raspberry PI Software configuration tool”
The Changes debends on your system or on the country you live
Got to 4. Localisation Options and change
Change Locale to “de_DE.UTF-8” (ONLY IN MY CASE)
Change Timezone to “EUROPE” and then “BERLIN”
Change Keyboard layout
If all settings changed got to finisch and click enter
Now you see the black putty interface again. Now update the RPI3 B+ and type
sudo apt-get update
sudo apt-get upgrade
sudo reboot
Congrats so your RPI3 B+ is in ground configuration !!!
Now Type the Ip-Adress from your RPI 3B+ into your webbrowser
Now you can log in to your NanoDLP interface on RPI 3B+
Here you can chose different types of preconfigured Printers. In my case I use the “mUVe3D” Version. Click on it and RPI 3B+ restarts
After Restart look if there is an “New Version Available” in the right upper corner.
If yes click on it and “Upgrade to the latest stable version”
Now the RPI 3B+ update and reboot again
GET NEXTION TOUCH DISPLAY WORK ?!?!?! ( Here I need Help !!! )
Go to github
And download the tft file for your display. (in my case the Nextion 3,2)
Put the tft file into an emty MICRO SD Card
Put the card into the cardslot on your Nextion
Power on the nextion and it will update automaticly
If ready the display shows 100% success
Now get back on Putty and log in to your RPI 3B+ and check your serial0/serial1 connection
Type followed lines
cd /dev
ls- l
Now you have to scroll up and see followed picture
Serail1 -> ttyAMA0
Type
Sudo raspi-config
Go to 5 Interface Options
First question: Would you like a login shell to be accessible over serial NO
Second Question: Would you like the serial port hardware to be enabled YES
The prompt will read : The serial login shell is disable
The serial interface is enabled
Select ok and allow the RPI3B+ to reboot
Type
sudo nano /boot/config.txt
add fllowed line to the config.txt
dtoverlay=pi3-disable-bt
exit and save changes
sudo reboot
After reboot you log in over putty again and type
cd /dev
ls -l
Now it should show follow lines under serial
Serial0 -> ttyAMA0
Serial1 -> ttyS0
Download Nextion Screen Software for Simple installation
..../V0.3/pi2_3.tar.gz --no-check-certificate -O - | sudo tar -C /home/pi/nextion - xz);cd /home/pi/nextion; sudo ./setup.sh
NOW MY config.txt SHOWS
# Enable audio (loads snd_bcm2835)
dtparam=audio=on
disable_camera_led=1
hdmi_pixel_encoding=2
start_x=1
gpu_mem=128
enable_uart=1
dtoverlay=pi3-disable-bt
MYcmdline.txt SHOWS
dwc_otg.lpm_enable=0 console=tty1 root=PARTUUID=b94f2c65-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
BUT MY DISPLAY ALWAS SHOWS CONNECTING TO PRINTER….
What is wrong ?? What changes I must make to get it work ???
Update:
Nextion Output.log
{ nextio: { port: '/dev/ttyAMA0', sleep: 30 },^M
n: { port: '/dev/ttyAMA0', sleep: 30 },^M
pushbullet: { apiKey: null } } { apiKey: null }
connect to port /dev/ttyAMA0
list [ { comName: '/dev/ttyACM0',^M
manufacturer: 'RRD__www.ru',^M
serialNumber: 'RRD__www.ru_RUMBA_-ATmega_2560_co_55437333437351705231',^M
pnpId: 'usb-RRD__www.ru_RUMBA-_ATmega_2560_co_55437333437351705231-if00',^M
vendorId: '0x03eb',^M
productId: '0x204b' },^M
{ comName: '/dev/ttyAMA0',^M
manufacturer: undefined,^M
serialNumber: undefined,^M
pnpId: undefined,^M
vendorId: undefined,^M
productId: undefined },^M
{ comName: '/dev/ttyS0',^M
manufacturer: undefined,^M
serialNumber: undefined,^M
pnpId: undefined,^M
vendorId: undefined,^M
productId: undefined } ]
Nextion errorOutput.log
missing API key for pushbullet
But same.. connecting to printer....
Last edited by mutsched (2018-10-27 13:01:40)
Offline
I AM DESPAIRED !!! I spend many hours to get it work but i dont !!!
I want am clear manual for beginners to install the Nextion on an RPI3B+!!!!
It is very difficult for somebody with no programming skills to get the display work on rpi3B+
So i want to maken an PDF / Manual for beginners to help ...
But first i need to get it work by myself.My display stops on CONNECTING TO PRINTER...
What i did :Download the new Nano DLP RPI Image from
Nanodlp Homepage....
,
I have the same problem. My nextion screen was working well before upgrade my led matrix. I unplugged wires of nextion and plugged. Now stops at "Connecting to Printer".
I got this from /nextion/output.log
connect to port /dev/ttyAMA0
list [ { comName: '/dev/ttyACM0',
manufacturer: 'Arduino__www.arduino.cc_',
serialNumber: 'Arduino__www.arduino.cc__0043_557353239353517150B0',
pnpId: 'usb-Arduino__www.arduino.cc__0043_557353239353517150B0-if00',
vendorId: '0x2341',
productId: '0x0043' },
{ comName: '/dev/ttyAMA0',
manufacturer: undefined,
serialNumber: undefined,
pnpId: undefined,
vendorId: undefined,
productId: undefined },
{ comName: '/dev/ttyS0',
manufacturer: undefined,
serialNumber: undefined,
pnpId: undefined,
vendorId: undefined,
productId: undefined } ]
error opening port /dev/ttyAMA0 retry in 2 seconds
Last edited by pcmanialuck (2018-11-20 09:20:13)
Offline