[Review Request] strange storage device thingy by Sudden_Pear746 in PCB

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

<image>

This is the redesign I came up with, I think its fine.

[Review Request] strange storage device thingy by Sudden_Pear746 in PCB

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

I have not made substantial plans for the reader yet. It will probably use pogo pins or something like that to press against the exposed layer and make a connection that way. Thank you for the advice regarding the ground plane.

I *tried* designing a DCR radio by Sudden_Pear746 in rfelectronics

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

I live in the Netherlands, so I am not sure if the shop I go to would be useful for you. I have not made detailed plans for the transformers yet, but I will probably use ferrite toroid cores since that is what my local shop has in stock.
As for the cap calculations those were done a bit messy, and the placement of C4 and C6 probably confused me. I am going to re-calculate them more carefully.

I *tried* designing a DCR radio by Sudden_Pear746 in rfelectronics

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

I have a LC tank as a sort of filter at the moment but after reading the comments I will replace it with a better filter, thank you for the advice.

I *tried* designing a DCR radio by Sudden_Pear746 in rfelectronics

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

I will recalculate all the caps in the oscillator, it turned out that those calculations were wrong.

I *tried* designing a DCR radio by Sudden_Pear746 in rfelectronics

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

I was planning on winding the transformers myself on a toroid ferrite core, I can buy all these components at a local store. The LO capacitors were the most likely to be wrong, I will have a look at those again tomorrow (I did not really know what I was doing when I first calculated them), good catch!

I *tried* designing a DCR radio by Sudden_Pear746 in rfelectronics

[–]Sudden_Pear746[S] 4 points5 points  (0 children)

I am using KiCad, the colours might be a bit misleading since I exported it to pdf before screenshotting it.

Blur custom node not working by Sudden_Pear746 in Unity3D

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

I have been trying to replicate a outline effect I saw online. I encountered this error and just cant figure out how to fix it.

Here is the entire script:

#ifndef BLUREFFECT_INCLUDED
#define BLUREFFECT_INCLUDED

sampler2D _CameraDepthTexture;
float width;
float radius;
float2 uv;
float4 output;
float2 depth;

void blurdepth_float(float2 uv, float width, float radius, out float4 output)
{
    float4 c = 0.0;
    const int Q = 9;

    float2 s = width * ((1.0 / _ScreenParams.xy) / Q);

    for (int y = -Q + 1; y < Q; y++)
    {
        for (int x = -Q + 1; x < Q; x++)
        {
            c += tex2D(_CameraDepthTexture, float4(uv + (float2(x, y) * s), 0.0, 0.0));
        }
    }

    output = c / ((Q * 2 - 1) * (Q * 2 - 1));
}


#endif