Search found 16 matches

by rankit0092
Mon Sep 17, 2018 11:44 am
Forum: General Discussion
Topic: Esp32 and audio (text to speech)
Replies: 5
Views: 17394

Esp32 and audio (text to speech)

Hello Geeks, i have an RFID card Scanning System, I wanna include audio Output into this. What I wanna do is whenever an RFID card is Scanned, I want AUDIO output WELCOME "ANKIT" I don't wanna play any audio file like (.mp3, wav ,etc) so what I'm after is "TEXT TO SPEECH CONVERSION" AND I WANNA PLA...
by rankit0092
Tue Jun 12, 2018 5:19 am
Forum: General Discussion
Topic: Unable to read temperature data on ESP32 when WiFi is connected
Replies: 2
Views: 4147

Re: Unable to read temperature data on ESP32 when WiFi is connected

https://github.com/DavidAntliff/esp32-owb thank you so much for this library but I'm still not able to use it. I'm well aware of library usage but can you provide me a simple code that just read one single DS18b20 sensor. without addressing and all. I'm just about to finish my project of water qual...
by rankit0092
Fri Jun 08, 2018 3:48 am
Forum: General Discussion
Topic: Unable to read temperature data on ESP32 when WiFi is connected
Replies: 2
Views: 4147

Unable to read temperature data on ESP32 when WiFi is connected

Hello geeks, For my water quality measurement project I have to send some sensors data to server. For Temperature I'm using Dallas temperature DA18b20 sensor. It works fine without WiFi connection but when I'm adding WiFi connection code sensor gives -127 May b this is a library issue or hardware is...
by rankit0092
Thu May 24, 2018 5:41 am
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51234

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

With those resistor values, the formula for pH in your code should now be . . . . pHValue = 4.24*voltage+Offset; My ESP32 ADC functions over the range 0.17V to 3.15V (corresponding to the digital range 0 to 4095). With that voltage divider in place, the range at the input to the voltage divider wou...
by rankit0092
Wed May 23, 2018 7:54 am
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51234

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

With the input of the pH meter circuit board shorted out (or the electrode in a solution with pH=7) the output should be close to +2 volts. It will not be exactly +2V due mainly to the tolerance of resistor values. That's why when setting up your meter you need to put a value for "Offset" into the ...
by rankit0092
Tue May 22, 2018 5:54 am
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51234

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

@Archibald @ Deouss can u give me a way to find maximum output voltage of my water sensors? https://www.dfrobot.com/wiki/index.php/PH_meter_V1.1_SKU:SEN0161 https://www.dfrobot.com/wiki/index.php/Analog_ORP_Meter(SKU:SEN0165) this sensor gives results with Arduino but until now I'm unable to get pro...
by rankit0092
Mon May 07, 2018 5:55 am
Forum: General Discussion
Topic: ESP32 and AUDIO(text to speech)
Replies: 1
Views: 5482

ESP32 and AUDIO(text to speech)

for my in-house product of RFID card attendance system in the office. I received a data from my server. I just want to do is when a valid card is scanned by an employee, I want to put a "welcome (name of employee )to atoz family" msg. there is "TALKIE" library, but this library only works for Arduin...
by rankit0092
Thu May 03, 2018 5:58 am
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51234

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

I would use a simple amplifier with max 5V output or adjusted to scale between 0-5V output. There's no need for an amplifier. The sensors already have outputs in the range 0V to 5V so the voltage must be a reduced, not amplified, before going into the ESP32. Another way is also to run it again thro...
by rankit0092
Sun Apr 29, 2018 10:25 am
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51234

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

Option 1 Set the ADC to 10 bit resolution and attenuation to 6dB. Then carefully adjust the resistors of the divider circuit so 5V input gives 1023 and 0V input gives 0. Look at the graph here under the first section titled "ADC Calibration". You need to carefully adjust the input resistor so with ...
by rankit0092
Sat Apr 28, 2018 5:04 am
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51234

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

Thank you for all the support. I able to read analog reading on my esp32 but, now is there any coding logic to make, 5v ADC count = 3.3v ADC count ??? this is because I want same analog counts for later on so I must have to find a way to convert or MAP my counts same as ARDUINO(5v 10 bit ADC). pleas...