Navigation

    • Register
    • Login
    • Search
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Groups
    3. Controller Developer

    Group Details Private

    Controller Developer

    Controller developers

    Member List

    alowhum alowhum
    SlitheryImp SlitheryImp
    jsiddall jsiddall
    soif soif
    ErrK ErrK
    martinhjelmare martinhjelmare
    Bluefox Bluefox
    BartE BartE
    akbooer akbooer
    jkandasa jkandasa
    filoucaenais filoucaenais
    John John
    freedomotic freedomotic
    ntruchsess ntruchsess
    hleidecker hleidecker
    tekka tekka
    Dheeraj Dheeraj
    marceltrapman marceltrapman
    hari hari
    • RE: MyController Forum Registration

      @chrispy @mfalkvidd sorry for the inconvenience. I didn't notice it. I have enabled search option for guests.

      posted in MyController.org
      jkandasa
      jkandasa
    • RE: MYSBootloader 1.3 pre-release & MYSController 1.0.0beta

      @luizrrocha Can you post your sketch and (if available) debug log here?

      posted in Development
      tekka
      tekka
    • RE: Instable ESP32 MQTT gateway with RFM69

      @electrik Probably this is PubSubClient-related. Please provide additional infos:

      • ESP board definitions version
      • MySensors version
      • GW sketch
      posted in Troubleshooting
      tekka
      tekka
    • RE: [RFM95] Ant Switch/TxRx switch pins

      @eiten A similar approach was used for a NRF5 +PA/LNA module: https://github.com/mysensors/MySensors/pull/1414/files#diff-7b958e4728831b83d2359a08827bcae1R64-R80

      tekka007 created this issue in mysensors/MySensors

      open Multitransport implementation #1414

      posted in My Project
      tekka
      tekka
    • RE: ATC and repeating nodes

      @eiten Would be helpful to see the debug logs (in rfm/sx verbose mode)

      posted in Development
      tekka
      tekka
    • RE: CubeCell reloaded: the SX126x hal drivers, please test

      @eiten Yep, already saw this one. Based on the heltec implementation, the sx-registers are mapped to specific memory regions of the mcu. Would be interesting to have here a complete ASR-specific documentation...

      posted in Hardware
      tekka
      tekka
    • RE: CubeCell reloaded: the SX126x hal drivers, please test

      @eiten Great job! Did you come across an "usable" ASR6501 datasheet - so far the information on this SoC is rather sparse?

      posted in Hardware
      tekka
      tekka
    • RE: Modifying A0 value to Percentage

      Perhaps this code is of interest to you. It's the Candle plant health sensor. It's got all the bells and whistles you could want, including optional support for automated irrigation.

      One thing you'll notice in there is that the capacitive moisture sensors output voltages between 0 and 3. So in @rvendrame's code you may have to change the 1023 to 650, and also make sure no voltages higher than that would lead to percentages above 100%.

            int16_t moistureLevel = analogRead(analog_pins[i]);
            Serial.print(F("raw analog moisture value: "));
            Serial.println(moistureLevel);
      
            if( moistureLevel > 650 ){moistureLevel = 650;}
            moistureLevels[i] = map(moistureLevel,0,650,0,99); // The maximum voltage output of the capacitive sensor is 3V, so since we're measuring 0-5v about 614 is the theoretical highest value we'll ever get.
      

      I notice in your code that the title Analog Soil Moisture Sensorx3 is too long. It can't be longer than 25 characters.

      posted in General Discussion
      alowhum
      alowhum
    • RE: Something's cooking in the MySensors labs...

      Wait, wait.. what is that USB stick with the dual antennas? Is that a dedicated MySensors gateway device?

      // Ah, it's project Janus. AWESOME!

      posted in Announcements
      alowhum
      alowhum
    • RE: NRF24L01+ and NRF24L01+PA-LNA problems - testing in progress

      What @wiredfrank said. Don't use these unshielded PA device in the first place.

      posted in Troubleshooting
      alowhum
      alowhum