Search Results - MEL PICBASIC Forum


Search:

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

Search: Search took 0.00 seconds.

  1. Re: Can we have multiple 1-wire devices on single pin?

    hello, you can read several ds18b20 sensors and execute the part of the control that you want to carry out, see the attached file the routine I use in a device for the control of air conditioning and...
  2. Replies
    2
    Views
    3,579

    Re: 6 digit - 7 segment display code

    hello, look this:

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

    saludos
    luis
  3. Replies
    3
    Views
    2,992

    Re: Need to convert C to PBP

    hi timmers, you example is for calculate cyclic redundancy check (CRC16). look here two example one using Vb6 the another one with PBP. i use both
    ...
  4. Replies
    5
    Views
    25,583

    Re: CHECKSUM CALCULATION, Please Help!

    hi wasilus, tanks for you answer, these are examples used to calculate CRC16.

    try this:

    1.- $50 + $31 + $32 + $33 + $34 = $11A

    2.- $11A / $100 = $1

    3.- the carry = A
  5. Replies
    5
    Views
    25,583

    Re: CHECKSUM CALCULATION, Please Help!

    Hello
    , i use this:

    you call this sub, length contains the number of characters in array
    '********************* GENERAR CHECKSUM ********************************
    crc__16: ' Funcion...
  6. Replies
    15
    Views
    10,195

    Re: 2 bytes to word array variable - fastest way

    hello, i use this and work:

    read I,b1.HIGHBYTE ' read byte type var from EEprom
    read I+1,b1.LOWBYTE 'read byte type var from EEprom
    TEmpDs18(L) = B1 'word array
  7. Replies
    5
    Views
    6,508

    Re: DS1820 Negative Numbers and OffSet

    ***************************************************************
    hi(hola) gadelhas,
    i read you program try this:

    SENSOR:
    owout DQ,1,[$CC, $44]
    Pause 200
    owout DQ,1,[$CC, $BE]
    OWIn DQ, 2,...
  8. Replies
    6
    Views
    4,882

    Hello everyone sorry did not reply earlier. ...

    Hello everyone sorry did not reply earlier.

    hello mackrackit , is enabled every time it happens the serial interrupt. is used to determine if there are no more characters to read and works. ...
  9. Replies
    6
    Views
    4,882

    without comunication modbus code

    hello all, I need help I have a modbus communication program that works very well, but sometimes I lose communication, I have noticed that if the frame or the values are very large, I lose...
  10. Replies
    6
    Views
    4,882

    without communication modbus

    hello all, I need help I have a modbus communication program that works very well, but sometimes I lose communication, I have noticed that if the frame or the values are very large, I lose...
  11. Replies
    3
    Views
    2,614

    thanks for your response. I have read the manual...

    thanks for your response. I have read the manual but there is no reference to what I do, instruction or DEFINE DEFINE HSER_EVEN HSER_ODD affect HSERIN, HSEROUT, I do not use these instructions.

    I...
  12. Replies
    3
    Views
    2,614

    Change Parity in serial comunication

    hello.

    I have a communication program using interrupt (no use hserin, hserout1, ect.), communication parameters is 8N1. work ok.

    I need to change the parity to Even or odd.

    1 .- is it...
Results 1 to 12 of 12