Search Results - MEL PICBASIC Forum


Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.00 seconds; generated 17 minute(s) ago.

  1. Replies
    19
    Views
    37,689

    Re: 12F683 Light Dimmer Problem

    When a SCR is triggered it stays ON until the current drop to zero. TRIACs are 2 SCR doing a "69" :tongue: to conduct both ways (AC).
  2. Replies
    6
    Views
    30,077

    Re: Dynamic NeoPixel Demo

    See attached file for my 32MHz include file. The 12F1840 will not handle your big matrix with my example because of the memory limitation for arrays. You need a 18F which can handle arrays over...
  3. Replies
    24
    Views
    45,218

    Re: Ds3231 rtc usage

    It skips the include file which contains only functions to be called.
  4. Re: How do I discern Maidenhead Locator from GPS lat long info.

    Some modules requires you to send a checksum at the end of the command. Here for a NEO-6M GPS Module:



    'Turn off RMC - Recommended minimum specific GPS/Transit data
    hserout2...
  5. Re: WTV020-SD-20SS SD Card U Disk Audio Player Interface

    I did a small projet with it:

    https://hackaday.io/project/8299-halloween-2015-farting-skeleton

    https://www.youtube.com/watch?v=WHcugA2m7bo

    My WTV020 is different from yours...
  6. Re: Symbol not previously defined (EEPROM_START) - PIC16F15325

    Thank you Richard, Henrik & pedja089, I was not aware about the difference between SAF and EEPROM. Will try to adapt the code from the thread mentioned by Richard.

    Happy New Year & projects!
  7. Re: Symbol not previously defined (EEPROM_START) - PIC16F15325

    Storage Area Flash: 224 bytes.

    The ASM look like this:



    ; EEPROM data.
    ORG EEPROM_START

    _BaseColorsTable EQU $
  8. Symbol not previously defined (EEPROM_START) - PIC16F15325

    Hello group,

    I'm trying a new PIC (PIC16F15325) and I can't define anything on the on-chip EEPROM:



    '----[ Color Tables ]-------------------------


    GOTO OverColorTables
  9. Replies
    7
    Views
    5,448

    Re: I2C read and write to 24C01 eeprom

    From the manual, p. 158:
  10. Replies
    2
    Views
    3,535

    Re: Changing Baud Rates

    Go with SPRG1H/SPRG1/Sync/BRGH/BRG, works fine for changing baudrate anytime in your code.

    Also, get Mr E's Multicalc: http://www.picbasic.co.uk/forum/showthread.php?t=19638&p=130286#post130286...
  11. Replies
    14
    Views
    20,824

    Re: DT_INTS and 18F26k22

    FYI: You can specify a relative path. I have a separate folder for all my includes. It is located in the same root folder of all my projects:




    C:\
    ---Somewhere
    ...
  12. Replies
    6
    Views
    40,826

    Re: Choice of FET

    FDS6690A
    Single N-Channel, Logic-Level, PowerTrench MOSFET

    11 A, 30 V
    RDS(ON) = 17.0 mW @ VGS = 4.5 V
  13. Replies
    43
    Views
    65,747

    Re: MCS is Crashing

    Do you copy some text from the datasheet PDF and then paste to MCS? Not sure but I used to had crashes when doing it...
  14. Re: Review: INNO SETUP Package and Deployment software

    Are talking about re-attaching tables? Don't bother your users with that. I can show you how to do it programmatically. FYI, if you own Office Developper edition you can distribute the Access Runtime...
  15. Replies
    5
    Views
    4,636

    Re: line continuation character

    You need to add some comas:



    Arraywrite string,["abcdefghiklmn", _
    "opqrstuvwxz", _
    "1234567890",13,10]
  16. Replies
    5
    Views
    14,265

    Re: To buy or not to buy...

    The deal is 50$, not 50%... but that's not too bad
  17. Replies
    5
    Views
    14,265

    To buy or not to buy...

    ... that is the question! ME Labs are having a thanksgiving sale and I'm really thinking about buying the Gold version. Some of my projects are a little squeezed on a PIC18F25K22.

    What about you?...
  18. Replies
    2
    Views
    3,910

    Re: Utility of ARRAYREAD

    You can use it to parse arrays. Here is how I'm using it to parse a NMEA string from a GPS:




    ...

    'Parsing GGA
    ...
  19. Replies
    19
    Views
    13,980

    Re: Where can i buy PICs using Paypal?????

    Futurelec may be an option for you:

    http://www.futurlec.com/Delivery.shtml

    http://www.futurlec.com/Microchip/PIC18F25K22pr.shtml
    http://www.futurlec.com/Microchip/PIC18F45K22pr.shtml
  20. Replies
    10
    Views
    53,671

    Re: Defective ESP-07

    The ESP8266 gives the RSSI (Received signal strength indication) when you ask it to list all access points near by.

    For the ones who wants to know how to triangulate, here it is:

    Disclaimer:...
  21. Replies
    19
    Views
    14,290

    Re: Calculating Daylight Saving Time

    Heckler don't you get your time sync from NTP? Do you have the day of week?

    If so:




    Delta = Date - 7

    IF Month=3 AND Day=Sunday AND (Delta>0 OR Delta<8) Then DST!
  22. Re: A Wireless Wood Stove Monitor on Hackaday

    OK you got me! Is it possible to do the thingspeak thing on the ESP and having a PIC do the heavy stuff and pushing the results to the ESP via the serial port? To be clear, does ESPBasic handle...
  23. Re: Electrical Issue: PIC input false triggering, Signal Noise suspected.

    I've found that: Basic Electrical Parameters of Reed Switch (PDF).

    You'll see on page 3 they bounce a lot for a few miliseconds. I suggest you lower the pullup to 1k to improve noise immunity. If...
  24. Re: Electrical Issue: PIC input false triggering, Signal Noise suspected.

    A flash comes to my mind: what about static electricity buildup on the trolley itself?
  25. Re: A Wireless Wood Stove Monitor on Hackaday

    I'll try ESP8266Basic one day or another for sure! I'm already making projets with PicBASIC and ESP8266:

    World’s First Internet Connected Lawnmower...
Results 1 to 25 of 67
Page 1 of 3 1 2 3