-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Graphwiz #67
Comments
Sounds cool, but I doubt I'll have the time. The source is available on Github so you could give it a go yourself... |
mnoletti69, No offense ... but since you suggested how easy it would be ... is it possible you would be ambitious enough to volunteer. Look at it this way ... you would gain even more proficiency at the "easy" presentation tool. I can't speak for tinkerspy but he might help out with your contribution on small portions of it ... when defining & using abbreviations etc. |
Thank you, for your reply.
I'm the CEO of a small company and at the moment I spend all the free
time for this project.
I appretiate the quality of your Automaton and give you an idea on how
to improve it.
Try to past the following code (atm_button states) on the following link
http://www.webgraphviz.com/ and look at the result:
digraph G {
IDLE -> LIDLE
IDLE -> LWAIT
IDLE -> AUTO_ST
WAIT -> PRESSED
WAIT -> IDLE
PRESSED -> REPEAT
PRESSED -> RELEASE
REPEAT -> REPEAT
REPEAT -> RELEASE
RELEASE -> IDLE
LIDLE -> LWAIT
LWAIT -> LPRESSED
LWAIT -> LIDLE
LPRESSED -> LRELEASE
LPRESSED -> WRELEASE
LRELEASE -> LIDLE
WRELEASE -> LIDLE
AUTO_ST -> IDLE
}
All you have to do is to generate the DOT text file (likewise your xml
inline code), pass it to an executable (or an PHP function) on the web
server (server side) and link the generated image.
If you search on the web you will find a lot code using Graphwiz (note
that I have nothing to do with the developers).
For the moment I cannot help you anymore.
Kind regards
Marco
PS I'm aware that depending on your webserver facilities, running an
executable could be a pain.
Il 18/04/2019 16:44, Mike Walsh ha scritto:
…
mnoletti69,
No offense ... but since you suggested how easy it would be ... is it
possible you would be ambitious enough to volunteer. Look at it this
way ... you would gain even more proficiency at the "easy"
presentation tool. I can't speak for tinkerspy but he might help out
with your contribution on small portions of it ... when defining &
using abbreviations etc.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#67 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AL3QXC5DPHXS2ABW5D2VU43PRCCM5ANCNFSM4HG2GEPA>.
|
"I'm the CEO of a small company and at the moment I spend all the free time for this project." Hmm, know what you mean. I'm the CTO for two small companies, have an almost full time job on the side, a hobby project crying for completion and on top of that I'm packing for a family holiday. Thatnks for your suggestion, it looks promising! I hope to get around to it. |
Hi, take result and put here Atm_player example https://tinyurl.com/yyfvtl3y |
Hi, the code and the web Machine Editor is really cool.
Please consider to add to the editor an automatic generated state machine picture.
It should be very easy with https://www.graphviz.org/.
Many thanks.
The text was updated successfully, but these errors were encountered: