Search found 7 matches

by M.fathy
Fri May 10, 2019 7:43 pm
Forum: ESP8266 boards
Topic: MAX30102 Sensor
Replies: 1
Views: 1983

Re: MAX30102 Sensor

hello try this one https://github.com/kandizzy/esp32-micropython with main file like this import machine, network, utime, neopixel, time import ubinascii from pye import pye from ppg.MAX30105 import ParticleSensor from ppg.heartbeat import HeartBeat # gpio== from machine import Pin, ADC #ws2812, pie...
by M.fathy
Tue Oct 02, 2018 5:29 pm
Forum: MicroPython pyboard
Topic: CC3200 upip error
Replies: 2
Views: 1828

Re: CC3200 upip error

Before I try to download file by ampy I try to import all modules that is included the upip And upip_utarfile and I am shocked that uctypes built-in not build in board I am not sure that is quitly building right if someone have issue like this or another way to build the micropython firmware with al...
by M.fathy
Tue Oct 02, 2018 9:05 am
Forum: MicroPython pyboard
Topic: CC3200 upip error
Replies: 2
Views: 1828

CC3200 upip error

recently i run micropython on my simplelink CC3200 LaunchPad as steps : [(http://processors.wiki.ti.com/index.php/User:Dbartlett/MicroPython_CC3200)] but i cant find upip and i have not find any way to install it on my board has any one find way to install? the error from repl as import upip Traceba...
by M.fathy
Wed Sep 12, 2018 6:51 pm
Forum: General Discussion and Questions
Topic: Maximum and Minimum array
Replies: 2
Views: 2081

Re: Maximum and Minimum array

thanks Mr.peter i didn't figure it same python numpy module
by M.fathy
Wed Sep 12, 2018 4:55 pm
Forum: General Discussion and Questions
Topic: Maximum and Minimum array
Replies: 2
Views: 2081

Maximum and Minimum array

has anyone neat way to get Maximum and Minimum of array :) :) :)
by M.fathy
Sun Aug 26, 2018 8:12 am
Forum: ESP32 boards
Topic: how to receive integer from uart 1
Replies: 3
Views: 2871

Re: how to receive integer from uart 1

It is working thanks for your concern
by M.fathy
Fri Aug 24, 2018 3:33 pm
Forum: ESP32 boards
Topic: how to receive integer from uart 1
Replies: 3
Views: 2871

how to receive integer from uart 1

Hello i have solved problem with my esp32 that i want to share it with others . Since the Uart is receive only char with 1 bytes so if you want to receive an integer with 2 bytes you must receive two char and merge them (or combine) with each other i simple do that import machine buf='' lower='' ##g...