Friday, October 24, 2014

More Fun with HM 10

I got more curious about how to use the HM 10 BLE(Bluetooth low energy) module and asked myself if it will really be able to pair with arduino and instruct the arduino to do some tasks via an android phone. So did some research if anyone from the internet has posted similar project and I was so lucky that I found one that I thought is easy and would simply answer my question.

The original post can be found through this link: Control RGB lights from Android with Arduino & Bluetooth LE (BLE)

Aside from following the processes exactly as described in the article, I also did some twist to adapt it to what is available in my chest. The first thing I did is to deactivate the ibeacon function by issuing the following AT command:
AT+IBEA0
To check whether ibeacon function is activated or not, this AT command is used:
AT+IBEA? 
HM-10 will respond: OK Get 1|0

Ibeacon is activated if it returns 1 and deactivated when it returns 0.

Here are the materials and components I used:
1. HM10 BLE module
2. Arduino Pro Mini 8Mhz and 3.3V
3. Dupont wires
4. The RS232-TTL Adaptor that I used to upload sketch on the Pro Mini
5. Li-Poly Battery
6. BreadBoard

I will still be using the same connection just like what I did in my previous testing of HM-10 and was described in detail in my previous post. If you haven't read it yet, you may click on this link: HM10 BLE Module with Ibeacon .

With that set-up, all I need is to upload the sketch as described in the reference article but since I don't have an RGB LED, I could just use the LED in the arduino pro mini which is connected to digital pin 13. Digital pin 13 is not a PWM pin so I can only turn it on or off and not able to dim it.

I also downloaded the android app in the reference article and installed on my android phone.

Test Result:
It was awesome!!!

Here's the video of my testing:

This is the sketch that I used:
#include <SoftwareSerial.h> 
int bluetoothTx = 3;  // TX-O pin of bluetooth mate, Arduino D2
int bluetoothRx = 2;  // RX-I pin of bluetooth mate, Arduino D3
SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);
const int redPin = 13;
 const int greenPin = 5;
 const int bluePin = 6;
void setup() {
   // initialize serial:
   Serial.begin(9600);
   // make the pins outputs:
   pinMode(redPin, OUTPUT);
   pinMode(greenPin, OUTPUT);
   pinMode(bluePin, OUTPUT);
  bluetooth.begin(115200);  // The Bluetooth Mate defaults to 115200bps
  delay(100);  // Short delay, wait for the Mate to send back CMD
  bluetooth.println("U,9600,N");  // Temporarily Change the baudrate to 9600, no parity
  // 115200 can be too fast at times for NewSoftSerial to relay the data reliably
  bluetooth.begin(9600);
}
void loop() {
   // if there's any serial available, read it:
  
     if(bluetooth.available())  // If the bluetooth sent any characters
  {
  while (bluetooth.available() > 0) {
     // look for the next valid integer in the incoming serial stream:
     int red = bluetooth.parseInt();
     // do it again:
     int green = bluetooth.parseInt();
     // do it again:
     int blue = bluetooth.parseInt();
     // look for the newline. That's the end of your
     // sentence:
     if (bluetooth.read() == '\n') {
       // constrain the values to 0 - 255 and invert
       // if you're using a common-cathode LED, just use "constrain(color, 0, 255);"
       red = 255 - constrain(red, 0, 255);
       green = 255 - constrain(green, 0, 255);
       blue = 255 - constrain(blue, 0, 255);
       // fade the red, green, and blue legs of the LED:
       analogWrite(redPin, red);
       analogWrite(greenPin, green);
       analogWrite(bluePin, blue); 
 }
 }
}
}

I am still using the software serial library because that was my previous setup and I wanted to use the original serial port to communicate with the pc when ever it is needed or necessary.

Saturday, October 18, 2014

HM10 BLE Module with Ibeacon

Upon learning that somebody has just posted a HM10 BLE module at olx.ph, I immediately contacted the seller and bought 1 for my testing. HM-10 is not only just a Bluetooth low energy(ble) module but can be used as ibeacon as well.

It is so easy to use and adding an arduino is very easy. I used the following circuit diagram and it just so happened that my arduino pro mini is a 3.3V 8mhz which is just perfect for the HM-10.


I also bought a small lipoly battery(580mah) just to do some experiments on how much time it will take before hm-10 can drain the battery.

Here are some pictures of my setup:




 

As usual, I could have never done the soldering part without the help of my cellphone technician friend.

During my testing, the battery with 1 hour of charging could last up to 1 day, that is just probably at 15% charging, so may take a week when fully charged.

I used the following sketch to test the HM-10 Module with arduino:
#include <SoftwareSerial.h> 
int bluetoothTx = 2;  // TX-O pin of bluetooth mate, Arduino D2
int bluetoothRx = 3;  // RX-I pin of bluetooth mate, Arduino D3
SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);
void setup()
{
  Serial.begin(9600);  // Begin the serial monitor at 9600bps
  bluetooth.begin(115200);  // The Bluetooth Mate defaults to 115200bps
  delay(100);  // Short delay, wait for the Mate to send back CMD
  bluetooth.println("U,9600,N");  // Temporarily Change the baudrate to 9600, no parity
  // 115200 can be too fast at times for NewSoftSerial to relay the data reliably
  bluetooth.begin(9600);  // Start bluetooth serial at 9600
}
void loop()
{
  if(bluetooth.available())  // If the bluetooth sent any characters
  {
    // Send any characters the bluetooth prints to the serial monitor
    Serial.print((char)bluetooth.read()); 
  }
  if(Serial.available())  // If stuff was typed in the serial monitor
  {
    // Send any characters the Serial monitor prints to the bluetooth
    bluetooth.print((char)Serial.read());
  }
  // and loop forever and ever!
}

To test the sketch,  just open the serial monitor of the arduino IDE and type in "AT" at the text box then press the "send" button. If the HM-10 is connected properly, it will respond "OK". All AT commands are available at the datasheet which can be easily found on the internet.

I also tested the transmission range if it can reach 100meters, and here's the result on my android phone:

It was able to reach 125.5meters.

I am very satisfied with the results of my testing and this is really one of the best Ibeacons that is on sale at olx. But for some other purposes, like when you just need simple ibeacon apps that are short range these ibeacons can be very useful too:

Monday, October 6, 2014

Just another Ibeacon App Idea

You can not just let chance get you find it. I am quite sure that it is but natural to find or look for someone that is very much compatible to you somewhere. And you can increase further the probability of finding that someone with technology and perhaps ibeacon with a nice app for this purpose could be the best answer.

The Hardware
The hardware need not be expensive, find an ibeacon and configure it to describe your self. This is done by just renaming your personal ibeacon with your name. And of course a phone capable of receiving ibeacon signals. If you still don't have a pc, you can go to an internet cafe or you may use your phone as well.

The Software
An android or IOS app must not only be obviously installed in your phone but must also be installed in that special someone's phone in order for him or her to receive your message ans so do you. So the app must be opened all the time and the phone must be connected to the internet. If ever you get near that someone, the app will alert you and he/she as well. The alert should be like your picture should appear on his/her phone with 3 buttons that should allow both of you to either just ignore the alert, invite for a short chit chat, or just send a message.

This is a social networking app so there must be a website where you have registered and uploaded your picture and some personal information, the description of your special someone. The latter is very important because the android app will use it as basis for locating that special someone.

Someone can be very dishonest about their preferences so perhaps the web based application would use data mining to increase the accuracy of matching the perfect someone that you are looking for.

Saturday, September 6, 2014

Affordable Phones for iBeacons

A few months ago, ibeacons signals can be received by a few high end smartphones like the samsung galaxy 5s and iphone 5s. But now, even those smart phones costing below Php5000.00 are now fully equipped with the latest hardware and software enabling them to receive ibeacon signals. The LG L40 is the one I am testing right now.


I downloaded an app that will confirm if this smartphone is capable of receiving ibeacon signal and yes, it really can.


Tuesday, June 24, 2014

Fully Automated Toll Road with Ibeacons

Toll road projects is a big hit in the Philippines because it prevents people from constructing various commercial buildings along the roadside and provides an almost very convenient long distance driving but I think this is not true all the time. With huge number of vehicles of all sizes, there are times(especially during holidays when people go to their respective provinces)when these toll roads experience monstrous traffic gridlock and this goes on for almost a day. I could not imagine how I will be spending the whole day and night on the road!

 Here's a quote from a famous columnist(read the full article here):
Secondly, the tollgates at exit points simply cannot possibly serve the huge volume of vehicles even over a 48-hour period. The waiting time to pass through exit tollgates was as long as 45 minutes each time. (Traveling through the 3 expressways today means having to pay through 3 exit toll stations).
The columnist identified what has caused that monstrous traffic jam and that is the huge number of vehicles that could not be served by the toll plaza even on an over 48-hour period. But I think, this could have been avoided if 100% of these vehicles were equipped with ibeacons. And an app could have been developed to automatically deduct the toll fee right after the vehicle entered the toll road zone.

Ibeacons can be used not just to collect toll fees, it can also be used to monitor the speed of each vehicle. And the best part of it all is the erasure of the human factor that may also have caused that problem. Just imagine how you can enjoy travelling the whole year round with the beautiful view of the countryside as your background. This really should make life a lot pleasurable and enjoyable which is the main goal and motivation of every inventor.

Here a sample view at TPLEX(Tarlac-Pangasinan-La Union):


Sunday, June 22, 2014

Miniaturized Arm Based Arduinos

For electronics projects where space and size really matters, a miniaturized arm based arduinos can be an excellent solution as it will definitely speed up development efforts especially during prototyping stage. My previous post which was about miniaturized arduinos does not offer much because those were just small arduino uno. What most hobbyist want and I would say an ideal tiny development board should at least be 40Mhz with huge rams and eeproms.

So I tried to search the web again to find arduinos having the above mentioned specs and to my surprise, I only found 1 and another tiny board almost qualified but then it is worth mentioning because of it unique features and it's a little bit more powerful than an ordinary arduino.

Teensy 3.1 is a small and is definitely a miniaturized arm based arduino. It uses the powerful MK20DX256 32 bit ARM Cortex-M4 72 MHz microcontroller and can be program in the arduino ide. The only feature that did not met my requirement is the small eeprom which is the standard 2kb, the manufacturer should have at least inluded an external eeprom ic to compensate for this lackness but overall, the teensy 3.1 will enable hobbyists develop a wide range of small but very powerful devices.
The other arm based arduino is small but is only 16Mhz (that's why it did not qualified) is the rfduino. What is nice about this tiny arduino module is having a bluetooth low energy module on board, this can also be used as an alternative ibeacon device or can be programmed to recieve ibeacon data. enablng other non-ble equipped devices to have the latest hardware in the market.



Thursday, June 19, 2014

My Mobile Application Idea using Ibeacons

Micro location devices such as ibeacons are getting the right attention nowadays because these devices can truly make huge events in a large venue interactive making the event more organized and more enjoyable.Still, quite a number of people still don't know what ibeacons can do and what it can do to help them save time or enhance their experience.

Currently, a lot of new app design ideas have been coming out and I would like to share mine. I am not an expert in mobile app development but I think the concept is viable and can really help people who loves shopping or going out to buy some hard to find items.

Here's my idea:
  1. Before I go out of the house, I will list down the items I am going to buy on the app.
  2. I proceed to the mall where each shop has active ibeacons.
  3. While I am inside the mall, I open the app showing the list I created.
  4. I click on an item and immediately, the app will tell me which shop sells the item.
  5. I click the shop that sells the item to give me the exact location and tells me if there is an on going sales discounts or they're giving away freebies.
  6. Assuming it is so far away, so I will just send a message to the shop owner to just send the product to my current location and I will just click the "pay" button to pay for the product using my paypal.
  7. I will just wait for the product to be delivered while enjoying a cup of coffee.
The list are just high level outline of my idea, if I would dig a little deeper into the features, I would probably add these items into the list:
  • The list of enumerated shops must include the selling price so I could decide immediately from which shop should I buy. 
  • The search algorithm I would use in determining which shop sells the item is keyword based. But it would be a lot simpler if I would tell all the shop owners to have similar product code. For example, I intend to buy a laptop which has i7 octacore cpu, ips touch screen of at least 11". I would also include my budget and ideal casing. The app should use the keywords "i7 octacore cpu" "ips touch screen" and 11".
  • If I click on a product, it would show the typical brochure-like screen filled with useful information and at the button several widgets that shows the related items, the "people who bought this item also bought the following items", reviews and feed backs.  

With this app, I don't have to go each and every shop just to ask them if they have the item I am looking for.
This app can really be very helpful especially when you have a project and you will start looking for the components you need and shops are located far from each other and not to mention the extremely humid weather.