You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
hello,
i recently developed an arduino code which outputs 2 float values. i sent these 2 values to the android phone via Bluetooth using an small app made with app inventor. now i want to plot these values on a real time scatter plot.can anybody guide me how to plot the values in a real time plot.
Ghica
unread,
Nov 6, 2017, 7:26:08 AM11/6/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
also there is another issue,
i receive two values as a string like (23.56,89.34)
How can i separate these values as 23.56 and 89.34 and save in 2 variables? (like buffers)
Abraham Getzler
unread,
Nov 6, 2017, 7:00:14 PM11/6/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
Are the () included?
If not, just take the string and use a split at comma block to turn it into a list,
and select them by index using a list block.
To remove (), use the text replace block.
ABG
Dineth Senevirathne
unread,
Nov 6, 2017, 9:13:29 PM11/6/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
it is without (). of i seperate two values with comma. how can i use these values to plot the graphs.( how can i plot the x,y values using above list?)are there any conversion method from string to float?
Abraham Getzler
unread,
Nov 7, 2017, 8:28:54 AM11/7/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
are there any conversion method from string to float
AI2 numeric type conversion is automatic (Duck Typing)
how can i use these values to plot the graphs.( how can i plot the x,y values using above list?
Before you tackle realtime graphing,
maybe you should review a few examples of static charting
to get a feel for how to scale values to the Canvas size.