Manotosh Howlader
Published

My Bolt WiFi Project

Utilizing bolt wifi module control over light monitoring system and a led controller system by using python programming.

BeginnerFull instructions provided2 hours440
My Bolt WiFi Project

Things used in this project

Hardware components

Resistor 10k ohm
Resistor 10k ohm
×2
Bolt WiFi Module
Bolt IoT Bolt WiFi Module
×1
LDR, 5 Mohm
LDR, 5 Mohm
×1
Micro-USB to USB Cable (Generic)
Micro-USB to USB Cable (Generic)
×1
5 mm LED: Yellow
5 mm LED: Yellow
×1

Software apps and online services

Bolt Cloud
Bolt IoT Bolt Cloud
Bolt IoT Android App
Bolt IoT Android App
Ubuntu
Ubuntu

Story

Read more

Schematics

Light monitoring system

Resistor connection between ground pin and A0 pon
LDR connection between 3V3 pin and A0 pin

Led controller

Smaller leg of Led connected ground pin and higher leg connected to one leg of resistor and another resistor pin connected to digital 0 pin.

Code

Light monitoring system

JavaScript
In bolt cloud I creat my product and link this with my device i.e. my bolt wifi module and creat my hardware circuit connections and software ware javascript coding language.
setChartLibrary('google-chart');
setChartTitle('gauge chart');
setChartType('gauge');
setAxisName('light_data');
setDimensions(400,400);
setMaxValue(1023);
setGreen(250,500);
setYellow(501,750);
plotChart('time_stamp','light');

Led controller

Python
In ubuntu server I connect my bolt wifi module using Device_id,Api_key and then using python3 programming language.
from boltiot import Bolt
api__key='ee300b1c-5dfc-4308-bc25-c9dd7e37f43b'
device__id='BOLT4628567'
response=mybolt.digitalWrite('0','HIGH')
PRINT(response)

Credits

Manotosh Howlader
1 project • 0 followers

Comments