Skip to content
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
GertSandersG

GertSanders

@GertSanders
Hardware Contributor
  • Getting Started
  • Controller
  • Build
  • Hardware
  • Download/API
  • Forum
  • Store
About
Posts
602
Topics
19
Shares
0
Groups
2
Followers
10
Following
1

Posts

Recent Best Controversial

  • 💬 A smart clock
    GertSandersG GertSanders

    @Raj-Kiran you can use any 3mm LED. So the best is to choose the cheapest 3mm you can find on ALIEXPRESS.

    OpenHardware.io clock mysensors

  • Loading DXF files for a design
    GertSandersG GertSanders

    @mfalkvidd It's been a while since I checked the forums and site, and I'm happy to see the changes, great job ! Work took over for some time, but the Corona period has given some free time, so I was able to finish my clock.

    Feature Requests

  • Loading DXF files for a design
    GertSandersG GertSanders

    @mfalkvidd It would be good if DXF files are supported, because box outlines made in autocad or (as in my case in Eagle and exported to DXF) other programs can be used as input on lasercutter software. Most lasercutter sites accept DXF directly.

    Feature Requests

  • Loading DXF files for a design
    GertSandersG GertSanders

    @mfalkvidd indeed, and yes I did, but dropping a DXF file gave an error saying it was a wrong file format. Did I miss something ?

    Feature Requests

  • Loading DXF files for a design
    GertSandersG GertSanders

    I was wondering how I should load a DXF file, so that I can provide the basis of a lasercutter file.
    Any tips ?

    Feature Requests

  • What did you build today (Pictures) ?
    GertSandersG GertSanders

    @vladimir

    you could use this under the bed:

    https://www.aliexpress.com/item/Free-Shipping-5-Pieces-RCWL-0516-Microwave-Radar-Sensor-Module-Human-Body-Induction-Switch-Module/32773310756.html?spm=a2g0s.9042311.0.0.27424c4dQaNm0K

    It works like an infrared sensor (same three pins), but it does not need a line of sight. It just reacts to movement as this results in a disturbance in the emitted radio signal. Works very well on my clock :-)

    The "high" value when movement is detected is not a full 5V, so I test the Out pin as an analog pin. Anything above 2.5V is an activation due to movement.

    General Discussion

  • Complete shutdown of MySensors in code possible ?
    GertSandersG GertSanders

    @mfalkvidd I set it to 1000ms, but the jumps are sometimes 3 - 4 seconds. I was hoping that shutdownTransport() would do the trick. But that does not seem to help. It looks like I need to define a hardware_shutdown button or something.

    Development

  • Complete shutdown of MySensors in code possible ?
    GertSandersG GertSanders

    I'm building a MySensors aware clock. However, I need to provide for the situation that the netwerk is down (gateway without power, or not installed). Or there could be a problem with the radio. In all cases I want the clock to still start up and run without apparent slowdown.
    What I found was, that when I do not install a radio, the MySensors library is aware of this (a FALSE result from isTransportReady() ), but the MySensors code seems to take it's time and hog the processor by trying to reconnect.
    This is visible on my clock, because the time on the display seems to "freeze" for some seconds. As I use a real RTC, this not really a big problem, but it is visible none the less. And being a perfectionist, I do not want a clock which seems to jump a few seconds now and then.
    So the question is how to skip these processor intensive parts if the user accepts that the clock should work without MySensors integration.
    Any suggestion is fine :-)

    Development

  • Complete shutdown of MySensors in code possible ?
    GertSandersG GertSanders

    Is there a way to completely shutdown all MySensors code via code (not via compile defines, but a decision made in code) ?

    Development

  • What did you build today (Pictures) ?
    GertSandersG GertSanders

    @neverdie that is a nice pattern. I found that these things need time to draw. If anyone has a DXF file, I would love to try it.

    General Discussion

  • is there a #define symbol for the first really free EEPROM address ?
    GertSandersG GertSanders

    is there a #define symbol for the first really free EEPROM address ?

    From the .h file I gather that EEPROM_LOCAL_CONFIG_ADDRESS and higher are free of my own use ???

    Development

  • What did you build today (Pictures) ?
    GertSandersG GertSanders

    @neverdie I will publish the project once it has advanced a bit more (still need to design the PCB for this box).

    General Discussion

  • What did you build today (Pictures) ?
    GertSandersG GertSanders

    @neverdie nope, but it is inspired by oriental frames, I just made that based on what I saw on one of my cabinets (which I bought while living in Singapore).

    General Discussion

  • What did you build today (Pictures) ?
    GertSandersG GertSanders

    One of three ongoing projects:

    0_1526832472969_IMG_0418.jpg

    0_1526832993103_IMG_0422.jpg

    lasercut box
    atmega1284p based
    DS3231 rtc (very accurate and 2 alarms!)
    LDR
    20 by 4 LCD, two sizes of numbers, menu driven setup
    buzzer
    leds for moodlighting
    doppler for proximity detection
    encoder for scrolling through values (for setting time)
    buttons with LED feedback for interactivity
    mp3 player
    most interface objects MySensorised :-)

    This entry is to boost my energy, because we are still a long way from home (pcb is still not made, focus is now on prototype and software).

    General Discussion

  • Is there a way to check presence of a MySensors network, and proceed without if not found ?
    GertSandersG GertSanders

    @mfalkvidd
    Nope, I probably got this from a forum message somewhere. I’m not sure where I got the suggestion to use the define.
    The thing is, it is very nice to have this #define, but as @Neverdie said, it would be nice to avoid that a node “hangs” if the gateway is unavailable. As far as I can see, there is no DEBUG message if the network is not reachable. And for a new MySensors user a hanging node is really confusing (it is sometimes for me as well). So this #define will now be part of me ‘default’ template until the standard behaviour is adapted.

    Development

  • Is there a way to check presence of a MySensors network, and proceed without if not found ?
    GertSandersG GertSanders

    @mfalkvidd from an example where it mentioned

    #define MY_TRANSPORT_WAIT_READY_MS 5000
    

    I would expect this to be the default, and not '0'

    Development

  • Is there a way to check presence of a MySensors network, and proceed without if not found ?
    GertSandersG GertSanders

    @mfalkvidd

    I'm not sure if the current default behaviour of MySensors is to wait for 5 seconds before giving up and moving on. I was under the impression that a node would try to find a network until my hair grows back.

    When the define is included in the sketch, it clearly does it's job.

    @NeverDie probably meant that we should not need to set the define, unless we want to change the default 5sec wait time, or if we explicitly want to have the node hang until a network is found.

    So the question is, is the default behaviour to keep looking for a network, or does the library stop after 5sec and move on with the setup() ?

    Development

  • 💬 Raspberry Pi gateway interface
    GertSandersG GertSanders

    @pihome I have now used it first as a serial gateway. Now I'm using it as a ethernet gateway (since Raspberry gateway code is now included in MySensors build).

    OpenHardware.io domoticz raspberry gateway nrf24l01+

  • [SOLVED] Anyone a working example of the combination NewPing 1.9 and MySensors 2.2.0 ?
    GertSandersG GertSanders

    @gertsanders [SOLVED]: a wrong type in a declaration gave constant '0' values. Now corrected and distances is now measured correctly.

    Development

  • [SOLVED] Anyone a working example of the combination NewPing 1.9 and MySensors 2.2.0 ?
    GertSandersG GertSanders

    Does anyone have a working example of the combination NewPing 1.9 and MySensors 2.2.0 ?

    I keep getting distance = 0, while the basic distance sensor sketch works perfectly (on the same setup), so the hardware side is OK.

    Development
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular