Search found 6 matches

by dehmoubedr7811
Tue Aug 31, 2021 1:32 am
Forum: General Discussion and Questions
Topic: I started a company that teaches MicroPython with an ESP8266!
Replies: 3
Views: 1530

Re: I started a company that teaches MicroPython with an ESP8266!

pythoncoder - this is an awesome documentation. Thanks for putting it together!

bitninja - Thank you so much. That means a lot!
by dehmoubedr7811
Sat Aug 28, 2021 6:40 pm
Forum: General Discussion and Questions
Topic: I started a company that teaches MicroPython with an ESP8266!
Replies: 3
Views: 1530

I started a company that teaches MicroPython with an ESP8266!

Hi all, I wanted to first say thank you to every active member for developing MicroPython and give a brief story of how I got started. My first exposure to MicroPython was in an Internet of Things course that I took my junior year of college. Previously, I had used an Arduino with cookie cutter C fo...
by dehmoubedr7811
Mon Jun 07, 2021 6:23 pm
Forum: Programs, Libraries and Tools
Topic: Firmware simplification for ESP8266 question.
Replies: 0
Views: 1101

Firmware simplification for ESP8266 question.

Hi all, I’m currently teaching a course on Microcontroller programming for first-time coders and I wanted to make a simplification to the ESP8266 firmware to support initialization of an input and output GPIO Pin by using a case insensitive string rather than an instance variable from the machine li...
by dehmoubedr7811
Thu Apr 22, 2021 3:22 am
Forum: Programs, Libraries and Tools
Topic: More convenient pin initialization for ESP8266
Replies: 5
Views: 2541

Re: More convenient pin initialization for ESP8266

Thank you so much Robert for taking the time to write all of that. It worked! I will definitely look to extend the favor to someone else in the future!

Best,
Ryan Dehmoubed
by dehmoubedr7811
Wed Apr 21, 2021 6:45 pm
Forum: Programs, Libraries and Tools
Topic: More convenient pin initialization for ESP8266
Replies: 5
Views: 2541

Re: More convenient pin initialization for ESP8266

I didn't give enough context. I'm trying to teach a summer camp where we hope to teach MicroPython to beginners. We would still want to provide a custom firmware because it makes it a lot less tedious for beginners to initialize different pins on the board. We could it a node MCU firmware to make it...
by dehmoubedr7811
Wed Apr 21, 2021 4:36 am
Forum: Programs, Libraries and Tools
Topic: More convenient pin initialization for ESP8266
Replies: 5
Views: 2541

More convenient pin initialization for ESP8266

Hi all, I am trying to develop custom firmware for the ESP8266 module that can allow users to initialize Pins on an ESP8266 more conveniently. Below is an example of how I would want to instantiate the D6 pin using the custom firmware that I aim to develop. ESP8266 pinout: https://imgur.com/VN06Xxl ...