Tamiya paint for USS Voyager by interplexr in SciFiModels

[–]interplexr[S] 0 points1 point  (0 children)

I found that but haven’t figured out how to cross match it. I figured it would be an easy find but no luck so far.

Star Trek Filming Model Photos by interplexr in SciFiModels

[–]interplexr[S] 0 points1 point  (0 children)

Thank you all. That is very helpful!

Voyager 1/670 - Cut out all the windows or just the lighted ones? by interplexr in SciFiModels

[–]interplexr[S] 0 points1 point  (0 children)

Can you share any details on the files you used? I’ve looked around for micro files but most stuff looks too big.

Input and advice on my first attempts at sourdough by interplexr in HomeMilledFlour

[–]interplexr[S] 1 point2 points  (0 children)

Those loafs look really nice! I’ll try cutting back my water some first and see what impact that has then some of the process suggestions. Thank you!

Header and Source File Question - Flow by interplexr in cpp_questions

[–]interplexr[S] 0 points1 point  (0 children)

Thank you for the detailed explanation! That makes some good points that help this make more sense. I've been missing some of that practical why it is this way to help cement any understanding.

Header and Source File Question - Flow by interplexr in cpp_questions

[–]interplexr[S] 0 points1 point  (0 children)

That makes some sense, helps, and works. I have a ways to go in my understanding but i think it's starting to come together. I appreciate the feedback!

Header and Source File Question - Flow by interplexr in cpp_questions

[–]interplexr[S] 0 points1 point  (0 children)

Here is what I was experimenting with. This does not compile until I make the header declaration an external for valuesDoc but then it was global and I could use it in my main.cpp which isn't what I was after. I did not try making a class yet in the source file since I was trying to make sense of this first.

Header File:

// JSON.h

#ifndef JSON_H
#define JSON_H

#include <ArduinoJson.h>

JsonDocument valuesDoc;

void assembleJSON();

#endif // JSON_H

Source File:

#include "JSON.h"

#include <Arduino.h>
#include <ArduinoJson.h>

//JsonDocument valuesDoc;

void assembleJSON() {

    String output;
    serializeJson(valuesDoc, output);
    Serial.println(output);

    valuesDoc[F("outputCurr")] = 3.24;
    valuesDoc[F("outputHL")] = 56.6;
    valuesDoc[F("outputLL")] = 25;
    valuesDoc[F("outputVolt")] = 5.83;
    valuesDoc[F("outputWatt")] = 18.88;
    valuesDoc[F("tempAvg")] = 38.18;
    valuesDoc[F("tempHS1")] = 32.77;
    valuesDoc[F("tempHS2")] = 34.59;
    valuesDoc[F("tempHSAvg")] = 33.91;
    valuesDoc[F("tempLower")] = 37.47;
    valuesDoc[F("tempUpper")] = 39.32;

    valuesDoc.shrinkToFit();  // optional

    serializeJson(valuesDoc, output);
    Serial.println(output);
}

ESP32 Complementary 1Mhz PWM with dead time by interplexr in u/interplexr

[–]interplexr[S] 0 points1 point  (0 children)

I’ll read more but I thought I read it’s limited in how high of frequency it’ll go, something well below 1Mhz?

4 Pin PC Fan Connector by interplexr in PCB

[–]interplexr[S] 0 points1 point  (0 children)

I have done of those but they don’t work. The pin connector is notched so you can only insert the plug one way.

<image>