Navigation

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

    Topics created by Nca78

    • Nca78

      Printing enclosures with SLA printers.
      Enclosures / 3D Printing • • Nca78  

      17
      0
      Votes
      17
      Posts
      599
      Views

      scalz

      or, when you fee comfortable with tinkering, you can build your own, with bigger print area, "nanodlp" SLA printer with cheap 2k lcd from aliex***** (possible to improve air filter and isolation, a lot more easier with less parts than building a corexy etc) but I totally agree, when you don't need bigger print, buying a ready to use printer is simpler and the smaller lcd are just a little bit more precise
    • Nca78

      MySensors add-on crashed ?
      Mozilla WebThings Gateway • • Nca78  

      12
      0
      Votes
      12
      Posts
      906
      Views

      alowhum

      @Nca78 My pleasure!
    • Nca78

      Additional sleep methods with array of pins as parameters ?
      Feature Requests • • Nca78  

      24
      3
      Votes
      24
      Posts
      3061
      Views

      mfalkvidd

      @yveaux clarification: imho, if support for many interrupts is added in a future version of MySensors (which is what we're discussing in this thread), sketch developers should not need to manually call pinMode.
    • Nca78

      MYSX connector alignment
      Hardware • • Nca78  

      18
      0
      Votes
      18
      Posts
      1654
      Views

      Anticimex

      @sundberg84 right, but both boards have to be swapped. So boards won't be "off the shelf" if one of the two is swapped.
    • Nca78

      Any users of LiFePO4 batteries ?
      Hardware • • Nca78  

      19
      1
      Votes
      19
      Posts
      5997
      Views

      Nca78

      @NeverDie said in Any users of LiFePO4 batteries ?: @Nca78 No links. Just the usual "burst into flames" safety concerns. I see, then I'm not too worried. Soshine seems to sell a lot of batteries and I didn't see any report of explosions or related things. And when charged and discharged quickly (for capacity testing) they seem to stay much cooler than even my brand name 18650 cells. The guy from Lygte has tested a bunch of batteries and results are good for all the soshine, and it means capacity measurement on my charger is not bad, I measured 600mAh for the LiFePO4 AA and he has 550. Every other battery brand that is available on AliExpress and he tested has completely bullshit claims about capacity. What's worrying is they also lie about having protections, and some brands like TrustFire rewrap some old batteries from powerpacks and hide marks/rust/... with new tops and bottoms, this is mainly the case for 18650. Old rusty batteries without protection, and all different despite behind inside the same wraps Page for small batteries : http://lygte-info.dk/review/batteries2012/CommonSmallIndividualTest UK.html
    • Nca78

      Best solution for project with multiple PCBs ?
      General Discussion • • Nca78  

      3
      0
      Votes
      3
      Posts
      894
      Views

      gohan

      If you already have them panelized, maybe could also be an extra "nice to have"
    • Nca78

      PIR AM312/412/612
      Hardware • • Nca78  

      31
      0
      Votes
      31
      Posts
      13819
      Views

      Omemanti

      @just4-electronics In also using the setup(am612) from NeverDie, and I'm pretty pleased with it. I mapped an extra cap to the setup but that's just for my pease of mind.
    • Nca78

      Clean looking sensor node
      Enclosures / 3D Printing • • Nca78  

      90
      9
      Votes
      90
      Posts
      39097
      Views

      Nca78

      And after getting out of the fridge, side by side, only a reasonable difference in humidity level. ( and yes, the weather is unconfortable today )
    • Nca78

      Use of BH1750 light sensor in low power node
      Development • • Nca78  

      16
      1
      Votes
      16
      Posts
      7319
      Views

      nekitoss

      @gerritv Thank you for pointing the problem. I was updating my code, while library was updated and found that i had funtion, that does not exists in library - i've added it in local copy in library, then it updated and my local patch was gone. I've investigated previosly mentioned PR - and must admit that later they removed that re-initialisation when reading. I will try a PR to slightly improve that behaviour, but looks like library is becoming abandoned. Now look it should work next way: after previous measurement done you must run lightSensor.configure(ONE_TIME_) so it starts measuring - this is shown in their example BH1750onetime.ino. Then we have to wait, but measurementReady() relies on _delay_ms, which (as i remember) won't tick during sleep so you can't sleep. We can sleep but we can't get exact measurement time for current settings. Soto save battery we sleep max time - which, according to library is 180ms. Then we get reading. On next cycle - repeat. As i understand maximum battery saving code will look like: void setup() { Wire.begin(); // Initialize the I2C bus (BH1750 library doesn't do this automatically) lux_init_status = lightMeter.begin(BH1750::ONE_TIME_LOW_RES_MODE); //init ONE_TIME - at same time it will start measuring, but we will ignore this and double-call start measuring if (lux_init_status == false) { send(deb_msg.set("ErrorInitLux")); //notify us about failure } } void loop() { if (lux_init_status) { //making it fail-safe - if BH1750 brokes then other sensors will still work lightMeter.configure(BH1750::ONE_TIME_LOW_RES_MODE); //this will start measuring, after it sensor will go into power-down mode //note, that configure has 10ms sleep built-in sleep(180); //this is guarantee time in this library with any config. We can't get that externally as for v1.3.0 long lux = lightMeter.readLightLevel(); //actually get results } sleep(SLEEP_TIME);//sleep between measurements } note that .configure() that is also called by .begin has built-in 10ms delay
    • Nca78

      Random disconnection of controller (2-15mn) on Wifi gateway (v2.0)
      Troubleshooting • • Nca78  

      8
      0
      Votes
      8
      Posts
      1757
      Views

      Nca78

      I have no idea except adding bmp and lcd...