About: Ibrar Ayyub

Author Bio: I am an experienced technical writer with a background in computer science. I hold a Master's degree in computer science from BZU Multan University, one of the most reputable universities in Pakistan for computer science education. With my advanced degree and extensive experience in the field, I have a deep understanding of various computer science concepts and technologies. In addition to my expertise in computer science, I have a diverse range of experience in technical writing. I have written for various industries, covering a wide range of topics, including engineering, home automation, and more. My ability to communicate complex technical information in a clear and concise manner has made me a valuable asset to many organizations. My writing style is characterized by its clarity and simplicity. I am able to break down complex concepts and explain them in a way that is easy to understand for readers with different levels of technical knowledge. I am also skilled in using various forms of media, such as infographics and diagrams, to make my writing more engaging and interactive. I have a special interest and expertise in home automation and engineering; I have written several articles and research papers on the topic and am well known in the field. My writing on home automation and engineering is informative, accurate, and reliable, providing valuable insights on the latest technologies and trends in the field. Overall, I am an experienced technical writer who can provide valuable insights and information for various fields of life, mainly home automation and engineering. I have the qualifications and experience to write about a wide range of topics, and my writing style is clear, simple, and engaging. I am an asset to any organization that requires technical writing services.
Upwork: upwork.com/freelancers/~0195c6d2cf6594198f
Follow Us:
Linkedin Twitter
Blogs:
wisetechcenter.com
atmega32-avr.com
duino4projects.com
projects-raspberry.com

Posts by Ibrar Ayyub:

UK firm uses LED array to print electronics

Posted on: 12 May 2017

A Coventry-based company which develops digital printing systems used in high resolution photographic printing believes the system has the resolution to print electronic circuits. LumeJet, a spin-out from Warwick University, developed a three-colour RGB digital print head which is used in an inkless digital photographic printer. The company plans to use the printing technology for […]


New Device Measures Stress Levels Using Smartphones

Posted on: 12 May 2017

Researchers have developed a device that uses your smartphone to monitor your stress levels. The device can use any smartphone to measure the cortisol concentration in saliva in less than 10 minutes, researchers said. “We have developed a method for measuring cortisol in saliva using a smartphone and a disposable test strip. This innovation enables […]


Using Push Button Switch – MPLAB XC8

Posted on: 12 May 2017

I hope that you already go through the first tutorial of MPLAB XC8, Getting Started with MPLAB XC8 – LED Blinking. In that tutorial we learn how to use an output pin by driving an LED. In this we will learn how to read an Input pin using a push button switch. We already seen […]


LED Strobe for PIC12F629

Posted on: 12 May 2017

Description This project functions as a simple strobe for driving an LED.  The use of an output transistor allows it to pulse the strobe LED with a current up to 100mA. Four jumpers provide options for changing the pulse width, strobe repeat interval and single or double strobe flash.  The programmer ready code has default […]


LG Innotek Develops Ultra Slim Optical Bio Sensor Module

Posted on: 11 May 2017

Seoul, Korea, Feb 16th, 2016 – LG Innotek, a leading global components and materials manufacturer, announced the development of an ultra slim optical bio sensor module with the world class level of performance. The optical bio sensor module is mainly adopted wearable devices and smartphones to measure heart rates, stress indices, and oxygen saturation levels. […]


Digital Thermometer using PIC Microcontroller and LM35 Temperature Sensor

Posted on: 11 May 2017

Thermometer can be easily constructed using a PIC Microcontroller and LM35 Temperature Sensor. LM35 series is a low cost and precision Integrated Circuit Temperature Sensor whose output voltage is proportional to Centigrade temperature scale. Thus LM35 has an advantage over other temperature sensors calibrated in Kelvin as the users don’t require subtraction of large constant voltage to obtain […]


Low Power ESP8266 – Sleeping at 78 micro Amps

Posted on: 11 May 2017

I recently bumped into NodeMCU firmware for the ESP8266. It’s an Lua interpreter, making tinkering with IoT ideas really simple. Just flash the firmware onto the ESP8266 and connect via serial console. You can start prototyping right away using the interactive Lua interpreter. You can easily persist your ideas on a simple flash file system. […]


Output Blink port For CSS Compiler

Posted on: 10 May 2017

#include <16F877.h> #device adc=8 #FUSES NOWDT ,XT #use delay(clock=4000000) void main() { set_tris_b(0x00); setup_adc_ports(NO_ANALOGS); setup_adc(ADC_OFF); output_b(0x00); while(true){ output_b(0xff); delay_ms(500); output_b(0x00); delay_ms(500); } }


UP/DOWN counter with memory

Posted on: 10 May 2017

This is a simple digital counter with a serial rs-232 and a 7 segment display, i started this project to count items on some shelfs, but it can be used for anything, it is also, for the exception of the connectors, completely on SMD components. The circuit is made around a PIC16F88, and takes use […]


Programmable relay switch using PIC MCU (revised version)

Posted on: 10 May 2017

Programmable relays are key elements in numerous automation applications such as automatic street light control, watering and pump control, HVAC, home automation, power plants automation in industries, etc. This article describes a DIY programmable relay switch using PIC16F1847 (PIC16F628A can also be used) microcontroller. It is a revised version of my previous PIC-based relay timer project with added […]