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 buzzed

  1. B

    How to Increment count on 16x2LCD display?

    @KlausST you said where the where, why and how button is set to 1 and I showed that portion and now u are saying ....
  2. B

    How to Increment count on 16x2LCD display?

    @KlausST button is set to 1 as: unsigned char before_opsw_id; void switich_in(void) { unsigned char opsw_id; opsw_id = op_swin_1d(); if (opsw_id == before_opsw_id){ if ((opsw_id & 0x01) == 0) button = 1; } before_opsw_id = opsw_id...
  3. B

    How to Increment count on 16x2LCD display?

    @KlausST when the variable button is called as : if (button == 1) { //when button is on temp=counter++; //counter value is incremented lcd_dout(temp); //data is send to display button = 0...
  4. B

    How to Increment count on 16x2LCD display?

    @doraemon I displayed only the relevant part to the push button. As I already mention the button is set in another function, and sorry for the part of [dsp_buf]=[n], also TITL[], I have edited just. lcd_dout()function is for converting characters to the ASCII part. The DIsplay is displaying...
  5. B

    How to Increment count on 16x2LCD display?

    @KlausST in the code pushbutton, the button is set to 1. and I have already displayed the character by converting each to ASCII and now, I want to increase those numbers.
  6. B

    How to Increment count on 16x2LCD display?

    I want to increment a counter for Line2 and display it on LCD when the pushbutton is pressed. It displays correctly, but when I press the button it shows different characters like this(||). When I place a cursor to the 9 of Line2 and pressed the button it displays symbol(||). Code to display...
  7. B

    Button click performs all function without pressing second press, third press?

    @Ric I wrote this modef ==0; to off the switch, so that new press can be read by the button.
  8. B

    Button click performs all function without pressing second press, third press?

    @doraemon, at the present situation I cannot try with LED, and I have tried using the breakpoint but also I am not being able to stop the button press. I have called the function in the main function as : void main_loop(void) { while (1) { /* Panel...
  9. B

    Button click performs all function without pressing second press, third press?

    @FenTrac I have tried using this also, but it executes all the code: void switich_1(void) { count = 0; if (modef == 1){ // button is pressed if (count == 0) {...
  10. B

    Button click performs all function without pressing second press, third press?

    As shown in the program above I have just intilialize the count and use it for each button to press second and third times.
  11. B

    Button click performs all function without pressing second press, third press?

    I have connected a button to the 8085 microcontrollers and I want that button to perform different functions when pressed again and again. But now when I pressed it executes all the functions pressing only once. void switich_1(void) { count = 0; if (modef == 1){...

Part and Inventory Search

Back
Top