Code Monkey home page Code Monkey logo

tinytx's People

Contributors

kylegordon avatar nathanchantrell avatar tleegaard avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tinytx's Issues

verify met error message

Hi Nathan Chantrell,
First of all thank you for sharing your experience
I made reference to TinyTX_nRF24L01_DS18B20.ino, and want to try to replicate the same situation
But I encountered at compile time error
I have tried to install the following library is still the same
DallasTemperature
mirf85
Narcoleptic
OneWire
RF24
SPI85
maybe I have missed what place?
Could you please help me? Thank you

digitalWrite(ONE_WIRE_GND, LOW); // set GND pin low <-------Verify error messages stay in this line

Recommendation to decrease power consumption.

Set the reed pin from falling to rising
Set pin as input.
Connect the reed to vcc instead of ground and put a 1M resistor between pin and ground.
In your case I see a 100uA consumption on close state. In my case the consumption is dropping around 4uA.

IF ended too early

Hi Nathan,

I'm still new with github and not sure how to pull to your repo - but I have found a minor error in your/my code (TinyTX_LDR_Meter.ino), which produces an error if less than 1000 (in this case) millis since last blink.

...
    } else if (interval > 1000) { // 1+ sec passed
        // Blinks are 1000 per kWh, or 1 Wh each
        // One hour has 3.6M milliseconds
        watts = nBlinks * 1 * 3.6E6 / interval;

        last = time;
        nBlinks = 0;
    }

  tinytx.power = watts; // Get realtime power

  tinytx.supplyV = readVcc(); // Get supply voltage

  rfwrite(); // Send data via RF    

    }

}

Needs to be changed to:

...
    } else if (interval > 1000) { // 1+ sec passed
        // Blinks are 1000 per kWh, or 1 Wh each
        // One hour has 3.6M milliseconds
        watts = nBlinks * 1 * 3.6E6 / interval;

        last = time;
        nBlinks = 0;

  tinytx.power = watts; // Get realtime power

  tinytx.supplyV = readVcc(); // Get supply voltage

  rfwrite(); // Send data via RF    

      }

    }

}

Kind regards,
Troels

Writing on attiny84 dht22.ino

Hello there!

I have downloaded all requirements from TinyTX tutorial page and I can write bootloader with no problems.
When I try to write dht22.ino I get an error:

'Sleepy' has not been declared.

I've tried to copy the includes (DHT22.h and JeeLib.h) in the sketch folder but the error remains the same.

What am I doing wrong?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.