Skip to content

Commit e815650

Browse files
updated example
1 parent 53e9be8 commit e815650

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/MixedTransitionsBrowser/MixedTransitionsBrowser.ino

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ void showGraph() {
102102
message += F("<title>GraphVizArt</title>\n");
103103
message += F("</head>\n");
104104
message += F("<body>\n");
105-
message += F("<a href='http://gravizo.com/'><img src='https://g.gravizo.com/svg?") + fsm.getDotDefinition() + F("'/></a>");
105+
message += F("<a href='http://gravizo.com/'><img src='https://g.gravizo.com/svg?");
106+
message += fsm.getDotDefinition();
107+
message += F("'/></a>");
106108
message += F("</body>\n");
107109
message += F("</html>\n");
108110
server.send ( 200, F("text/html"), message);

0 commit comments

Comments
 (0)