Thank you for your subscription and sharing this video.
@goochelaarmagicjimmy44323 жыл бұрын
perfect
@robojax3 жыл бұрын
Forget about this display, here is tue best display kzbin.info/www/bejne/qnbaiKaYfbZ0a7M I will make videos for this display
@goochelaarmagicjimmy44323 жыл бұрын
@@robojax i don't have this board. It's not posible withthe M1637 to see temperature on the wemos d1?
@raticalinc_restore_garage2 жыл бұрын
Is there an industrial coolant sensor, oil pressure and vacuum sensor that I can use?
@robojax2 жыл бұрын
so many important sensors. Unfortunately I have not see any of these.
@danilom31665 жыл бұрын
Thank you!
@robojax5 жыл бұрын
you are welcome.
@UpSpider6 жыл бұрын
Is not possible to show temperature and humidity alternatively with this setup? Amazing video, by the way. Thank you for sharing.
@robojax6 жыл бұрын
sure it is possible. Everything that is inside the loop, just repeat them but change the getTemp("c")to getTemp("h")
@coroomchannel4143 жыл бұрын
How to display numbers with commas? For example 27.30.
@robojax3 жыл бұрын
forget about this module. see better display kzbin.info/www/bejne/mXvUnougereqobM
@coroomchannel4143 жыл бұрын
@@robojax How to display 3 temperature numbers on seven segment?
@listrikb68854 жыл бұрын
How to use the temperature setting with a mini push button?
@robojax4 жыл бұрын
this is sensor, you can't set the temperature. I did not understand.
@listrikb68854 жыл бұрын
@@robojax I mean push button limits the readout at a certain temperature to command the relay on
@listrikb68854 жыл бұрын
@@robojax do you know climate temperature controller like Temptron from Agrologic? Like that's how it works
@ismamalanas60476 жыл бұрын
Plz make temparature and humidity controler
@robojax6 жыл бұрын
This is the module and I have done over 10 videos. You should find it.
@cbparks61554 жыл бұрын
@@robojax HI. Thank you for the great information. I have the same question and cannot find your video for this. Would you mind providing some suggestions on how to modify your arduino, DHT, TM1637 code so that both temperature and humidity are sequentially displayed? I am trying to generate a temperature reading for about 6 seconds and then the humidity reading for 3 seconds with a repeating loop of the readings. If you have already made this video would you mind providing the URL? Really appreciate any ideas. Thank you.
@bartekd35774 жыл бұрын
How to display 26,2C ?? With dht22??
@robojax4 жыл бұрын
I just checked the datasheet www.sparkfun.com/datasheets/Sensors/Temperature/DHT22.pdf and accuracy is ±0.5°C so you will not be able to get 0.2°C. Also I mentioned that you can't display decimal point on this module. it has too much hassle. I've prepared code to display decimal values shown in this video kzbin.info/www/bejne/oV7JZ5-trLqHd9U you may look at.
@bartekd35774 жыл бұрын
@@robojax I'd like to make a weather station. 4 digit 7 segment display tm1637. + dht22. I want to display the temperature with 1 decimal place. do you have ready code and schematic?
@robojax4 жыл бұрын
search my channel.
@listrikb68854 жыл бұрын
How to bring up 4 numbers and decimal?
@robojax4 жыл бұрын
with this module, you can't. you can use this kzbin.info/www/bejne/oV7JZ5-trLqHd9U
@MrQuanticox6 жыл бұрын
How to solve the problem with negative values? (for example temperature below 0C)
@robojax6 жыл бұрын
This module is Good for 0-50°C temperature readings ±2°C accuracy
@MrQuanticox6 жыл бұрын
@@robojax Hi, thx for replay. Finally I've solved this problem. Now TM1637 works also with negative values. As sensor I've LM35. I'm n00b so this may not be perfect but I will share my work: void loop() { delay(TEST_DELAY);// wait // **** TM1637 code start display.setBrightness(0);// set brightness uint8_t data[] = { 0x0, 0x0, 0x0, 0x0 };// clear display values display.setSegments(data);//clear display // **** TM1637 code end int val;// define variable int temp;// define variable val = analogRead(1); // read the analog value of the sensor and assign it to val temp = (125 * val) >> 8; // temperature calculation formula Serial.println(temp); if (temp > 0) { uint8_t data[] = {0x0, 0x0, 0x0, 0x58}; //Celsius sign display.setSegments(data); display.showNumberDec(temp, false, 2, 1); } else { uint8_t data[] = {0x40, 0x0, 0x0, 0x58}; //minus and Celsius sign display.setSegments(data); temp = -temp; //converting negative value to positive display.showNumberDec(temp, false, 2, 1); } delay(5000);// wait
@omoivo65257 жыл бұрын
i Need dht22 with LCD and Relay. Please
@robojax7 жыл бұрын
the code link is at the description. Here once again the link: goo.gl/696b39 You can use this relay video to connect it to relay: kzbin.info/www/bejne/a2m7iIl6o6dqidU I will try to create a video for this with relay and display.
@omoivo65257 жыл бұрын
RoboJax Videos Thanx
@budibahtiar78405 жыл бұрын
pls make ultrasonic sensor with 7segment or led matrix please :(
@robojax5 жыл бұрын
The video is here and you posted comment on that video, kzbin.info_T5GaY
@goochelaarmagicjimmy44323 жыл бұрын
Hi, if i use arduino uno it's work perfect..now i wanne upload for wemos D1 and it dont work:-( D:\Users\jimmy\Documents\Arduino ieuwe ieuwe.ino: In function 'float getTemp(String)': nieuwe:122:5: error: return-statement with no value, in function returning 'float' [-fpermissive] return; ^ exit status 1 return-statement with no value, in function returning 'float' [-fpermissive]
@goochelaarmagicjimmy44323 жыл бұрын
i find already, can upload to wemos d1 and ad code to see in the Blynk app, thanks for youre example