Search found 96 matches

by bellad
Sun Mar 27, 2022 7:56 am
Forum: General Discussion and Questions
Topic: webrepl close session
Replies: 0
Views: 9569

webrepl close session

Hello,
howto close session command with webrepl?
open session for put file : ./webrepl_cli.py -p XXXXXXX p0.txt 192.168.1.200
close session or disconnect command ?

thank you
by bellad
Fri Dec 31, 2021 5:50 pm
Forum: General Discussion and Questions
Topic: irq ??
Replies: 7
Views: 20110

Re: irq ??

i will add a attiny13 for the adc with pin out > pin in irq of esp32 , because it is necessary to stop the motor if this one forces
by bellad
Fri Dec 31, 2021 4:39 pm
Forum: General Discussion and Questions
Topic: irq ??
Replies: 7
Views: 20110

Re: irq ??

ok , thank you scruss , I will do otherwise
by bellad
Thu Dec 30, 2021 10:33 am
Forum: General Discussion and Questions
Topic: HLK-W806 card
Replies: 0
Views: 9764

HLK-W806 card

hello,
this card is interesting, to be continued in micropython, for the moment too recent

what do you think ?
by bellad
Mon Dec 20, 2021 3:05 pm
Forum: General Discussion and Questions
Topic: irq ??
Replies: 7
Views: 20110

Re: irq ??

ok ,thank you

another question related to irq ,
i want make with irq , read adc , if adc + 10% > motor stop
this for overcurrent motor
but i not how to do it , it's possible ?
by bellad
Sun Dec 19, 2021 2:35 pm
Forum: General Discussion and Questions
Topic: irq ??
Replies: 7
Views: 20110

irq ??

i am with the IRQ and on https://docs.micropython.org/en/latest/ ... e.Pin.html
the IRQ trigger type :
Pin.IRQ_FALLING
Pin.IRQ_RISING
Pin.IRQ_LOW_LEVEL
Pin.IRQ_HIGH_LEVEL

but if i put Pin.IRQ_LOW_LEVEL or Pin.IRQ_HIGH_LEVEL

it tells me that it does not exist !!!
it is not for esp32 ??
by bellad
Sun Dec 19, 2021 10:05 am
Forum: General Discussion and Questions
Topic: webrepl get more file
Replies: 0
Views: 9463

webrepl get more file

hello , i have 11 x esp32 with 14 file each , i try get this with import time import os for o in range(200,212): u='' s='' for i in range(7): u= './webrepl_cli.py -p xxxxxxx 192.168.1.'+str(o)+':t'+str(i)+'.txt /root/esp_sondes/'+str(o)+'/t'+str(i)+'.txt' print(u) os.system(u) time.sleep(1) s= './we...
by bellad
Mon Dec 13, 2021 3:17 pm
Forum: ESP32 boards
Topic: gpio pullup intern extern
Replies: 4
Views: 4611

Re: gpio pullup intern extern

ok , thank , i think use optocoupler
by bellad
Sat Dec 11, 2021 7:00 pm
Forum: ESP32 boards
Topic: gpio pullup intern extern
Replies: 4
Views: 4611

Re: gpio pullup intern extern

yes i've disconnecting everything from it, and powering , nothing
I will put a new and just put

Code: Select all

BTN_Ouverture = Pin(19, Pin.IN) 
BTN_Pieton = Pin(18, Pin.IN 
with extern 10k

you have line driver chips name ?

thank
by bellad
Sat Dec 11, 2021 3:04 pm
Forum: ESP32 boards
Topic: gpio pullup intern extern
Replies: 4
Views: 4611

gpio pullup intern extern

Hello, i 2 BP ( 1 on gpio 18 and 2 gpio 19 ) in my prog BTN_Ouverture = Pin(19, Pin.IN, Pin.PULL_UP) BTN_Pieton = Pin(18, Pin.IN, Pin.PULL_UP) but the wires are 15m long and no function i'have put resistor 10k on 3.3v > pin18 and 10k on 3.3v > pin 19 the esp32 does not work anymore !! (dead) what a ...