Search Results - MEL PICBASIC Forum


Search:

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

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    7,035

    I always thought the output of 7805 needed a...

    I always thought the output of 7805 needed a capacitor as well? Anyway I would repace the IR2110 with something easier to use like UCC27322.

    You are using just a regular motor right? Not a...
  2. Replies
    4
    Views
    3,950

    More and more I work with the PIC I am having...

    More and more I work with the PIC I am having more respect for it. They are designed very well especially for newcomers and people who don't read the manual unless it doesnt work. I will redesign...
  3. Replies
    4
    Views
    3,950

    You know I was just reading the absolute maximum...

    You know I was just reading the absolute maximum ratings for each pin and it says 0.3+Vdd for any pin other than VPP/MCLR. So the mystery is solved then? The pic ADC doesnt work for voltages higher...
  4. Replies
    4
    Views
    3,950

    ADC with reference voltage

    Hello I am trying to get ADC working on the 16f684 for the first time. I actually have it working for VDD reference but I can't get the Vref working right. For my project I want two analog inputs...
  5. Replies
    1
    Views
    4,063

    I can't really follow the pseudo code written but...

    I can't really follow the pseudo code written but what happens if you add the 2 byte "words"?
  6. Replies
    3
    Views
    3,499

    Check out this article:...

    Check out this article:
    http://www.melabs.com/support/mplab.htm
  7. Replies
    68
    Views
    138,238

    Wow, that is really cool. I was expecting the...

    Wow, that is really cool. I was expecting the source code to be at least a full screen full. Good work, I have this one added to favorites
  8. Replies
    1
    Views
    2,661

    Subroutine Variable Passing

    Is there any C style variable passing in PBP or are we just limited to making a global variable specifically for that use?
  9. Replies
    6
    Views
    19,987

    You should initialize B0 to be 0 and it's best to...

    You should initialize B0 to be 0 and it's best to use Select Case for this code:


    Select Case B0
    Case 0:
    high led_1
    pause 100
    low led_1
    B0 = B0 + 1
    Case 1:
  10. Replies
    0
    Views
    4,618

    Proximity Reader (Weigand) aka RFID

    Well after a good day of getting used to the basic I/O of some of the PICs I have I decided to tackle a RFID card reader project. The use of an oscilloscope was definitely a huge help in the...
  11. Replies
    1
    Views
    2,307

    16F684 and RA2

    Hello, I've been working with my new programmer and pic chips and all is well except for RA2 being an input. I've been reading the data sheet and the only thing I see different for this input is it...
  12. Replies
    0
    Views
    1,870

    Trying to understand config fuses

    Ok, so I had a program planned out for the 12f683 and other than GPIO.3 not having a pull up resistor, I understood what was going on (cmcon, GPIO, TRISIO, etc). Now I've decided to change my...
  13. Replies
    2
    Views
    3,118

    It seems that everything is explained here and...

    It seems that everything is explained here and google is a much better search engine than vBulletin apparently :)

    http://www.picbasic.co.uk/forum/showthread.php?t=544



    For i = 0 to 19
    read...
  14. Replies
    2
    Views
    3,118

    Advanced Arrays

    I'm a bit confused about arrays, I'm trying to initialize an array at runtime from saved EEPROM data, but I don't really understand how to edit what I need.



    Users var word[10]


    Here is my...
  15. Thread: New to PBP

    by GoldStar
    Replies
    2
    Views
    2,480

    Thank you so much, the post you linked to made so...

    Thank you so much, the post you linked to made so much sense. I dont see how I missed that. I understand how to configure it, but I don't understand why I have to edit the include file. Are those...
  16. Thread: New to PBP

    by GoldStar
    Replies
    2
    Views
    2,480

    New to PBP

    Hello, I just found PBP at my local college and I am trying to build my first program for a 12F683 but it seems that I can't get the inline assembly right. So far I've got everything right, but I'd...
Results 1 to 16 of 16