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 moad

  1. M

    controlling multiple servos on PIC16f877a Mikroc using timer/interrupt

    Hi all, I am trying to control 5 servos using 5 flex sensors. I have succesffuly controlled one servo using 1 flex now when i try to control two m finding it very difficult. can any one suggest any ideas as to why im getting this problem. code runs fine without any errors and the sensors work...
  2. M

    controling multiple servos by each flex sensor MikroC easypic v7

    Hi all, I am trying to control 5 servos using 5 flex sensors. I have succesffuly controlled one servo using 1 flex now when i try to control two m finding it very difficult. can any one suggest any ideas as to why im getting this problem. code runs fine without any errors and the sensors work...
  3. M

    [MOVED] light turns on when push button is pressed mikroc

    void main() { TRISA.F0=1; TRISC=0; PORTC=0; while (1){ if (PORTA.F0 == 1){ PORTC=1; delay_ms(1000); PORTC=0; } } } the above is a simple code to make all leds in portc to turn on when ra0 is pressed, unfortonately...
  4. M

    NEED HELP URGENTLY! flow meter that displays litres per hour

    for the past 2 week iv just started my first ever project to make a c program on the software called mikroc where i would get pulses in from the flow meter and calculate the flow rate of how much litres flows every hour which then outputs to the lcd, however, after using a timer of 100ms and an...
  5. M

    Need help with mikroc program that reads water flow meter.

    IS THIS BETTER? char array[17]; void main() { ADCON1 = 6; // Changes PORTA to digital CMCON = 7; // Disable analog comparators PORTA = 0; // Reset port A TRISA = 0xFF; // All portA pins are configured as inputs TRISB = 0; // All port B pins are configured as outputs PORTB = 0x0; // Reset port...
  6. M

    Need help with mikroc program that reads water flow meter.

    Awesome, never knew that!! i changed it and now im getting values but there are lots of zeros...:bang: link to image : https://obrazki.elektroda.pl/4171348600_1422625419.jpg is this better? :D void main() { volatile unsigned int value; char str [20]; double calc...
  7. M

    Need help with mikroc program that reads water flow meter.

    so which pin would be the best to connect to? sorry im just a beginner
  8. M

    Need help with mikroc program that reads water flow meter.

    hello, for the past week iv just started my first ever project to make a c program on the software called mikroc where i would get pulses in from the flow meter and calculate the flow rate of how much milliters flows every second which then outputs to the lcd, however, when i connected it to...

Part and Inventory Search

Back
Top