Tutorials

Stepping Motor Control For CSS Compiler

#include <16F877.h> #fuses XT,NOLVP,NOWDT,NOPROTECT #use delay(clock = 4000000) #use fast_io(A) #use fast_io(B) byte num[5] = {0x00,0x01,0x02,0x04,0x08}; int8 disp,i; void Forward(){ for(i=0; i<=4;i++){ disp =num[i]; output_b(disp); delay_ms(200); } } void Backward(){ for(i=4;i>0;i–){ disp =num[i]; output_b(disp); delay_ms(200); } } void Stop(){ disp =0; output_b(disp); delay_ms(50); } void main(){ setup_adc(adc_off); set_tris_a(0xFF); set_tris_b(0B00000000); stop(); while(true){ if(!input(pin_a0)){ do{ Forward(); } […]

Stepping Motor Control For CSS Compiler Read More »

pic microcontrollers ebook

PIC Microcontrollers by Milan Verle

Introduction to the World of microcontrollers The situation we find ourselves today in the field of microcontrollers had its beginnings in the development of technology of integrated circuits. This development has enabled us to store hundreds of thousands of transistors into one chip. That was a precondition for the manufacture of microprocessors. The first computers

PIC Microcontrollers by Milan Verle Read More »

PROTON IDE TUTORIAL

PROTON IDE TUTORIAL PROTON COMPILER EXAMPLE

Proton PIC Programming Examples and Circuits for Beginners These Proton PIC programming examples provide a practical starting point for beginners learning PIC microcontroller programming with Proton BASIC. The collection covers common microcontroller tasks such as reading sensors, controlling displays, using communication protocols, managing timers, and driving motors. Instead of learning only programming syntax, these examples

PROTON IDE TUTORIAL PROTON COMPILER EXAMPLE Read More »

photo viewer

EasyEDA features for Schematic and PCB design

EasyEDA is a unique cloud-based EDA tool, designed to give electrical/electronic engineers, educators, engineering students and electronics hobbyists an easier EDA Experience. The objective of this cloud based circuit design tool is to help designers move from idea to manufactured prototype by providing comprehensive data and collaboration tools for electronic design. It is suitable for all

EasyEDA features for Schematic and PCB design Read More »

I2C bus for 24LC16 For CSS Compiler

  #include <16F877.h> #device adc=8 #FUSES NOWDT ,XT #use delay(clock=4000000) #use i2c(Master,Fast,sda=PIN_C4,scl=PIN_C3) #INCLUDE “LCD_4BIT.C” #include “I2C_24LCxx.c ” int8 value,setpoint=112; void main(){ setup_adc_ports(NO_ANALOGS); setup_adc(ADC_OFF); setup_psp(PSP_DISABLED); setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1); setup_timer_1(T1_DISABLED); setup_timer_2(T2_DISABLED,0,1); set_tris_c(0B10000000); // 1000 0000 PortC set_tris_d(0B00000000); // 0000 0000 Portd is Output lcd_init(); Write_eeprom_24LCxx(0x01,setpoint); lcd_init(); lcd_ROW_COL(1,0); // defind ddram address for put string lcd_putc(” KCHI_MICRO.PIC”); lcd_ROW_COL(2,0); lcd_putc(“READ EEPROM

I2C bus for 24LC16 For CSS Compiler Read More »

Shift left – shift right value For CSS Compiler

#include <16F877.h> #device adc=8 #FUSES NOWDT ,XT #use delay(clock=4000000) int8 x,k; void main() { setup_adc_ports(NO_ANALOGS); setup_adc(ADC_OFF); setup_psp(PSP_DISABLED); setup_spi(SPI_SS_DISABLED); setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1); setup_timer_1(T1_DISABLED); setup_timer_2(T2_DISABLED,0,1); set_tris_b(0x00); output_b(0); k=0; x=0x01; while(true) { for(k=0;k<=7;++k){ output_b (x); delay_ms(150); shift_left(&x,1,0); } x = 0x80; k = 0; for(k=0;k<=7;++k){ output_b (x); delay_ms(150); shift_right(&x,1,0); } x = 0x01; k = 0; } }

Shift left – shift right value For CSS Compiler Read More »

PIC Microcontroller Unit PIC16F877A

PIC Microcontroller Unit(PIC16F877A)

A Project entitled “PIC Microcontroller Unit” presented by Quezon City Polytechnic University (QCPU), Fourth year students of Bachelor of Science in Information Technology (BSIT), Major in Computer Technology. For the elecytive subject of “MIcroprocessor”. Submitted by Group number two(2) and to be submitted to Professor Ambito. For School Year 2012-2013, Second Semester. Group Members: Graellos

PIC Microcontroller Unit(PIC16F877A) Read More »