I want to connect Bluetooth module in my nodemcu, I am currently using blynk app for my iot project my question is can I combine the Bluetooth codes in my iot codes?
You can use a bluetooth module with nodemcu for your projects, but please tell your project requirements, so that we can recommend a suitable solution for that.
In reply to Yes you can use but tell your requirements by Debasis Parida
The requirements are nodemcu, Bluetooth module. my relay is connected in my nodemcu and I'm currently controlling it in my blynk app, I just want to connect the Bluetooth module in my nodemcu to control relay using Bluetooth terminal app my problem is where should I put the code for Bluetooth.
Here's my code in blynk
#define BLYNK_PRINT Serial
#include
#include
char auth[] = "xxxxxxx";
char ssid[] = "xxxxxxx";
char pass[] = "xxxxxxx";
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pwd);
}
void loop()
{
Blynk.run();
}
Sourav Gupta
Joined February 12, 2018 696Monday at 02:11 PM
What is your planning?