Skip to content

Commit

Permalink
updated example
Browse files Browse the repository at this point in the history
  • Loading branch information
LennartHennigs committed May 7, 2022
1 parent 53e9be8 commit e815650
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/MixedTransitionsBrowser/MixedTransitionsBrowser.ino
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ void showGraph() {
message += F("<title>GraphVizArt</title>\n");
message += F("</head>\n");
message += F("<body>\n");
message += F("<a href='http://gravizo.com/'><img src='https://g.gravizo.com/svg?") + fsm.getDotDefinition() + F("'/></a>");
message += F("<a href='http://gravizo.com/'><img src='https://g.gravizo.com/svg?");
message += fsm.getDotDefinition();
message += F("'/></a>");
message += F("</body>\n");
message += F("</html>\n");
server.send ( 200, F("text/html"), message);
Expand Down

0 comments on commit e815650

Please sign in to comment.