Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by manojkl

  1. M

    Check the condition as well as run the function

    /** ****************************************************************************** * @file vr_sample_control_led.ino * @brief This file provides a demostration on how to control led by using VoiceRecognitionModule...
  2. M

    Check the condition as well as run the function

    hello I am trying to control 230V lamp brightness using a triac and zero crossing detector using voice recognition module.whenever i say something to voice module it takes that value and compare it with the stored value if it matches(using switch statement) then execute certain code,but the...
  3. M

    [PIC] Problem with displaying adc value in lcd

    I am taking adc value from a temperature sensor and displaying it on a lcd screen. the problem is that it takes the analog value and display double the actual value!! if temperature is 30°c it shows value as 60.why is tht! // LCD module connections sbit LCD_RS at RB4_bit; sbit LCD_EN at RB5_bit...
  4. M

    [PIC] Problem with displaying adc value in lcd

    [Moved] Problem with the Proteus I wrote a code for reading adc value from POT and displaying it in lcd but proteus showing it as Simulation not running in real time due to excessive cpu load code is // LCD module connections sbit LCD_RS at RB4_bit; sbit LCD_EN at RB5_bit; sbit LCD_D4 at...
  5. M

    [PIC] Problem with coding for "digital clock" (pic16f877a,20Mhz,LCD)

    LCD doesn't display the time! command to display variable in lcd? // LCD module connections sbit LCD_RS at RD2_bit; sbit LCD_EN at RD3_bit; sbit LCD_D4 at RD4_bit; sbit LCD_D5 at RD5_bit; sbit LCD_D6 at RD6_bit; sbit LCD_D7 at RD7_bit; sbit LCD_RS_Direction...
  6. M

    [PIC] Problem with identifiers!

    Changed the compiler.
  7. M

    [PIC] Problem with identifiers!

    Re: solved got it. Thk u :) :smile:
  8. M

    [PIC] Problem with identifiers!

    still got the error!! unsigned int adc; // Variable to save ADC value void main() // Start of Main function { CMCON = 0x07; // Disable Comparators ADCON1 = 0x80; // For ADC Module configuration TRISA = 0xFF; // PORTA is input (ADC Input)...
  9. M

    [PIC] Problem with identifiers!

    i am using pic16f877a.i wrote a simple code as below. getting a identifiers error for "CMCON" .help pls:) unsigned int temp_res; void main() { ADCON1 = 8; CMCON=0x07; // Configure other AN pins as digital I/O...

Part and Inventory Search

Back
Top