Search found 21 matches

by froussel
Sun Dec 29, 2019 5:22 pm
Forum: General Discussion
Topic: esp32-cam and web server
Replies: 1
Views: 2445

Re: esp32-cam and web server

sorry, it went off on its own :o
by froussel
Sun Dec 29, 2019 4:51 pm
Forum: General Discussion
Topic: esp32-cam and web server
Replies: 1
Views: 2445

esp32-cam and web server

Hi, I bought an esp32-cam and if it works perfectly to take photos and save them on the SD cartridge I can't use it in streaming The server connects well to the AP, it is an AP itself with an RSSi <40 my smartphone connects But the browser notifies me after a certain time reading error test with htt...
by froussel
Fri Dec 21, 2018 11:44 am
Forum: General Discussion
Topic: make few sound with a motor dc
Replies: 7
Views: 7778

Re: make few sound with a motor dc

did you test, you can drive the motor normal? Yes is the motor working? how much sink it? which motor you use? Brushed DC motor how you drive the motor by hardware? or do you use (later) motor drivers ics? ( example uln2003 ) and how looks your hardware setup ? Thing as https://www.pololu.com/produ...
by froussel
Wed Dec 19, 2018 7:50 pm
Forum: General Discussion
Topic: make few sound with a motor dc
Replies: 7
Views: 7778

Re: make few sound with a motor dc

I'm alone ?
by froussel
Wed Dec 12, 2018 10:03 pm
Forum: General Discussion
Topic: make few sound with a motor dc
Replies: 7
Views: 7778

Re: make few sound with a motor dc

I tried void motorAv() { digitalWrite(inaPin, HIGH); digitalWrite(inbPin, LOW); } void motorAr() { digitalWrite(inaPin, LOW); digitalWrite(inbPin, HIGH); } void motorStop() { digitalWrite(inaPin, LOW); digitalWrite(inbPin, LOW); } void playSound(uint16_t freq, uint16_t duration_msec, uint8_t amplitu...
by froussel
Fri Nov 16, 2018 5:14 pm
Forum: ESP32 Arduino
Topic: ESP32 and solar cells
Replies: 5
Views: 10476

Re: ESP32 and solar cells (solved)

Thanks !
by froussel
Thu Nov 15, 2018 8:55 pm
Forum: ESP32 Arduino
Topic: ESP32 and solar cells
Replies: 5
Views: 10476

Re: ESP32 and solar cells

Thanks
A small diagram would be a great help... I'm not electronics
by froussel
Thu Nov 15, 2018 8:06 am
Forum: ESP32 Arduino
Topic: ESP32 and solar cells
Replies: 5
Views: 10476

ESP32 and solar cells

As my ESP32 are of the kind scattered in the nature and accessible physically (also for a physical reset approximately every 6 months) they are powered by photovoltaic. Cells -> charger TP4056 -> 18650 -> 1S 3.7V 3A Li-Ion BMS PCM battery protection board 18650 lithium battery -> ESP32 (without boos...
by froussel
Tue Nov 13, 2018 12:33 pm
Forum: General Discussion
Topic: make few sound with a motor dc
Replies: 7
Views: 7778

Re: make few sound with a motor dc (solved)

Thanks!
Just must do it now :-)
by froussel
Fri Nov 02, 2018 9:06 am
Forum: General Discussion
Topic: make few sound with a motor dc
Replies: 7
Views: 7778

make few sound with a motor dc

By ordering the output pwm and / or the high of the H-bridge which commands the motor dc I saw a long time ago how to produce some sounds. But I forget that. I want to identify with the start of the micro controller that everything is ok after the motor will be normaly commanded A piece of code with...