Skip to main content

Home Automation using Bluno Beetle BLE and Blynk App

by Amritmanhas8

I have been waiting to put some article about Bluno Beetle BLE board which, I bought from RS components. It's a cute little board, which is very useful in applications like affordable home automation, industrial automation over a short range.

ble_0ecc117117e3fdb09e2b36519f8ea2a84213e7a6.jpg

Inspiration

To make a low budget home automation system for people to use in day to day life.

Project video

Material Required

Bluno Beetle BLE
Relay 5v
Blynk App

The Code

#define BLYNK_PRINT DebugSerial
#include <SoftwareSerial.h>
SoftwareSerial DebugSerial(0, 1); // RX, TX
#include <BlynkSimpleStream.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "f64628c5c90c46d9bfaf4c9e15799683";
void setup()
{
  // Debug console
  DebugSerial.begin(9600);
  // Blynk will work through Serial
  // Do not read or write this serial manually in your sketch
  Serial.begin(9600);
  Blynk.begin(Serial, auth);
}
void loop()
{
  Blynk.run();
}

Project images

20170801_203858_050158eeaf3a567e6c349b84c38ece5d4ebdac41.jpg

20170801_204041_6c6d5a003862d3adb0faaf8ba2bda39c349ccfa8.jpg

This person is no longer a member and their bio is unavailable
DesignSpark Logo

Enjoying DesignSpark?

Create an account to unlock powerful PCB and 3D Mechanical design software, collaborate in our forums, and download over a million free 3D models, schematics, and footprints.
Create an account

Already a DesignSpark member? Log In

Comments