area515 / Photonic3D

Control software for resin 3D printers
http://photonic3d.com
GNU General Public License v3.0
131 stars 115 forks source link

(Question)How to set up my DLP printer in photonic3D? #308

Closed Jolly2015 closed 7 years ago

Jolly2015 commented 7 years ago

Sorry I am a new user of DLP machine. I installed Raspberry Pi System Image. now I can visit dashboardPage, then I installed "Photonic3D-windows64-offline.exe" on my win7 x64, when I click it,after the read picture,it return to dashboardPage,no informtion to install photonic3d,what shold I do?

WesGilster commented 7 years ago

That's it. You've done it. Now it's time to setup a printer or use a community profile. You don't really even need the windows install, since it seems like you already know how to get to the dashboard without it. The windows install is just for those that don't know how to browse to the dashboard.

Not sure where you want to go next, but here are some docs if you are interested: https://wiki.photonic3d.com/doku.php

Jolly2015 commented 7 years ago

@WesGilster,thanks for your fast answer,I would like to know how to set up a printer next,beacuse there is no printer shows on the dashboard page even I connected my machine.I try to flowing the instruction(from your link at "plug and play" part) , just a red Photonic3D picture come out,then open a dashboard page still without any prints,should I do something change on my raspberry pi? How Photonic3D communicate with my ramps1.4?How it know the bandrate and serial port number?

WesGilster commented 7 years ago

Click on "printers" on the dashboard page. Then you'll find the set of community printers that are available to install automatically. If none of these meet your needs you can click on the "Create" button. That will allow you to setup all of the settings you are looking for. From this point on, everything should be gui setup.

Jolly2015 commented 7 years ago

Hi Wes, Yeah,I try it many times,but nothing happen when I click “Create”. [cid:_Foxmail.1@ffc8ab37-cdec-24a6-445a-43bc7225a7a3]

It's what make me confused.


jolly_2015@outlook.com

From: Wes G.mailto:notifications@github.com Date: 2017-03-06 00:18 To: area515/Photonic3Dmailto:Photonic3D@noreply.github.com CC: Gorillamailto:jolly_2015@outlook.com; Authormailto:author@noreply.github.com Subject: Re: [area515/Photonic3D] (Question)How to set up my DLP printer in photonic3D? (#308)

Click on "printers" on the dashboard page. Then you'll find the set of community printers that are available to install automatically. If none of these meet your needs you can click on the "Create" button. That will allow you to setup all of the settings you are looking for. From this point on, everything should be gui setup.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/area515/Photonic3D/issues/308#issuecomment-284240479, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ANGqNnG2hUwcHGcOURdaHIS4lTx7Xmcuks5riuBdgaJpZM4MTE6p.

WesGilster commented 7 years ago

I'll need two things:

  1. Provide a screenshot of your printers page
  2. Click the "download" button on any page of Photonic3d and upload that zip file to this forum.

That should give us enough information to go on.

Jolly2015 commented 7 years ago

@WesGilster OK, thanks,here is the link, https://github.com/Jolly2015/Photonic3D-error-log?files=1

Jolly2015 commented 7 years ago

Then I change google browser and now I can create a printer on printersPage, but when I click "start", it said "Failed to assign PrinterFirmware for Autodetect 3d printer firmware",I think the marlin firmware should be modify somewhere and I am try it now.

Jolly2015 commented 7 years ago

Everything is OK now: 1.Use chrome browser 2.Use right firmware

jmkao commented 7 years ago

What browser were you using before that didn't work?

WesGilster commented 7 years ago

Yeah I would like to know that as well. I test mostly with Chrome, but would like to know what problems you might be having.

Jolly2015 commented 7 years ago

@jmkao @WesGilster I using 360 Browser before, can I change language for Photonic3D, If yes, is there any instruction?

kloknibor commented 7 years ago

@Jolly2015 we don't have translations for photonic3D I'm afraid. However what you could do is google translate from the chrome browser on photonic :)!

Jolly2015 commented 7 years ago

I can understand that, I just saw another country's language version somewhere, so I am very curious if I can ,LOL

kloknibor commented 7 years ago

@Jolly2015 most text is hardcoded throughout everywhere in the code basically :P So at this point translating would be quite an task! But who knows maybe in the future :)!

kloknibor commented 7 years ago

Also we had some trouble in IE11 and rewrote the function in settings.js to this (code is outdated I''m merging with Wes's code currently ) :

function refreshSelectedPrinter(printerList) {
            var foundPrinter = false;
            if (printerList.length == 1 &&  controller.autodirect != 'disabled') {
                controller.currentPrinter = printerList[0];
                foundPrinter = true;
            } else {
                var printersStarted = 0;
                var currPrinter = null;
                for (var i = 0; i < printerList.length; i++) {
                // had to change as for ___ of ____ isn't supported in IE11 :(
                    if (printersStarted > 1) {
                        break;
                    }
                    if (printerList[i].started) {
                        printersStarted += 1;
                        currPrinter = printerList[i];
                    }
                    if (controller.currentPrinter != null && printerList[i].configuration.name === controller.currentPrinter.configuration.name) {
                        controller.currentPrinter = printerList[i];
                        foundPrinter = true;
                    }
                }
                if (printersStarted == 1 && controller.autodirect != 'disabled') {
                    controller.currentPrinter = currPrinter;
                    foundPrinter = true;
                }
            }
            if (!foundPrinter) {
                controller.currentPrinter = null;
            }
        }

Edit : this code is up to date, only doesn't rederict too controls page.

WesGilster commented 7 years ago

Google has a nice little "translate" button that they can add to your page. Probably the easiest route for now.

On 3/7/2017 4:14 AM, Robin wrote:

@Jolly2015 https://github.com/Jolly2015 most text is hardcoded throughout everywhere in the code basically :P So at this point translating would be quite an task! But who knows maybe in the future :)!

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/area515/Photonic3D/issues/308#issuecomment-284679357, or mute the thread https://github.com/notifications/unsubscribe-auth/ACT_NMXxv5q3pHCuz4fvsOlBcTkF3Hmmks5rjS4YgaJpZM4MTE6p.

WesGilster commented 7 years ago

Setup a pull request to my dev repo for that change and I'll take a look at it and see if I can merge it in.

WesGilster commented 7 years ago

This code was merged in from Robin's repo fairly recently.