RAyWB
About
- Username
- RAyWB
- Joined
- Visits
- 2,124
- Last Active
- Roles
- Member
Comments
-
ok, i already saw,maybe you overlooked my last post, so in UIDisplay::fast Action() are both events , so why checking for slow keys in fast action?
-
Thanks for implementing the Key Events , just a question : in UIDisplay::fast Action() are both events , EVENT_CHECK_SLOW_KEYS(nextAction); (wonder why, typo or wanted?) (as expected) EVENT_CHECK_FAST_KEYS(nextAction); Thanks again f…
-
Background for this need for feature is getting a flexible possibility for additional hardware , in my case some i2c stuff. i want to implement some external PWM´s , therefore i ordered this: https://www.adafruit.com/product/815 benefit would be f…
-
Thanks for the interesting link , i´ll try that even though i prefer soldering ;-) here´s some more about how and whyhttp://www.dimdim.gr/2016/03/fixing-startup-issues-with-arduino-dues/
-
would be great if you can do that Thanks!
-
ok, dont know what happened try https://github.com/RAyWB/PICS it´s the two pictures due_start1 and due_startfix and sorry, display is different from the ones i have
-
Repetier said: Your power on problem is most probably a china due. I have seen many of them having a bug that they crash on first power up and only work after a reset. They simply start too early when power is not stable enough and crash in …
-
Repetier said: Ok, I misunderstood you. the keys test can be anywhere also outside of slow/fast keys. But you have to encapulate it like the call to fast keys: void UIDisplay::fastAction(){#if UI_HAS_KEYS == 1 // Check keys InterruptPro…
-
I´m not shure if i understand correctly.Got it working in Timer500ms as follows:->my function reads from I2C device and returns UIAction->to prevent from hangup i ping watchdog->afterwards i call UI_Execute with that function.so i can make …
-
May be we should add something like #ifdef CustomUI check_Custom_Action(nextAction); #endif to UIDisplay::slowAction and the matching defines (# define CustomUI ,extern int check_Custom_Action(int &nextAction) etc) to Custom …
-
Kommandos zum Ein/Ausschalten: - M42 P S - Change output of pin P to S. Does not work on most important pins. - M80 - Turn on power supply - M81 - Turn off power supply die Bettheizung vor dem E…
-
try to increase your buffer , should help in configuration.h ** \brief Number of moves we can cache in advance. This number of moves can be cached in advance. If you wan't to cache more, increase this. Especially on many very short moves the cach…
-
your printer is not homed, think that´s the reason.(i refer to second video) start homing before printing then the ??? flickering disappears and coords are shown looking at video 1 i see your buffer is running low and also stuttering happens in cur…
-
seems you are not familiar to that electronics stuff , maybe you find some guides in web to check the driver without ramps. look for something like this: there are lots of guides around
-
just remove the wire from dir- input and connect another piece of wire to it. if you leave it open you have one direction, if you touch GND signal of Ramps direction should change
-
hmm, ok never tried without enable, and yes leadshine datasheet says no enable needed. may be you just try dir input without ramps, disconnect dir signal and control it manual so you can see if leadshines work
-
Just take care for(Step/Dir/EN) + Inputs are connected to 5 VDC and STEP - , Dir- and En- are wired to Ramps. i also used that Drivers for a project, running fine. If you have different wiring please change , as you get signal inversion.so your mo…
-
Nice ! No Tricks necessary to compile :-) During merging my adds i found German translation " Kontrolle" for "control" , i think "Steuerung" would be better translation. " Kontrolle" in my understanding happens after a finished action.Anyway, that´…
-
Thanks, i´ll just merge my setup into new config
-
Ok, I already downloaded ;-)
-
anyway, i think you should check jumper settings, now you know that your printer is principally running. i don´t know about the electronics used in your printer,so may be you have information in manual or you´ll find somewhere in web. enjoy printing…
-
looks like halfstep mode and 1mm pitch rod. (so you have 400 steps/mm) in 1/16th mode with 1mm pitch rod you should have 3200 steps/ mm so two possibilities : check if jumpers are set correctly or set steps to 400
-
ok, thanks for support, so i guess the felix event system works as it uses the additional defines later on via menu? so i don´t have a felix printer and also don´t know about the hardware inside. may be you can explain a little
-
also tried arduino 1.6.6 and 1.6.8 , doesn´t change , actually work with 1.8.0. is there anything else i can do for checking?
-
did some more tests,just try to use one of the uiactions from CustomEvents.h, think you´ll also get error message here´s my CustomEvents.h: #ifndef _CustomEvents_H #define _CustomEvents_H extern int cExecute(int action,bool allowMoves); #undef E…
-
hmm, wonder about that i use development version downloaded january 7th and yes,CustomEvents.h is last thing included in repetier.h and CustomEventsImpl.h are last in ui.cpp. i use UICONFIG_CONTROLLER is that the cause?
-
I´m not shure about that. for crosstest i took example from Sample Event Systems\FELIX Pro 1.(took CustomEvents.h and CustomEventsImpl.h) just enabled custom events and tried to use one function as : UI_KEYS_BUTTON_LOW(UI2_BUTTON,UI_ACTION_XY1_BAC…
-
as i cleanup my code shifting my user defined actions to "custom events" i found it doesn´t compile until i add #include"CustomEvents.h" to uiconfig.h i uncommented #define CUSTOM_EVENTS in configuration so i think it should work without #includ…
-
Hi, i uploaded my changes to my Github account . https://github.com/RAyWB/Repetier_Modified_DUE feel free to pick what you think to be useful. all changes marked clearly with //####RAyWB Base: development branch January 7 2017 Features : Laser S…
-
commented "include "gcode.h" in ui.h again and Playing around found that it´seems to be no more possible to usefunctions from GCode:: in uiconfigfor example:switch (keymask1) { case 0xFFFE://1 GCode::executeFString(P…