Search found 15 matches

by katesimon123
Fri Jul 02, 2021 10:10 pm
Forum: ESP8266 boards
Topic: ESP8266 CH340G MAX7219 not displaying correctly
Replies: 2
Views: 1959

Re: ESP8266 CH340G MAX7219 not displaying correctly

I have once worked on MAX7219 and designed a scrolling text on LED Matrix 8x8, although I have used Arduino Nano for this project. Try this code out:

Code: Select all

import max7219.led as led

device = led.matrix()
device.show_message("Hello world!")
by katesimon123
Fri Jul 02, 2021 10:02 pm
Forum: General Discussion and Questions
Topic: Microphone library in the micro-bit editor?
Replies: 3
Views: 1533

Re: Microphone library in the micro-bit editor?

I have searched online and seems like there's no such library designed yet. You should design its library as you have already worked on the board. I have once worked on audio signals but I have used a TDA2030 audio amplifier. If you don't want to go through the software library trouble.
by katesimon123
Fri Jul 02, 2021 9:56 pm
Forum: General Discussion and Questions
Topic: Can't Serial into MicroPython ESP8266
Replies: 2
Views: 1481

Re: Can't Serial into MicroPython ESP8266

bitninja wrote:
Tue Jun 15, 2021 4:18 pm
ahh I found the info here... Raspberry Pi Pico
Thanks for the link, got the required info.
by katesimon123
Tue Jun 29, 2021 1:11 pm
Forum: General Discussion and Questions
Topic: Filesystem Max Writes - Does MicroPython manage dynamic wearing?
Replies: 3
Views: 1850

Re: Filesystem Max Writes - Does MicroPython manage dynamic wearing?

Yeah, littlefs works better than FAT in the file system. I have worked on it in the Raspberry Pi 4 Project.
by katesimon123
Tue Jun 29, 2021 1:00 pm
Forum: General Discussion and Questions
Topic: Is there a MicroPython port of the Arduino's CapacitiveSensor library? (DIY "capacitive" touch sensor)
Replies: 4
Views: 2112

Re: Is there a MicroPython port of the Arduino's CapacitiveSensor library? (DIY "capacitive" touch sensor)

snake77 wrote:
Sun Jun 27, 2021 12:42 pm
Hmm yes. Maybe I could do it. Not sure.
Yeah it won't be that difficult, capacitive touch sensor is a simple analog sensor, so you should try creating its library. I have found this capacitive touch sensor library for Proteus, I hope it will help in your project.
by katesimon123
Tue Jun 29, 2021 12:14 pm
Forum: General Discussion and Questions
Topic: uasyncio behaves differently than regular Python asyncio: task just keeps running
Replies: 3
Views: 1623

Re: uasyncio behaves differently than regular Python asyncio: task just keeps running

Wow, you found a bug in MicroPython, that's kind of awesome in a way. :lol: Btw I once encountered a similar issue while working on Arduino UNO and RPi0, go through a lot of trouble in solving it.
by katesimon123
Tue Jun 29, 2021 12:12 pm
Forum: General Discussion and Questions
Topic: Get current Bitcoin price as an integer?
Replies: 7
Views: 8361

Re: Get current Bitcoin price as an integer?

brittany wrote:
Tue Jun 29, 2021 9:28 am
I used the API from blockchain.info for getting Bitcoin price data. From a quick glance at their site, it looks like they also offer Ethereum and BCH data.
There must be some data limit on it as on all Blockchain Technology related stuff, how many queries you can make per month for free?
by katesimon123
Thu Jun 24, 2021 6:01 am
Forum: General Discussion and Questions
Topic: MicroPython how to achieve communication between ESP32 + RC522 (read and write cards)
Replies: 4
Views: 29106

Re: MicroPython how to achieve communication between ESP32 + RC522 (read and write cards)

RC522 is an SPI module, so you can easily interface it with SPI pins of ESP32. You need to download its third-party library and you will find ready to run examples to test it out. Try those examples and share your results.
by katesimon123
Thu Jun 24, 2021 5:54 am
Forum: General Discussion and Questions
Topic: Submodules and Classes in C modules
Replies: 8
Views: 2857

Re: Submodules and Classes in C modules

Try this one out: mypackage ├── __init__.py ├── one.py # contains "import two" └── two ├── __init__.py ├── two.py # contains "import three" └── three ├── __init__.py └── three.py And then, you can access the package with: import mypackage.one import mypackage.one.two import mypackage.one.two.three Y...