Saturday, 5 November 2016

Satellite weather image captured today.

Today was able to capture following weather images form US weather satellite NOVA-19. NOVA 19 was in SL range aroung 3.00PMIST. I was using my Batapola TV antenna as receiver.

First image was the thermal image witch help us to understand the temperature. The secound image is the cloud movement.

I am not a professional weather forecaster but it seems Colombo will get more rain these days.



Tuesday, 25 October 2016

My Temperature, LPG, Alcohol and Smoke Detector


This is my Temperature, LPG, Alcohol and Smoke Detector.  This unit can detect LPG leak (Housesoled/Cooking GAS) and update back end via WiFi and cut down electricity power in order to minimize potential fire. Also it send alerts (SMS/Email) and sound alarm





Saturday, 8 October 2016

Finally My Prototype Ready for Production

MY Smart Switch Prototype is now ready for Production. I have included self sufficient power supplier witch help my Smart switch to operate with out external power. It also have WIFI and IR witch enable it to be operated form either WEB or via remote control. This module requires 3,3V 2A DC power for WIFI and 5V 1A for normal operations. However user should not worry about providing external power where it has AC to DC built in converter witch powers both 3.3V and 5V. 




Finally My Prototype Ready for Production

MY Smart Switch Prototype is now ready for Production. I have included self sufficient power supplier witch help my Smart switch to operate with out external power. It also have WIFI and IR witch enable it to be operated form either WEB or via remote control. This module requires 3,3V 2A DC power for WIFI and 5V 1A for normal operations. However user should not worry about providing external power where it has AC to DC built in converter witch powers both 3.3V and 5V. 




Finally My Prototype Ready for Production

MY Smart Switch Prototype is now ready for Production. I have included self sufficient power supplier witch help my Smart switch to operate with out external power. It also have WIFI and IR witch enable it to be operated form either WEB or via remote control. This module requires 3,3V 2A DC power for WIFI and 5V 1A for normal operations. However user should not worry about providing external power where it has AC to DC built in converter witch powers both 3.3V and 5V. 




Finally My Prototype Ready for Production

MY Smart Switch Prototype is now ready for Production. I have included self sufficient power supplier witch help my Smart switch to operate with out external power. It also have WIFI and IR witch enable it to be operated form either WEB or via remote control. This module requires 3,3V 2A DC power for WIFI and 5V 1A for normal operations. However user should not worry about providing external power where it has AC to DC built in converter witch powers both 3.3V and 5V. 




Thursday, 22 September 2016

Prototype 2 - Sucess




Prototype 2 was a success. Hardware module so small it can be easily mounted on existing wall sockets.  This module works with any WiFi network and you can control your items such as TV, Lights, etc via any web browser.



Tuesday, 20 September 2016

Prototype 2 - Integrate my AC controller in side power switch to make the Switch Intelligent

My previous prototype was success. I am planing to move to the next stage where build this module inside the power switch witch will enable Intelligent capability.



I am planing to install power analyzer so I can save electisity using this model. For example: Say this power base is connected to a Refrigerator or Air conditioner witch actually 60% of average electricity bill. Now I can switch off or control AC power based on the actual power utilization witch I believe big save.

Just created the PCB and successfully installed the unit in side power switch. Now working on the software, Hopefully can start live test next week. Then I will publish the design. 

Wednesday, 14 September 2016

Control 230V AC circuit via GSM (SMS or Voice)

Following is my prototype of control 230V AC circuit via GSM (SMS or Voice). This video shows AC 230 bulb can be switch on and off via SMS.

For this project I use Arduino mini pro micro controller, SIM900 GSM/GPS module and  5V to 250V relay.  Following are circuit design. This design use two layers and you need to use double side copper board. With this design I am using 16X2 LCD as display unit. You can ignore it if you want.







Friday, 2 September 2016

Satellite Weather Images of Sri Lanka - From My Weather Center

Satellite Name: NOAA 19 Weather Satellite
Date: 2 September 2016
Time: 15:18 IST





Satellite Name: NOAA 19 Weather Satellite
Date: 1 September 2016
Time: 15:01 IST












Wednesday, 3 February 2016

Senuji V001.005 Released









Senuji new release (V001.005) has some defect fixes and performance improvements.  Main change of this release is support Safari browser for OSx. If you planed to use Safari browser in OSx then you need to install Safari web driver plugin to your browser.

You can download version 001.005 from http://sourceforge.net/projects/senuji-web-testing-framework/files/?source=navbar

Wednesday, 20 January 2016

Video Demo 4 Test Suite

How to create test suite using Senuji and add tests to the suite and execute them as one project. 


Sunday, 17 January 2016

Senuji Build Structure Change

We have decided to move with one build for Windows, Linux and OSx. Therefore we will be discontinuing separate releases for OS wise from upcoming release Version 001.005. Setting up procedure will be the same.

Wednesday, 13 January 2016

Video Demo 3 - Senuji Data Loops Until EOF csv file

Video Demo 3 - Senuji Data Loops Until EOF csv file




Following is the sample Senuji test script used for this demo
Open "https://www.google.lk/"
WaitForElementPresent "null" "Xpath:.//*[@id='lst-ib']"
Loop "Test.csv"
ClearTextBoxValue "null" "Xpath:.//*[@id='lst-ib']"
DataInput "1" "Xpath:.//*[@id='lst-ib']"
Click "null" "Xpath:.//*[@id='sblsbb']/button"
CaptureScreen
EndLoop






Tuesday, 12 January 2016

Video Demo 2 - Using user defined variables



Introduction

This demo will demonstrate how to use Senuji user define variables. For demo purpose I am going to open my Facebook sign in page and read my name form a label and store it to a variable. Then open Google and pass said variable value to Google search text box.
 


Senuji Script I used for this demo

Open "https://www.facebook.com/erandika.umal"
VariableSring "$MyName="
StoreStringToVariable "$MyName" "Xpath:.//*[@id='fb-timeline-cover-name']"
NavigateURL "https://www.google.lk"
WaitForElementPresent "null" "Xpath:.//*[@id='lst-ib']"
InputStringVariableToTextbox "$MyName" "Xpath:.//*[@id='lst-ib']"

Video Demo 1 - How to create and execute Senuji test script


How you can create a Senuji test script and execute it on Senuji IDE. Sometime I am explaining how to understand Senuji test log or test report.

This demo will help you to understand that, Senuji can create and execute Selenium test case without Java programming knowledge.