MySensors VS awesome-selfhosted

Compare MySensors vs awesome-selfhosted and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
MySensors awesome-selfhosted
8 765
1,290 177,940
0.4% 2.1%
4.6 8.7
about 1 month ago 7 days ago
C++ Makefile
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

MySensors

Posts with mentions or reviews of MySensors. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-28.
  • Ask HN: How have you engineered the shit out of your home's front entrance?
    2 projects | news.ycombinator.com | 28 Nov 2023
    Engineering implies working within constraints. Most people in this realm only have to deal with the spouse acceptance factor as a limiter.

    Went from openhab -> homeassistant -> Node-RED. Then sprinkle in MySensors, Frigate, and Double-Take, but not on just the entrance, go for the perimeter then defense in depth.

    https://www.mysensors.org/

    https://frigate.video/

    https://github.com/jakowenko/double-take

  • Meshtastic and LoRa are “dangerous” (YouTube)
    1 project | news.ycombinator.com | 18 Sep 2023
    Mestastic has been doing fine work. I'm not a fan of the CLA though.

    MySensors, IM(very)HO is a better system if you are building your own gear. They too have CLA requirements.

    https://www.mysensors.org/

  • How to connect my coffee machine
    2 projects | /r/arduino | 25 Mar 2023
    /** * The MySensors Arduino library handles the wireless radio link and protocol * between your home built sensors/actuators and HA controller of choice. * The sensors forms a self healing radio network with optional repeaters. Each * repeater and gateway builds a routing tables in EEPROM which keeps track of the * network topology allowing messages to be routed to nodes. * * Created by Henrik Ekblad * Copyright (C) 2013-2015 Sensnology AB * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors * * Documentation: http://www.mysensors.org * Support Forum: http://forum.mysensors.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. * ******************************* * * DESCRIPTION * * Simple binary switch example * Connect button or door/window reed switch between * digitial I/O pin 3 (BUTTON_PIN below) and GND. * http://www.mysensors.org/build/binary */ // Enable debug prints to serial monitor #define MY_DEBUG // Enable and select radio type attached #define MY_RADIO_RF24 //#define MY_RADIO_RFM69 #include #include #define CHILD_ID 3 #define BUTTON_PIN 3 // Arduino Digital I/O pin for button/reed switch Bounce debouncer = Bounce(); int oldValue=-1; // Change to V_LIGHT if you use S_LIGHT in presentation below MyMessage msg(CHILD_ID,V_TRIPPED); void setup() { // Setup the button pinMode(BUTTON_PIN,OUTPUT); // Activate internal pull-up digitalWrite(BUTTON_PIN,LOW); // After setting up the button, setup debouncer debouncer.attach(BUTTON_PIN); debouncer.interval(5); } void presentation() { // Register binary input sensor to gw (they will be created as child devices) // You can use S_DOOR, S_MOTION or S_LIGHT here depending on your usage. // If S_LIGHT is used, remember to update variable type you send in. See "msg" above. present(CHILD_ID, S_DOOR); } // Check if digital input has changed and send in new value void loop() { debouncer.update(); // Get the update value int value = debouncer.read(); if (value != oldValue) { // Send in the new value send(msg.set(value==LOW ? 1 : 0)); oldValue = value; } }
  • Stromversorgung für ESP32 & Co.
    1 project | /r/selbermachen | 31 Oct 2022
  • I've got a old raspberry pi3 used for gaming but no.longer use it , has anyone got.any cool or unique ideas to use it for ?
    3 projects | /r/RASPBERRY_PI_PROJECTS | 31 Aug 2022
    If you like the idea of a smart home but worried about the S in IOT check out MySensors.
  • DIY TV-box project (Advice requested)
    2 projects | /r/diyelectronics | 2 Jul 2022
    I have had great fun and good use of MySensors, that could be a place to start. It’s a very friendly and supportive community.
  • I want to build a personal gateway. No LoraWAN or TTL.
    4 projects | /r/Lora | 14 Mar 2022
    As mentioned, chirpstack works well if you still want to use LoRaWAN. Alternatively, you can use a system such as https://www.mysensors.org/ which builds its own protocol on top of lora. Finally, you can write everything from scratch using radio libraries (eg: https://www.airspayce.com/mikem/arduino/RadioHead/)
  • Choosing between LoRa 868MHz and Xbee 2.4GHz for long-range comms
    1 project | /r/diyelectronics | 6 Mar 2022
    If you haven't already defined your sensor modules, have a look at the MySensors framework. It works via a tree network where every node works as a repeater so you can easily build a large and sparse network with encryption at very low cost. It also integrates seamlessly with Home Assistant and most other HA controllers. I've used it at home with good results and it supports the RFM69 radio using India frequency bands.

awesome-selfhosted

Posts with mentions or reviews of awesome-selfhosted. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-13.
  • Self-Hosted Is Awesome
    6 projects | news.ycombinator.com | 13 Apr 2024
  • Browse Self-Hosted Software
    3 projects | news.ycombinator.com | 4 Apr 2024
    None of these lists ever seem to be as fleshed out, up to date, or well organized as https://github.com/awesome-selfhosted/awesome-selfhosted , though imo any more attention on the self hosted scene is awesome. We're now self hosting everything at my co-op, and it's a dream. Saves us money, provides learning opportunities, potentially is getting us work (managed hosting providers asking if we can be a devshop for their clients, for example), and lets us give back to the FOSS community as we uncover bugs.

    We use:

    * Matrix / Synapse for comms (slack alternative) (managed hosting through etke.cc)

  • Home Lab Guide
    12 projects | news.ycombinator.com | 8 Mar 2024
    There are a ton of resources about HW aspects of home labs for beginners but not so much for what to run on them and why. There are lists like https://github.com/awesome-selfhosted/awesome-selfhosted but they are confusing for absolute beginners like me. Are there any good SE project guides you know?
  • Ente: Open-Source, E2E Encrypted, Google Photos Alternative
    23 projects | news.ycombinator.com | 1 Mar 2024
    This[1] seems like a well maintained repo.

    And thank you for the pointers, we'll try to get ourselves added here :)

    [1]: https://github.com/awesome-selfhosted/awesome-selfhosted

  • I turned my open-source project into a full-time business
    6 projects | news.ycombinator.com | 27 Feb 2024
    I've always felt like FOSS as a philosophy has been tangled up in trying to participate effectively in capitalism, when that was never really the point, nor really very possible unless you're lucky, nor really worth it. The origin of FOSS as I understand it from reading books like "Hackers" is from people that were mad that access was being restricted to systems and code from people that really wanted to use these systems and code, and hack them, and learn from them. I recall that one of the things Stallman likes to brag about from that time is not related to FOSS at all, but instead successfully decrypting a bunch of passwords, emailing the decrypted passwords to people, and recommending they instead set the password to an empty string instead. It was about keeping access to the system Free as in Beer.

    I suppose some have argued that FOSS represents a Public Commons in the way that fields and wells and physical markets used to, but none of those things survived capitalism, so I don't see why a technological commons should be expected to either.

    For me I've been thinking lately that perhaps those interested in FOSS should instead consider how we can use FOSS to detach ourselves from needing to participate in global capitalism at all. Is there FOSS technology we can use to liberate people from things they need to spend money on right now? An example could be the Global Village Construction Set: https://www.opensourceecology.org/gvcs/ a set of open source designs for things like hydraulic motors or microcombines or steam engines that you can build on your own, usually not for cheap, but for far, far cheaper than you could buy from John Deere. Here's another cool project, some guy has just been building things like solar panels and basic circuit boards on his property from very base components for years: https://simplifier.neocities.org/

    Some other FOSS liberation examples:

    Combining a tool like Jellyfin with Sonarr, Radarr, and etc, can liberate people from their 5 different media subscriptions. Or at least they can still buy DVDs and put them on Jellyfin to have the convenience of streaming with the media library of their own choosing.

    Deploying Matrix or another FOSS communication tool can let organizations have enterprise-level communication software without paying HUGE seat-based license fees to corporations like Slack.

    In fact there's many ways to liberate yourself from paid SaaS in this list: https://github.com/awesome-selfhosted/awesome-selfhosted at my co-op we self-host and deploy all our services for this reason, it saves us a TON of money.

    I don't have many other examples to mind because this is something I'm actively still researching. Friends in Venezuela though especially tell me how FOSS technology can liberate in ways I wouldn't expect here with my 64gb RAM machine with the latest processor, that I can easily replace components on on a whim. Such as how they can keep all their broken down machines pieced together from junkyards running pretty ok on various linux distros, and how they can sell creative work using free tools like gimp (no, really) or darktable. Like as not they'll just pirate software, though, but apparently FOSS often runs better on shitty hardware.

    Anyway my long term plan is to find or build more and more things that let people just not spend money on things anymore. That could be by making it easier to not have to throw things away anymore, or building tools to replace proprietary ones, or, idk, other ways I haven't thought of.

  • Stream to Chromecast with resolved, vlc and bash
    5 projects | news.ycombinator.com | 7 Jan 2024
    Dashboard in what sense? Is this what you had in mind or no?

    https://github.com/awesome-selfhosted/awesome-selfhosted#per...

  • Awesome-Selfhosted
    1 project | news.ycombinator.com | 2 Jan 2024
  • Ask HN: Favorite place to discover open source projects?
    1 project | news.ycombinator.com | 27 Dec 2023
    I often skim through various "awesome lists" (e.g. [1]) and communities interested in open source apps like r/selfhosted [2]

    [1] https://github.com/awesome-selfhosted/awesome-selfhosted

    [2] https://www.reddit.com/r/selfhosted/

  • Ask HN: How do I leave Dropbox
    2 projects | news.ycombinator.com | 14 Dec 2023
    1. https://nextcloud.com/ https://proton.me/drive https://github.com/awesome-selfhosted/awesome-selfhosted#fil...

    2. Download all data locally then upload elsewhere.

    3. https://help.dropbox.com/security/privacy-policy-faq#7.-How-...

  • Calling all ADHD entrepreneurs. How'd you do it? How do you make good on your responsibilities?
    2 projects | /r/irlADHD | 7 Dec 2023

What are some alternatives?

When comparing MySensors and awesome-selfhosted you can also consider the following projects:

esphome - ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.

Technitium DNS Server - Technitium DNS Server

RadioLib - Universal wireless communication library for embedded devices

ThePornDB.bundle - ThePornDB.bundle Plex Metadata Agent

arduino-LoRa - An Arduino library for sending and receiving data using LoRa radios.

speedtest - Self-hosted Speed Test for HTML5 and more. Easy setup, examples, configurable, mobile friendly. Supports PHP, Node, Multiple servers, and more

RadioHead - Version of RadioHead library for Teensy boards

focalboard - Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.

Temper-ESP8266 - Temper is a compact temperature sensor based on ESP8266 and SHT30 with large 13x7 pixel led display.

stash - An organizer for your porn, written in Go. Documentation: https://docs.stashapp.cc

BluePillDemo - A collection of small example projects tailored for the Blue Pill board created in STM32CubeIDE. No further updates.

porn-vault - 💋 Manage your ever-growing porn collection. Using Vue & GraphQL