Search found 507 matches

by mcauser
Sat Dec 05, 2020 10:17 am
Forum: Other Boards
Topic: [nRF52] I2C reconstruct issues
Replies: 3
Views: 2533

[nRF52] I2C reconstruct issues

Found two few issues with HW I2C on the nRF52832. 1) Constructing a new I2C instance does not deinit the previous peripheral. 2) A soft reboot does not deinit the previous HW I2C. Running latest MicroPython on the Ebyte E73-TBB dev board (E73-2G4M04S1B module) MicroPython v1.13-221-gc8b055717 on 202...
by mcauser
Sat Dec 05, 2020 6:53 am
Forum: Other Boards
Topic: Simple cheap small board: NRF52 ?
Replies: 8
Views: 84502

Re: Simple cheap small board: NRF52 ?

EByte E73-TBB https://i.imgur.com/C4jyvFJ.jpeg Was pretty easy to flash MicroPython to it! EByte E73-TBB: https://www.aliexpress.com/item/4000516424563.html J-Link clone: https://www.aliexpress.com/item/4001335080402.html Install command line tools (on macOS): https://github.com/ARMmbed/homebrew-fo...
by mcauser
Wed Nov 18, 2020 3:29 am
Forum: Other Boards
Topic: [STM32F407VGT6] Board HELP!
Replies: 11
Views: 8339

Re: [STM32F407VGT6] Board HELP!

@wasp09 the board shown in that link above is a "DevEBox" from "MCUDev" in China. They normally sell them on mcudev.taobao.com, however some other shops on AliExpress are reselling them. If you look close in the top right corner on the back of the board, it says "mcudev.taobao.com". The same devs th...
by mcauser
Thu Nov 12, 2020 5:09 am
Forum: ESP32 boards
Topic: Four MCP23017 (I2C GPIO Expander) on one ESP32
Replies: 5
Views: 3697

Re: Four MCP23017 (I2C GPIO Expander) on one ESP32

Roberthh is spot on. That's a lot of IOs! What are you building? You can only have 8x MCP23017 chips on the same I2C bus, unless you use something like the TCA9548A, which give you another 7x I2C busses - well, more like channels on the bus. https://github.com/mcauser/micropython-tca9548a 8x I2C bus...
by mcauser
Mon Oct 05, 2020 11:33 pm
Forum: Other Boards
Topic: Simple cheap small board: NRF52 ?
Replies: 8
Views: 84502

Re: Simple cheap small board: NRF52 ?

If you're interested in using the EByte E73-TBB, have a look at these three: https://medium.com/@ly.lee/bluetooth-mesh-with-nrf52-and-apache-mynewt-44823407c471 https://medium.com/@ly.lee/coding-nrf52-with-rust-and-apache-mynewt-on-visual-studio-code-9521bcba6004 https://ssihla.wordpress.com/2019/07...
by mcauser
Mon Sep 28, 2020 3:20 pm
Forum: Drivers for External Components
Topic: HZ-1050 125 KHz RFID Reader
Replies: 0
Views: 2918

HZ-1050 125 KHz RFID Reader

MicroPython library for the HZ-1050 125 KHz RFID Reader:
https://github.com/mcauser/micropython-hz1050

Image
by mcauser
Sun Sep 27, 2020 12:07 pm
Forum: Drivers for External Components
Topic: TCA9548A 8ch I2C Multiplexer
Replies: 0
Views: 2395

TCA9548A 8ch I2C Multiplexer

Do you have a bunch of fixed I2C address devices, or exceeded your address select pin combinations? This little CJMCU I2C multiplexer module lets you spread the devices over 8 I2C channels and toggle between them. https://github.com/mcauser/micropython-tca9548a https://raw.githubusercontent.com/mcau...
by mcauser
Sun Sep 27, 2020 11:58 am
Forum: Drivers for External Components
Topic: MAX31855 Driver
Replies: 12
Views: 13704

Re: MAX31855 Driver

Deshipu's bitbucket is missing heaps of repositories, now that Atlassian has dropped mercurial support.
https://bitbucket.org/blog/sunsetting-m ... -bitbucket

Hi @deshipu, I cloned heaps of your repos, so if you've lost anything, I may have a copy that I can zip and send back.
by mcauser
Wed Sep 23, 2020 11:17 pm
Forum: Drivers for External Components
Topic: MAX44009 Ambient Light Sensor
Replies: 3
Views: 4269

Re: MAX44009 Ambient Light Sensor

Nice work! On my GY-49, I was unable to read 2 bytes starting from the lux high byte. Mine was not auto moving to the next register (lux low byte). When I readfrom_mem() multiple times on any register, it would just give me the same value repeated again and again. I couldn't just read the high byte ...