Search Results - MEL PICBASIC Forum


Search:

Type: Posts; User: abidr; Keyword(s):

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    7,364

    You need to look at the PIC16F877A data sheet...

    You need to look at the PIC16F877A data sheet page 51 which says that port D is a parallel Slave Port.
    I think you need to disable the PSP.
  2. Replies
    10
    Views
    7,364

    I'd rather code the button to debounce something...

    I'd rather code the button to debounce something like below:
    CHECK_PB:
    IF PB = 0 THEN DEBOUNCE_PB
    RETURN

    DEBOUNCE_PB:
    PAUSEUS 200
    IF PB = 0 THEN...
  3. Replies
    5
    Views
    10,080

    If you look at elektor issues like Nov 2001, and...

    If you look at elektor issues like Nov 2001, and dec 2001, you ll find a very good power supply around PIC and all sourcecodes included in Basic.
  4. Replies
    33
    Views
    54,573

    Ioannis: I think what you have mentioned is not...

    Ioannis:
    I think what you have mentioned is not very difficult to achieve, but for that you ll need a bigger PIC like 16F877A and probably two ULN chips. I intend to make an input selector with a...
  5. Thread: LCDOut Woes

    by abidr
    Replies
    12
    Views
    7,408

    try using with the configuration bits as watchdog...

    try using with the configuration bits as watchdog timer off and brown out detect off, power up timer on and oscillator as XT
  6. Replies
    33
    Views
    54,573

    Here is another approach, this is a pre amp and...

    Here is another approach, this is a pre amp and volume controller which uses PGA2310, an IR, switch to change input (a 4 input selectors) , PIC 16F876A, 16x2 LCD and rotary encoder.
    Pre is complete,...
  7. Replies
    33
    Views
    54,573

    Controlling Volume Control of an AMP

    Here is my approach to control volume of any amplifier, i have used DS1802 a digital pot from Dallas Semi with buttons control. No need for a microcontroller. These are schematics and layouts of the...
  8. Replies
    10
    Views
    7,042

    Ok guys: Code completed sucessfuly, just needed...

    Ok guys:
    Code completed sucessfuly, just needed a few tweaks here and there, it has compiled sucessfully and burnt to 16F876A well, now its testing (which I ll do over the weekend).
    Once completed...
  9. Replies
    10
    Views
    7,042

    Rojodu: Thanks man for the help I think this...

    Rojodu:
    Thanks man for the help I think this code sample will be all that i need.
    Here is my updated version of preamp I call it V1.3.
    I guess this code will be enough.
    Check_sel
    If sel=0 then...
  10. Replies
    10
    Views
    7,042

    Attached is the PIC of populated Project PCB. I...

    Attached is the PIC of populated Project PCB.
    I have decided to put the button at RB6 and debounce it, so that it could change between inputs.
    I have already posted the whole code along schematics....
  11. Replies
    10
    Views
    7,042

    Thanks dave heres is the code: ACTIVATE_RELAY: ...

    Thanks dave heres is the code:
    ACTIVATE_RELAY:

    LOW MUTE ' Activate MUTE

    select case RELAY

    case 1 : PORTD =...
  12. Replies
    10
    Views
    7,042

    thanks "mackrackit" link is not helpful. Other...

    thanks "mackrackit"
    link is not helpful.
    Other part is that is VAR=0 then input is "IPOD" if input =2 etc.
    My issue is how to define variable "an exmaple will be of great help" and how to shift...
  13. Replies
    10
    Views
    7,042

    High End Pre with PIC 16F876A

    Hi Guys:
    I am quite new to PIC Programming and I thought it would be an excellent place to learn about it at this forum.
    I have been working on this idea of developing a high end pre around PIC...
Results 1 to 13 of 13