Digital pin input

Can we make 5 digital pin to collect value from 5 different sensor and display them all in the in single cloud is this possible.

Hi indus,

Yes you can connect 5 sensors to collect the data from the Bolt device but you will need an breadboard for the GND connection https://docs.boltiot.com/docs/bolt-wifi-module

Do let me know in case you need further assistance.

That’s cool ,but can I make them display in one single page

S U can use them but, make sure that U r able to collect the digital output from the sensors.

Hi @indus19,

Yes, you can plot the graph for all the pins. Check this link https://docs.boltiot.com/docs/multiple-graph-beta

Do let me know in case you need further assistance.

can i have example code pls .

.because the example code in the link was for single pin so howt to set for 6 different pin in same page,

Hi @indus19,

Use the below code snippet

var Graph1 = new boltGraph();
Graph1.setChartType(“lineGraph”);
Graph1.plotChart('time_stamp','var1',' var2', 'var3', 'var4', 'var5', 'var6');

Replace the var1, var2, … with your variable.

Do let me know in case you need further assistance.