Recent content by Panda1989

  1. P

    Outpins variable affecting portC

    Hi. Whenever I use "outpins = %00000000", my PortC pins are also switched off, even though technically portC pins are defined as inputs. Anybody know why this is? This is a project-crippling problem I have right here! Sample code: high portc 0 ' PortC 0 switched on outpins = %00000000 '...
  2. P

    Dynamic variable loading?

    I'm out of non-volatile memory, but I still need to store more. Are there any other ways of dynamically loading data? Example (psuedocode): b1 = "Hello" b2 = "Goodbye" b3 = 1 Print b1 data b3 = 2 Print b2 data b3 = 1 Print b1 data again Any ideas guys? It would be SO NICE for arrays to...
  3. P

    Strange Circuit Behaviour

    I'm having some trouble with my circuit. symbol started = b0 symbol temp = b1 symbol mintemp = b2 symbol maxtemp = b3 symbol digit_1 = b4 symbol digit_2 = b5 symbol digit_1_buffer = b6 symbol digit_2_buffer = b7 symbol loop_dump = w8 symbol math_dump = w9 symbol math_dump2 = w10 EEPROM 0...
  4. P

    DS18B20 Returning 0!

    Hi, I made a quick circuit to test the functionality of my code. Here's the schematic: Here's the code: symbol temp = b1 symbol mintemp = 0 symbol maxtemp = 60 main: readtemp 0,temp if temp = 0 then high 5 elseif temp > 0 then if temp < 60 then high 6 else high 7...
  5. P

    Need circuit & code. Paying.

    Hi there, I need a circuit and code fully designed for a home project. I am willing to pay via PayPal. Required Functions: Read the temperature in degrees C. Display the temperature on a two digit, common cathode, multiplexed seven segment display. Three temperature thresholds; lower, middle...
Top