Search Results - MEL PICBASIC Forum


Search:

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

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Hello Flotulopex, I did something like that for...

    Hello Flotulopex,
    I did something like that for students school project. I did it very simple with a posicle stick and a little block of wood. I use 7 leds, a PIC16F627A and a CR2032 battery. The...
  2. Thread: Hardware I2C

    by Toley00
    Replies
    11
    Views
    7,584

    Project finished!

    Thank you SteveB, with your help (and a lot of time) I finally make it work. I've changed some things in your Routines. First I changed the Labels for shorter names. I've also changed the lines refer...
  3. Thread: Hardware I2C

    by Toley00
    Replies
    11
    Views
    7,584

    Thank you SteveB, looks like what I need. I will...

    Thank you SteveB, looks like what I need. I will take a closer look and adapt it to my needs. I'm using a PIC16F886, but I think all MSSP modules work the same way, and I only need to read from the...
  4. Thread: Hardware I2C

    by Toley00
    Replies
    11
    Views
    7,584

    Thank you BobK for your reply. I already know...

    Thank you BobK for your reply.
    I already know about I2C timing protocol, and I use it in many project already. I just need it to read an EEPROM faster than I2CREAD can do.
    Thanks for your help but...
  5. Thread: Hardware I2C

    by Toley00
    Replies
    11
    Views
    7,584

    Hardware I2C

    Is it possible to use the Hardware I2C in PicBasic Pro?

    I need to read faster than I2CREAD PicBasic Pro command. Even with a 20MHz crystal I'm unable to obtain full speed I2C.

    Surely someone...
  6. Replies
    7
    Views
    6,363

    I may be wrong but I believe that PIC12F675 has a...

    I may be wrong but I believe that PIC12F675 has a 14 bits core even if it's a 12F series.
  7. Replies
    7
    Views
    6,363

    Hi Dave, I think I was in the wrong track....

    Hi Dave, I think I was in the wrong track. Effectively what I received seems to be only noise and not "another source" (I probably watch to much X-Files when I was young ;)).

    My receiver's output...
  8. Replies
    7
    Views
    6,363

    Yes this is how I do it for now at 2400 bauds, I...

    Yes this is how I do it for now at 2400 bauds, I will upgrade to a Manchester routine as soon as I'm sure the communication is possible.

    But even without my transmitter powered, I always receive...
  9. Replies
    7
    Views
    6,363

    RF Interferance

    First of all I wanna wish you all a very good year 2007.

    Recently, a friend tried to convert me to ATMEL AVR/MEGA.
    I've try and yes they are faster, yes they are powerfull and yes there's a basic...
  10. Replies
    1
    Views
    2,831

    RS-232 Time server

    Hi everybody, I'm looking for a software that send PC time to the RS-232 port periodically. What I wanna do is clocks that are synchronized together via a RF link. I only need to synchronize the...
  11. Replies
    8
    Views
    11,946

    Have a look at this page ...

    Have a look at this page

    http://www.semifluid.com/?p=24

    He also made a Graphic LCD version. This is not in PicBasic but it will show you the limitation of the internal A/D inside the PIC.
  12. Replies
    1
    Views
    3,163

    PicKit2 from Microchip :)...

    PicKit2 from Microchip :)
    http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1406&dDocName=en023805
  13. Replies
    12
    Views
    22,238

    Finally I found a way. After I send a key code, I...

    Finally I found a way. After I send a key code, I clear all the buffer bytes and do another send with all buffers to 0. I'm not sure this is the right way to do it but it work as expected. Naturally...
  14. Replies
    12
    Views
    22,238

    Thank you for your answer Dave but even when the...

    Thank you for your answer Dave but even when the button is release aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa never stop til I reset the PIC or unplug it. The problem is not the button it's sowhere...
  15. Replies
    12
    Views
    22,238

    USB keyboard emulator

    I'm very close to make it work. I used EasyHID with the Descriptor find in that topic http://www.picbasic.co.uk/forum/showthread.php?t=2872 (curiously this link can only be found by making a...
  16. Thread: USB bootloader

    by Toley00
    Replies
    5
    Views
    10,940

    Found it

    Ok I got my error. I did not choose the good linker scripts in MPLAB (p18f4550.lkr). Better result on saturday morning than on friday night.... Thank you for any help, surely more questions on USB...
  17. Thread: USB bootloader

    by Toley00
    Replies
    5
    Views
    10,940

    Very Very Hard to understand

    It's been a while I'm thinking of making a working USB connection. So tonight I feel ready to mount the project, program the PIC and plug it in the USB port. Everything looks very clear in the...
  18. Thread: COUNT Function

    by Toley00
    Replies
    2
    Views
    2,722

    COUNT Function

    Hi everyone, I just wanna know if there's a define to change the COUNT instruction for counting high to low instead of low to high transitions. I know I can simply place a little transistor to invert...
  19. Thread: Intrc Pic16f88

    by Toley00
    Replies
    5
    Views
    4,305

    Thank you very much mister_e. Now it works as I...

    Thank you very much mister_e. Now it works as I want.

    Thank you also for the french spelling... But you also have a spelling mistake, You should be called master_e.
  20. Thread: Intrc Pic16f88

    by Toley00
    Replies
    5
    Views
    4,305

    Thank you mister_e. I think I didn't...

    Thank you mister_e.

    I think I didn't understood well the last bits of the OSCCON register but now it's ok. Sometimes it's too simple to understand the first time lolll. Now I've tune my internal...
  21. Thread: Intrc Pic16f88

    by Toley00
    Replies
    5
    Views
    4,305

    Intrc Pic16f88

    I have a program with a 16F88 at 4MHz internal osc that work but have some little bugs with the serial communication (I have try almost all serial speed). I suspect the internal clock is not accurate...
  22. Replies
    1
    Views
    2,410

    Pulsin versus While Wend

    Is someone can tell me if there's a difference between these two way of mesuring a pulse width.

    First simply by using PULSIN

    PULSIN PIN_IN,0,PULSE_WIDTH

    Or by using WHILE WEND like this
    ...
  23. Replies
    4
    Views
    4,039

    IR Protocol

    The simplest IR protocol to implement with PicBasic Pro is surely the Sony SIRC protocol. Simply follow the instructions given by Mr Les Johnson and very soon you'll be able to "Controlling the world...
  24. Replies
    6
    Views
    5,688

    OK thank you for your help. My problem seems to...

    OK thank you for your help. My problem seems to be a directory problem... Curiously I changed my working directory and now it works fine. Sorry for the inconvenience and thank you for helping me.
  25. Replies
    6
    Views
    5,688

    Latest PicBasic Pro version 2.46, very simple...

    Latest PicBasic Pro version 2.46, very simple code (even with no code at all in microcode studio). Here's a simple example I tried with :

    ANSEL = 0

    START :
    HIGH PORTB.0
    PAUSE 1000
    LOW...
Results 1 to 25 of 29
Page 1 of 2 1 2