Posts by Ibrar Ayyub:
BeagleCore Releases Schematics And Gerbers
Posted on: 20 Apr 2017
In July of last year, we talked about the BeagleCore which is a miniature version of the BeagleBone Black. BeagleCore had a Kickstarter in the coming months, but were unable to reach their goal. But it looks like they kept on and have now released the two versions of the BeagleCore, including the gerbers(not the […]
Wye-delta Motor Controll For Basic PRO Compiler
Posted on: 20 Apr 2017
@ device pic16f877 define osc 4 define adc_bits 8 main: trisb =$00 trisa =$ff adcon1 = 7 K1 var portb.0 K2 var portb.1 K3 var portb.2 start var porta.0 stops var porta.1 K1=0 :K2=0:k3=0 while(1) if(!start and stops) then K1=1 K2=1 K3=0 pause 3000 repeat K1=1 K2=0 K3=1 until(!stops) endif K1=0 K2=0 K3=0 pause 10 […]
Microcontroller In Circuit Serial Programming (ICSP) with Microchip PIC
Posted on: 19 Apr 2017
In Circuit Serial Programming is a method of directly programming a Microchip PIC or Atmel AVR while in they are connected to a circuit, as opposed to programming the chip ahead, and only then soldering it to a circuit. There are many benefits to ICSP, but also some important design considerations which I will try […]
PIC based Oscilliscope
Posted on: 19 Apr 2017
I have seen many examples of microcontroller oscilliscopes on the web and have had an itch to build one myself. In order to accomplish this my initial thought is to sample an input (ADC) at consistant time increments and then display the waveform on a graphic lcd display. If I want to change the time […]
Digital clock ds1307 using PIC microcontroller
Posted on: 19 Apr 2017
Step 1: COMPONENTS REQUIRED 6 components needed : 1. Microcontroller (I have used AT89S52-8051 family), any programmable microcontroller can be used. 2.7 segment display 3.Crystal oscillator (12MHz) 4.Capacitor (10uF, 33pF/22pF) 5.LEDs 6.resistances (330 Ohm) 7.buzzer (piezo) 8.push switches And I’m not including soldering iron, wire, flux….. electricity !!! help me out 🙂 Step 2: Circuit Diagram This […]
Light Fidelity (Li-Fi)
Posted on: 19 Apr 2017
Light Fidelity (Li-Fi) is a bidirectional, high-speed and fully networked wireless communication technology similar to Wi-Fi. The term was coined by Harald Haas[1] and is a form of visible light communication and a subset of optical wireless communications (OWC) and could be a complement to RF communication (Wi-Fi or cellular networks), or even a replacement […]
Shift left – shift right value For Basic PRO Compiler
Posted on: 19 Apr 2017
@ device pic16f877 define osc 4 define adc_bits 8 main: trisb =$00 trisa =$ff adcon1 = 7 lamp var portb sw1 var porta.0 sw2 var porta.1 lamp=0 while(1) if(!sw1) then gosub speed1 pause 50 endif if(!sw2) then gosub speed2 pause 50 endif pause 10 wend end speed1: lamp =$80 pause 200 while(sw2) lamp = lamp […]
pic-microcontroller
Posted on: 18 Apr 2017
Home Alarm System PIC16F84A Alarm Clock Analog data recording and playback unit Animated LED Signboard Capacitance measurement Capaciter meter Christmas Light Flasher Microcontroller PIC16F877A is one of the PICMicro Family microcontroller which is popular at this moment, start from beginner until all professionals. Because very easy using PIC16F877A and use FLASH memory technology so that […]
MEASURING HEART RATE USING A PHOTOPLETHYSMOGRAPHIC CARDIOTACHOMETER
Posted on: 18 Apr 2017
ABSTRACT The heart rate is an important measure of health and physical fitness. Medical professionals rely heavily on the rate as a measure of health status and use it to prescribe treatment to individuals. Athletes value the heart rate highly as a tool for regulating frequency and intensity of workouts because the rate provides a […]
Sound frequency For Basic PRO Compiler
Posted on: 18 Apr 2017
@ device pic16f877 define osc 4 define adc_bits 8 main: trisb =$00 trisa =$ff adcon1 = 7 speaker var portb.0 sw1 var porta.0 flg_set var bit speaker =0 flg_set =0 while(1) if(!sw1) then pause 150 toggle flg_set while(!sw1):wend endif gosub sounds pause 10 wend end sounds: if(flg_set)then pause 10 sound speaker,[100,10]’100 =(1-127 generate frequency 78.74-10 […]