Recent content by Puuhaaja

  1. P

    URF and ERF sleep mode?

    I'm making battery powered project where I'm using URF anf ERF modules. I measured that those boards(I tested ERF) are using 20-25mA current when they are powered on. Regarding the datasheet URF, ERF and XRF modules are using Texas Instruments CC1110 chip which sleep mode current should be...
  2. P

    Powering PICAXE T4 Trainer with battery

    Hi! I'm planning to order few Picaxe education boards. T4 board: http://www.picaxe.com/Hardware/Teaching-Systems/PICAXE-T4-Trainer/ seems to bee good, but I'am wondering if it is possible to use it with 3 x 1.5V batteries. Anyone knows?
  3. P

    Two Picaxe connected using erf and urf module

    I'm trying to make car parking place radar because one parking slot is situated in a narrow place so it's hard to reverse back there. Picaxe situated in parking slot is using ultrasonic sensor and it's sending trough picaxe urf module if there is a car or not. Picaxe situated in my car is using...
  4. P

    Simple Thermostat Inspiration Needed!

    Nice project! I am sure this can be done easily with Picaxe. I have just made quite much similar system which is controlling paint sprayer's paint temperature In my paint warmer there's ds18b20 temp sensor and potentiometer which adjust the paint temperature. There's 230 volt dim switch for...
  5. P

    3d printer heater cartridge modification with Picaxe.

    I have build my own version of open source 3d printer. Link: https://www.ultimaker.com/pages/our-printers/ultimaker-original I have ordered those parts all over the world and many of those parts I have done by using lathe and milling machine. Problem(Challenge) is that Ultimaker is using 19V...
  6. P

    Linaxepad crash and Ubuntu 14.04

    LinAxepad seems to open well on Ubuntu 14.04 but save, save as and open buttons crashes Axepad totally. In my case those buttons close whole Axepad. Is there any kind of solution for that? Am I missing some packgages or is there somekind of reason for that kind of behaviour? Save, save as and...
  7. P

    PCB scope - a present from Santa?

    Mine arriwed today and I got it working on Linux under Wine, but I haven't yet connected board to a computer. But because program seems to work I suppose that it will works also in real test. I'm assuming this because earlier I have used car diagnostic programs under wine.
  8. P

    Interrupt with two input?

    At recent project I'm using Picaxe 20x2 uc. There would be need for interrupt which can be activated from pins C.1 OR C.2. Pin C.1 is getting all the time hits from hall effect sensor and pin C.2 is normal button and by pressing it you end up to a menu where is much different kind of parameters...
  9. P

    Code shortening

    I have a program where I have far too many similar commands which I'm using to control lcd. My problem is that after 450 lines of code it's frustrating to write any serout commands more. So...would it be possible to shorten command: serout c.7, n2400, (254, 128, "Something") to a form like lcd...
  10. P

    Lcd driver board

    I decided to do my own design of popular Axe133 lcd driver board. Problem with Axe 133 is that it uses different pinout diagrams compared to those other lcds which you can bought/get everywhere. So I changed Axe133 pinout diagram to suit those other hd44780 lcds. I also made a plug and play...
  11. P

    A question about diy lcd driver

    Yesterday I made my own axe133 lcd driver board which can be used directly with cheap 16x2 and 20x4 lcds. I'd like to share those pcp files and photos but don't know which forum area would be best for it's purpose. Any ideas?
  12. P

    Interfacing picaxe on motor vehicle

    I'm using this kind kind of regulator which consist of 2x 100nF bypass ceramic capacitor, 2x 100uF electrolytic capacitor, 1x 1N4001 diode and Lm7805 regulator. I have used it with small 12v battery several times without problems. Do you have any idea should this work straight in a car? I think...
  13. P

    Waterflow metering

    Hi again! I'm using waterflow meter like: http://www.ebay.com/itm/261152910400?ssPageName=STRK:MEWNX:IT&_trksid=p3984.m1497.l2649 I have made a code for that and I can measure water consumption. When testing 1,5 l amount of water the lcd shows exatly 1.5l. Problem is that when passing water fast...
  14. P

    write and read from eeprom problem

    Hi again! I have planned a program where I need to set different numbers to lcd screen like: 32,45 Each number can get value from 0 to 9. number 3 is stored to b1, 2 to b2, 4 to b4 and 5 to b4 At end of the program I have a code: write b6, b1 write b7, b2 write b8, b3 write b9, b4 and at...
  15. P

    max and min values

    irin [400,main], C.2, b0 if b0 = 18 then inc b5 elseif b0 = 19 then dec b5 end if I want that b5 will never grow bigger than 9 and smaller than 0 I tried different kind of let b5 = max 9 codes but didn't get it workin I'd like to use max/min commands because if b5 = 10 then let b5 = 9 etc...
Top