nk25719 / PMD___aka-KiCad-esp32-6leds-2switches-1pj-circuit-

In this repo I am practicing KICAD. Created an ESP32 DevKit V1 module and a PCB footprint. I designed a circuit around this ESP32 consisting of six lamps, four switches, and two power jacks and added a voltage regulater to Vin to maintain a supply of +5V. (This project was originally made of two switches and 1 power jack and was named homeWork2.)
0 stars 1 forks source link

Add Serial Port and LCD Splash Screen #56

Closed ForrestErickson closed 6 days ago

ForrestErickson commented 3 weeks ago

Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] I am frustrated when I do not know the name and version of the firmware in an embedded system.

Describe the solution you'd like A clear and concise description of what you want to happen. Add in the setup() some code to report the desired information on serial port. Here is an example image

Add in the setup() some code to report the desired information on the LCD

ForrestErickson commented 3 weeks ago

Here is a modified file with some examples. This code also reports the date and time of the compile.

PMDtoKRake_KrakeV2.zip

ForrestErickson commented 2 weeks ago

Here is the 28 September work. PMDtoKRake_KrakeV220240928_1129.zip

nk25719 commented 2 weeks ago

Adding changes to krake's firmware...

On Sat, Sep 28, 2024 at 11:30 AM Forrest Lee Erickson < @.***> wrote:

Here is the 28 September work. PMDtoKRake_KrakeV220240928_1129.zip https://github.com/user-attachments/files/17174913/PMDtoKRake_KrakeV220240928_1129.zip

— Reply to this email directly, view it on GitHub https://github.com/nk25719/KiCad-esp32-6leds-2switches-1pj-circuit/issues/56#issuecomment-2380709765, or unsubscribe https://github.com/notifications/unsubscribe-auth/A73LHMLNWRMIITV5RQAEH6DZY3DSFAVCNFSM6AAAAABOVB3PX2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGOBQG4YDSNZWGU . You are receiving this because you were assigned.Message ID: <nk25719/KiCad-esp32-6leds-2switches-1pj-circuit/issues/56/2380709765@ github.com>

ForrestErickson commented 2 weeks ago

Note in the "DFPlayerTD5580ATest.zip" file the serial splash message.

nk25719 commented 6 days ago
 Serial.println("===================================");
  Serial.println(DEVICE_UNDER_TEST);
  Serial.print(PROG_NAME);
  Serial.println(VERSION);
  Serial.print("Compiled at: ");
  Serial.println(F(__DATE__ " " __TIME__) ); //compile date that is used for a unique identifier
  Serial.println("===================================");
  Serial.println();

Closing.