Search results

  1. J

    LCD LIbrary PCF8574 I2C

    I read the manual and it's well done clear and concise, and the code are easy to understand Thanks again
  2. J

    LCD LIbrary PCF8574 I2C

    Flenser you did it, YES simplify my life looking for Picaxe library about I2C LCD 2 days ago.... Many Thanks for the excellent work it's well written and remarks into code & the manual easy to understand and to work. Well Done Any New Library is Welcome..
  3. J

    08m2 how to generate 2 different continuous clock frequency

    That's make all good sense. really appreciate your input on this.
  4. J

    08m2 how to generate 2 different continuous clock frequency

    Hello Buzby, and thank's for your reply, about my code I wonder if this is the best and simplest way to acheive it. I know for fact that from this forum, there's always a way to simplify the coding.
  5. J

    08m2 how to generate 2 different continuous clock frequency

    Hi everyone, I have a simple project consisting of one 08M2, and I have to generate 2 different continuous clock frequency on pin c.4,c.0 while pin c.1, c.2 are use for led. the main problem I've got is using a do,loop with toggle work, but the 2 different frequency have to run shifted, eg...
  6. J

    Picaxe Pin use as In and Out ..

    Hello, An inline resistor for each Out could be use as a load de-coupler between the +VCC and output Port. Also I set the DIRS for 1 second as output just before sending a high to the Led, and back to input when waiting for a switch. I did setup this circuit and it's seem to work fine so far...
  7. J

    Picaxe Pin use as In and Out ..

    And yes, as Hippy mention, the Led's turn "on" and "off", in sequence then the user press each switch in the same order to validate. on error then a "fail" sound occur and the sequence re-start at the beginning. Erco you are right about the "Simon Says" game a simple 2 buttons, 2 Led. Also for...
  8. J

    Picaxe Pin use as In and Out ..

    Hello, I know the title lead to some questions but let me explain. I currently use Picaxe 08M2, and I'm looking to interface a single pin to be use as input and output by the same internal program. Maybe some of the users here had some experience with this, mostly in the electronic circuit...
  9. J

    Mini Simon Says code for 08M2, 2 Led, 2 Buttons

    Hello, Here the revised code remove the " Lookup2 ", and j variable. ; Minimal SIMON SAYS , for 08m2 2 led 2 buttons ; project build on AXE091 Dev Board ; Memory used 213 out of 2048 bytes ; Date : Sep 3-2022 ; File : "D:\PIC\PICAXE\08M2+\SIMON SAYS\SIMON.bas" #picaxe 08M2 #no_data Symbol k...
  10. J

    Mini Simon Says code for 08M2, 2 Led, 2 Buttons

    Hello After reading about " Simon Says " projects here in this forum. I wonder if I can write some codes with a minimal hardware in mind as 08M2 chip and 2 led, and 2 buttons I know the original game from Hasbro, and Milton & Bradley with 4 buttons, and most the users projects were about this...
  11. J

    Format Variables

    Solution : MERCI à ECLECTIC , Aries , hippy ;1 character b0 = LSB ;b0 = b0 / $40 Max 1 * 9 + b0 & $0F ;2 characters b0 = MSB b1 = LSB b0 = b0 / $40 Max 1 * 9 + b0 & $0F * 16 b0 = b1 / $40 Max 1 * 9 + b1 & $0F + b0
  12. J

    From serin to hexadecimal

    Thank's Hippy for the elaborate codes it's working fine , regards.
  13. J

    From serin to hexadecimal

    Hi Aries I'll work later today to complete the code. Regards.
  14. J

    Format Variables

    Voici une explication simplifié.. mes codes sont ceci: je reçoit du data avec la commande "serin" serin c.3,t9600_32,(2),b1,b2,b3,b4,b5,b6 le data de b1,b2,b3,b4,b5,b6 est : 1F497E est-ce possible de placer les valeurs des variables comme suit: b1,b2 placé en b10 en hex $1F (ou décimal...
  15. J

    From serin to hexadecimal

    Let me explain in a different way... my code are as follows,, I'm receiving data from the serin command : serin c.3,t9600_32,(2),b1,b2,b3,b4,b5,b6 the data of b1,b2,b3,b4,b5,b6 is 1F497E looking for a routine that will take the value of: b1,b2 and place it in b10 as $1F...
  16. J

    From serin to hexadecimal

    Thank's eclectic for your support. (the code you sent are ok if manual entry) the b0 and b1 etc.. are received from a "serin" I'm receiving data from the serin c.3,t9600_32,b0,b1 command, example: ( b0=1 b1=F ) from there I need to assemble b0 and b1 to get 1F or 31 after I'll use this 31 to...
  17. J

    Format Variables

    Bonjour à tous, présentement j'ai un petit problème avec l'addition et formatage de variables : le but est prendre b0="1" avec b1="F" = 1F en hex pour un total b10 de 31 en décimal Merci à tous
  18. J

    From serin to hexadecimal

    Thank's so much Aries I'm sure that I made some errors , just want to confirm I used : b0="1" : b1="F" ; 1F hex to decimal = 31 ; hex to decimal on the windows calculator b2="4" : b3="9" ; 49 hex to decimal = 73 b4="7" : b5="E" ; 7E hex to decimal = 126 ; the code below gave me other...
  19. J

    From serin to hexadecimal

    Hello to all, I've a simple question ( learning everyday ), about assigning variables to different format. I'm receiving data from the serin c.3,t9600_32,b0,b1 command, example: ( b0=1 b1=F ) I'm looking to transfer b0 and b1 to b10 as one hex value with the "$" sign as show...
  20. J

    RFID 125Khz serial TTL- 232 Level Module (Engraved Tag Number Calculation)

    Smaller, Faster, code ,, I have so much to learn,, I'll study theses lines of code Thank's hippy
Top