[DSF Extension] Exec On MCode (was: Shutdown SBC)
-
@GoremanX said in [DSF Extension] Exec On MCode (was: Shutdown SBC):
a separate camera using the same HQ module and a Pi Zero W
I do the same with MotionOS and it works quite well.
-
Hello,
I'm a complete idiot when it comes to programming and I am finding the instructions a little vague. I feel I need some assistance please
The Installation is as follows.
Download.
Does this mean git clone? That's what I did anyway.
Rename to just execonmcode
Rename what? There are a load of .go files in the directory, do I rename one of those?
chmod etc
The rest of the install I can manage. I think.
Thank you for your time.
-
look some pots up. I made a video about this @Greg_the_maker
-
What is it i need to be looking for?
-
@PCR said in [DSF Extension] Exec On MCode (was: Shutdown SBC):
made a little videos how to install it. Mainly for my own reference later
Here you go
-
thank you
-
@Greg_the_maker Thanks for pointing that out. I will point the download instructions towards the GitHub Releases page. For there it should be clear what is meant by renaming also.
-
Is tehre a way to get terminal messages displayed in the console?
For example I need to see a list of usb devices with lsusb, is it possible to have that list returned as an M117 message or similar?
-
@Greg_the_maker In theory this is possible. Right now successful execution will discard the application output and error in execution results in an error being sent to DCS what failed (e.g. file not found but still not the output of the application).
I could add that but I am not sure how it will deal with line-breaks.
-
@wilriker Ahh ok. was just a thought. would be a nice feature to have though
-
@Greg_the_maker I have to correct myself. In case of an error it will indeed return the output of
stdout
andstderr
combined as an error message. But since we are in short-lived world things can be changed quickly and thus:Release v5.1.2
This release adds a new flag
-returnOutput
to be able to send the collected output of a successful run back to DCS. Prior this was only the case if the execution of the command failed.
Note that this cannot be combined with-execAsync
.Download
As usual get it from GitHub Releases page.
-
@wilriker Fantastic! Works exactly as desired. Have my upvote!
-
@wilriker Could you please provide a simple example of using the -returnOutput flag? Thanks
-
@oozeBot said in [DSF Extension] Exec On MCode (was: Shutdown SBC):
@wilriker Could you please provide a simple example of using the -returnOutput flag? Thanks
Simple example:
execonmode -mCode 7777 -command "whoami" -returnOutput
will not just confirm successful completion of the command but as part of this return the output of
whoami
(that returns the userexeconmcode
is started as, so probablyroot
) so you can see it e.g. in DWC. -
@wilriker Thanks. So the return is echo'ed in DWC, correct? Could the return value be evaluated within conditional gCode?
-
@oozeBot said in [DSF Extension] Exec On MCode (was: Shutdown SBC):
@wilriker Thanks. So the return is echo'ed in DWC, correct? Could the return value be evaluated within conditional gCode?
I was thinking about this today. Currently there are no variables so there is nothing to write the result back to. (there is a result int from the last code but it can't contain other data types) I think we might have to wait for variables and then we could write the value back to a global.
When that happens... it should be possible to set up an MCode that stores and retrieves values from a file on the SD card. So we could do what M500 does but with key/value semantics of M409:
M7500 K"some.key" V"The value" M7500 K"some.other.key" V0.05
and then get them back in a global with:
M7500 K"some.key" echo {global.M7500_value} ; or whatever you want to name it!
and stored on disk as JSON:
"some": { "key": "The Value" "other": { "key": 0.05 } }
-
Great work! This is incredibly useful and appreciated!
Is there a way to pass quotes through the -command argument?
For example:execonmcode --command "sudo pkill -fx "blah, blah, blah"" -mCode 7720 -execAsync
I've tried single quotes, escape characters, and changing it to an argument passed through the m-code command;
execonmcode --command "sudo pkill -fx %F" -mCode 7720 -execAsync
and then tried from DWC:
M7720 F"python3 script.py"
but the full argument gets lost. I foolishly tried double quotes and DSF crashed. haha.
Please, forgive my inexperience. There is probably a simple answer to this, but it seems to escape my googling ability.
-
@EMRosa Quick answer is: this is currently not implemented.
I'll think about adding it, though. -
followed your video and got it installed and working in 5 minutes - superb work - thanks
-
@wilriker thanks for the quick reply! No worries; at least it wasn’t something related to my Linux-literacy (or lack thereof). Haha. Your work and efforts on this implementation are inspirational.