Search results

  1. cachomachine

    Hippy status, rev 2.0

    I have installed Windows 11 on a unsupported amd unit by following the instructions in this video How to Install Windows 11 on Unsupported CPU & TPM 1.2 - YouTube
  2. cachomachine

    X2 program slots

    Thanks, I sometimes use parallel task.
  3. cachomachine

    X2 program slots

    Does M series uses slots too?
  4. cachomachine

    Hippy

    You got my vote!!!
  5. cachomachine

    Picaxe programmer PCB for CH340 "Gold" USB Serial Adapter

    I did something similar 2 year ago using 2 2N2222 and 4 resistors to invert the signals (the 8 pins socket allows on board programming of complete m2 serie and microswitch for hard reset for onboard programming) and lately, a full programmer for 8m,14m,18X 20m amd 20X using the same signal...
  6. cachomachine

    Large characters

    Thanks
  7. cachomachine

    Large characters

    I inadvertenly hit some keyboard combination and i have now large characters that i could not get rid of, how do go back to normal?
  8. cachomachine

    Access Extra M2 Memory

    Can you help us understand #slot by giving simple examples, i never realy understood how #slot worked.
  9. cachomachine

    How to use serial commands for chip-chip communication?

    You can on the same computer have 2 programing editors running and debugging 2 picaxe chips using 2 different usb to ttl converters.
  10. cachomachine

    GY-271 HMC5883L 3-Axis Magnetic Electronic Compass Module

    I can see value change in the 3 axis when i rotate the unit but have no clue what they means.
  11. cachomachine

    GY-271 HMC5883L 3-Axis Magnetic Electronic Compass Module

    Has anyone succeeded in getting an accurate reading of the X axis in real degrees on a GY-271 HMC5883L 3-Axis Magnetic Electronic Compass Module?
  12. cachomachine

    Picaxe Timing Accuracy

    The PDF program does it: ; Caution, the following line provides some date and time data to demonstrate the time of day alarm ; It is recommend that the reader try first to observe before setting with the current/actual date and time ; secs,mins,hrs, day,date,month,year...
  13. cachomachine

    Picaxe Timing Accuracy

    Here is a PDF file that came from this site some time ago that helped me understand the RTC
  14. cachomachine

    Picaxe Timing Accuracy

    $02 is the hours register you read it; Hi2cin $2 ,B0 $04 is the day register you read it; Hi2cin $4 ,B1 $05 is the month register you read it; Hi2cin $5 ,B2 $06 is the year register you read it; Hi2cin $6 ,B3 Now that you have these 4 values, write them in the EEPROM locations EI: write 0,b0...
  15. cachomachine

    Picaxe Timing Accuracy

    You simply can read the hours register and compare its value with your target values. Hi2csetup I2cmaster, %11010000, I2cfast_32, I2cbyte ' Set the I2C to 400kbps Hi2cin $2 ,B0 'read the hours into b0 b0=b0/16*$FA+b0 'conversion BCD to binary of the hours
  16. cachomachine

    Picaxe Timing Accuracy

    I have use in the past on few occasions the DS3232 RTC with his battery backup, they are accurate to a few second a year (even on the battery backup)
  17. cachomachine

    20m2 and SR04 sensor

    this works at setfreqm8 but not with setfreqm4 ;Ultrasonic distance sensor Symbol trig=c.4 Symbol echo=c.6 symbol inch=w12 distance: setfreq m8 PulsOut trig,1 ;start a reading PulsIn echo, 1, w13 ;return value in w13 let inch=w13*10/148/2 ;convert in inch in w13 debug...
  18. cachomachine

    20m2 and SR04 sensor

    I mean 1 single 10us duration high pulse to trigger a reading on the SR-04 ultrasonic distance sensor
  19. cachomachine

    20m2 and SR04 sensor

    I would like to use multitasking with a Picaxe 20M2 and a SR04 ultrasonic distance sensor How do i acheave a 10us pulse at 4Mhz to triger the sensor?
  20. cachomachine

    Inverting bits in a variable.

    What is the correct syntax to invert all the bits in a variable?
Top