Skip to content
  • MySensors
  • 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
ramoncarranzaR

ramoncarranza

@ramoncarranza
About
Posts
48
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • 💬 Infrared Sender and Receiver
    ramoncarranzaR ramoncarranza

    @Talat-Keleş
    Hi, I am having an issue compiling the sketch and was wondering if you had any input or could help me out, This is what I get back when I try to compile;
    0_1483733093476_upload-fba9c55f-1a02-4b17-b7ff-bc75aadb47d1

    Announcements

  • 💬 Air Humidity Sensor - DHT
    ramoncarranzaR ramoncarranza

    @hek how do I change fro C to F?

    Announcements

  • 💬 Light Level Sensor - LM393
    ramoncarranzaR ramoncarranza

    @hek will do thanks

    Announcements

  • 💬 Light Level Sensor - LM393
    ramoncarranzaR ramoncarranza

    @hek what extra code do I need to add to the sketch so tha it sends the tripped value to my gateway?

    Announcements

  • 💬 Light Level Sensor - LM393
    ramoncarranzaR ramoncarranza

    @hek
    int soundDetectedPin = 10; // Use Pin 10 as our Input
    int soundDetectedVal = HIGH; // This is where we record our Sound Measurement
    boolean bAlarm = false;

    unsigned long lastSoundDetectTime; // Record the time that we measured a sound

    int soundAlarmTime = 500; // Number of milli seconds to keep the sound alarm high

    void setup ()
    {
    Serial.begin(9600);
    pinMode (soundDetectedPin, INPUT) ; // input from the Sound Detection Module
    }
    void loop ()
    {
    soundDetectedVal = digitalRead (soundDetectedPin) ; // read the sound alarm time

    if (soundDetectedVal == LOW) // If we hear a sound
    {

    lastSoundDetectTime = millis(); // record the time of the sound alarm
    // The following is so you don't scroll on the output screen
    if (!bAlarm){
      Serial.println("LOUD, LOUD");
      bAlarm = true;
    }
    

    }
    else
    {
    if( (millis()-lastSoundDetectTime) > soundAlarmTime && bAlarm){
    Serial.println("quiet");
    bAlarm = false;
    }
    }

    Announcements

  • 💬 Light Level Sensor - LM393
    ramoncarranzaR ramoncarranza

    @hek I found this sketch, but how do I incorporate it to my sensors library and serial gateway?

    Announcements

  • 💬 Light Level Sensor - LM393
    ramoncarranzaR ramoncarranza

    @hek hi, I've been searching to see if I can find anything on th LM393 Sound sensor, I know I saw one but can't find it, looking to build a simple soundsensor with the LM393 unit.

    Announcements

  • How to build a repeater
    ramoncarranzaR ramoncarranza

    no need to change anything on your original sensors and and yes it will relay signals from multiple sensors to your gateway/controller. Just our of curiosity, what controller are you using???

    General Discussion

  • How to build a repeater
    ramoncarranzaR ramoncarranza

    @stingone yep all you have to do is upload it to your radio set-up and that's it, but you do waste a board and a radio unit, but in MY case is well worth it.

    General Discussion

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    @hek said:

    senile
    are the the sensors/nodes awake at all times by default?

    Vera

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    thanks so much, I am becoming a pro at this, one day YOU will come to me for questions lol.

    Vera

  • How to build a repeater
    ramoncarranzaR ramoncarranza

    @scalz Thanks so much I was looking for something like this as well, thanks again

    General Discussion

  • How to build a repeater
    ramoncarranzaR ramoncarranza

    @stingone hi, the mysensor master library comes with an example file to create a "RepeaterNode" I've built 4 of them using an Arduino nano and a radio module ( https://www.mysensors.org/build/connect_radio) they work very well for me.

    General Discussion

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    @hek hi, how can I activate repeater mode on a particular sensor?, I've had to build 2 repeating nodes so far to be able to reach a couple of my sensors. I am adding more sensors as we speak and and they are getting farther and farther, I know I will need a ton of repeaters, but I hate to waste a radio and an Arduino board just for repeaters.
    Thanks

    Vera

  • 💬 Air Humidity Sensor - DHT
    ramoncarranzaR ramoncarranza

    @mikeS Thanks so much for your reply, it's working perfectly now.

    Announcements

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    @hek got it
    Thanks

    Vera

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    @hek I got my sensors working now. The radio unit on the GW was defective, so I swapped it out and things are working fine, just need to change the readings on my DHT from C to F, how would I do that?

    Vera

  • 💬 Air Humidity Sensor - DHT
    ramoncarranzaR ramoncarranza

    @hek
    hi, how do I change the readings from C to F?
    My sensor works fine, by I get the readings I celsius

    Announcements

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    @hek hi, this is what the Motion Sensor Log displays:

    0_1479059941596_upload-ad51ad8d-215b-4334-9e15-f7121e53a15f

    Vera

  • UI5 Mysensors library 2.0 gateway issues
    ramoncarranzaR ramoncarranza

    got it thanks

    Vera
  • Login

  • Don't have an account? Register

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