BShaniuno Application icon

BShaniuno 1.0

1.5 MB / 0+ Downloads / Rating 5.0 - 1 reviews


See previous versions

BShaniuno, developed and published by GETCO RnD, has released its latest version, 1.0, on 2017-12-19. This app falls under the Tools category on the Google Play Store and has achieved over 10 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

BShaniuno APK available on this page is compatible with all Android devices that meet the required specifications (Android 1.6+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: appinventor.ai_Shanjedul.BShaniuno

Updated: 7 years ago

Developer Name: GETCO RnD

Category: Tools

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing BShaniuno on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Previous Versions

BShaniuno 1.0
2017-12-19 / 1.5 MB / Android 1.6+

About this app

This is android apps to control Three switches or relay with Arduino board. This is a simple example app to control anything. We give with code to operate and make a tutorial to use and learn about Android and Arduino Bluetooth communication. arduino code:-

---------------------------------------------------------------------------------------------------------------------------------------
char blueToothVal; //value sent over via bluetooth
char lastValue; //stores last state of device (on/off)
int led = 3;
int ledone = 5;
int ledtwo = 6;

void setup()
{
Serial.begin(9600);
pinMode(led,OUTPUT);
pinMode(ledone, OUTPUT);
pinMode(ledtwo, OUTPUT);
}


void loop()
{
if(Serial.available())
{//if there is data being recieved
blueToothVal=Serial.read(); //read it
}
if (blueToothVal=='n')
{//if value from bluetooth serial is n
digitalWrite(led,HIGH); //switch on LED
if (lastValue!='n')
Serial.println(F("LED is on")); //print LED is on
lastValue=blueToothVal;
}
else if (blueToothVal=='f')
{//if value from bluetooth serial is n
digitalWrite(led,LOW); //turn off LED
if (lastValue!='f')
Serial.println(F("LED is off")); //print LED is on
lastValue=blueToothVal;
}

if (blueToothVal=='a')
{//if value from bluetooth serial is n
digitalWrite(ledone,HIGH); //switch on LED
if (lastValue!='a')
Serial.println(F("ledone is on")); //print LED is on
lastValue=blueToothVal;
}
else if (blueToothVal=='b')
{//if value from bluetooth serial is n
digitalWrite(ledone,LOW); //turn off LED
if (lastValue!='b')
Serial.println(F("ledone is off")); //print LED is on
lastValue=blueToothVal;
}


if (blueToothVal=='c')
{//if value from bluetooth serial is n
digitalWrite(ledtwo,HIGH); //switch on LED
if (lastValue!='c')
Serial.println(F("ledtwo is on")); //print LED is on
lastValue=blueToothVal;
}
else if (blueToothVal=='d')
{//if value from bluetooth serial is n
digitalWrite(ledtwo,LOW); //turn off LED
if (lastValue!='d')
Serial.println(F("ledtwo is off")); //print LED is on
lastValue=blueToothVal;
}

delay(1000);
}
---------------------------------------------------------------------------------------------------------------------------------------

Want to know more and with
Bangla tutorial...
Visit.... http://workitbd.com/bshaniuno/ or http://workitbd.com/page.php?86

App Permissions

Allows applications to connect to paired bluetooth devices.
Allows applications to open network sockets.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.