Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. ileneken3
    3. Best
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Best posts made by ileneken3

    • RE: 💬 Easy/Newbie PCB for MySensors

      @sundberg84

      OK, looks like I had multiple problems.
      I somehow missed the instructions about "don't solder both", and was also slightly confused about the directions because I am using a battery (LIPO), but following the "5V regulated" instructions. When the instructions mention battery, it always mean a 3.3V battery. I had the BAT jumpered, and then I tried with and without the REG jumpered.
      At the same time, I believe I damaged the MCP1700 regulator - I will have to take it off and test it.
      So in the interest of getting this resolved quickly, I started all over again with a new board, new regulator, and jumping only REG. It worked! Here is the picture:

      0_1489203194468_IMG_0932.JPG

      You can see that the radio will get 3.3V, and the rest of the board will get 4+ volts. (The TP4056 will cut it off as it goes down to around 3V).

      So I will continue the build, and if everything goes according to spec, the radio, arduino, and sensors should all be OK. (Assuming the sensor can handle 4+ volts).

      As far as the capacitors, it looks like the spec says 1uF on input and output. So I will put those where there are labels for .1 and 10uF. For the radio, I am well aware of its capacitor needs (learning the hard way). At this point, I always put the 4.7uF cap directly on the radio.

      If everything goes well, I would recommend putting some sort of reference to LIPO batteries in the instructions. I couldn't be the only one who wants to do this.

      Great support from everyone!

      posted in OpenHardware.io
      ileneken3
      ileneken3
    • RE: Easy/Newbie PCB for MySensors

      @sundberg84

      I took a chance and tried these boosters. After adjusting the pot to boost to 3.3V, and using wires to connect, they seem to work the same as the "recommended" ones. I am hoping they produce less noise for the radio - I seem to have trouble with that, even with adding the capacitors. (Maybe my radios are not good).
      Another experiment - boosting them to just over the 2.8V fuse limit. I would think that would be more energy efficient.

      posted in Hardware
      ileneken3
      ileneken3
    • RE: Garage door status sensors ideas

      I use an accelerometer ( search for MMA8452Q in AliExpress), along with code that checks the orientation:

      byte pl = accel.readPL();
         switch (pl)
         {
           case PORTRAIT_U:
             Serial.println("Portrait Up");
             break;
           case PORTRAIT_D:
             Serial.println("Portrait Down");
             break;
           case LANDSCAPE_R:
             Serial.println("Landscape Right");
             break;
           case LANDSCAPE_L:
             Serial.println("Landscape Left");
             break;
           case LOCKOUT:
             Serial.println("Flat");
             break;
         }
      
         if ( pl == LOCKOUT ) { // flat
           garage_state = GARAGE_CLOSED;
         } else {
           garage_state = GARAGE_OPEN;
         }
      
      posted in General Discussion
      ileneken3
      ileneken3
    • RE: is "isTransportOK()" function obsolete in 2.1.0 ?

      @tekka

      OK, I changed it to isTransportReady() and it compiles fine.

      Thank you!

      posted in Troubleshooting
      ileneken3
      ileneken3
    • RE: Board and hardware failures

      @sundberg84

      According to the new documentation, my build is now officially approved by you! Of course, it would be interesting to hear what the exact effect of jumping both jumpers is. All I know is that it works. There seem to be a lot of sensors that work fine down to 1.9V, so I would think that this configuration would be useful. (Assuming that reprogramming the bootloader is not too hard - I didn't think so).

      So did you consider making the LIPO configuration "official"? So far, it seems that it works fine for me. It is good for when you really want a small footprint and/or your sensor needs 3.3V. Unfortunately, not as long a life as 2 AA, but you don't have to deal with the booster's expense and possible radio interference.

      posted in Hardware
      ileneken3
      ileneken3