@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;
ramoncarranza
Posts
-
💬 Infrared Sender and Receiver -
💬 Air Humidity Sensor - DHT@hek how do I change fro C to F?
-
💬 Light Level Sensor - LM393@hek will do thanks
-
💬 Light Level Sensor - LM393@hek what extra code do I need to add to the sketch so tha it sends the tripped value to my gateway?
-
💬 Light Level Sensor - LM393@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 timeif (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;
}
} -
💬 Light Level Sensor - LM393@hek I found this sketch, but how do I incorporate it to my sensors library and serial gateway?
-
💬 Light Level Sensor - LM393@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.
-
How to build a repeaterno 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???
-
How to build a repeater@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.
-
UI5 Mysensors library 2.0 gateway issues@hek said:
senile
are the the sensors/nodes awake at all times by default? -
UI5 Mysensors library 2.0 gateway issuesthanks so much, I am becoming a pro at this, one day YOU will come to me for questions lol.
-
How to build a repeater@scalz Thanks so much I was looking for something like this as well, thanks again
-
How to build a repeater@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.
-
UI5 Mysensors library 2.0 gateway issues@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 -
💬 Air Humidity Sensor - DHT@mikeS Thanks so much for your reply, it's working perfectly now.
-
UI5 Mysensors library 2.0 gateway issues@hek got it
Thanks -
UI5 Mysensors library 2.0 gateway issues@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?
-
💬 Air Humidity Sensor - DHT@hek
hi, how do I change the readings from C to F?
My sensor works fine, by I get the readings I celsius -
UI5 Mysensors library 2.0 gateway issues@hek hi, this is what the Motion Sensor Log displays:
-
UI5 Mysensors library 2.0 gateway issuesgot it thanks