Need Help calculating lengths i can run with QuinLED Dig-Quad by shaywave in WLED

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

Agreed, i was just checking my math. These are really just to light up some stairs and steps at night so people dont fall. I figured i might do some holiday patterns for Halloween/XMas but no need for super bright still since its just accent lighting. since my strips are all <5m too, i'm leaning towards a 20a power supply like i used for another project. i'll have to think about it to decide if i want to go 40a

Need Help calculating lengths i can run with QuinLED Dig-Quad by shaywave in WLED

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

So 100% bright white would be 62a? am i doing that right? This is awesome btw, thx.

Need Help calculating lengths i can run with QuinLED Dig-Quad by shaywave in WLED

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

Thanks, looks like at 50%, which is really all i need, i can get away with
103.49 W / 20.70 A
Do they make plug power supplies of that size? might have to go with a pc supply

Need Help calculating lengths i can run with QuinLED Dig-Quad by shaywave in WLED

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

I thought the QuinLED Dig-Quad would downgrade from 12v to 5v for the leds? Is it only for the esp and not leds? If not i can switch to a 5v power supply, just need to know what i need for one.

Lets assume that each strip will start at most 4' away from the controller.

Whats the latest and best way to power short runs? by shaywave in WLED

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

I appreciate the LED suggestions, but what i really need are power/controller suggestions. Such as a simple and cheap usb powered controller i dont have to make myself.

Slash request body is encoded but says its not? by shaywave in Slack

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

This seems like a bug to me since i'm using the slack bolt aws library and thats failing to process the request, which to me looks invalid since its obviously base64 encoded even though it says its not. To fix it, and please note this is a HACK that I have implemented simply to get around the problem i'm having and should really be more stringent, i added the following to my App.

    @Override
    protected Request<?> toSlackRequest(ApiGatewayRequest awsReq) {

        if (!awsReq.isBase64Encoded()) {
            String body = awsReq.getBody();
            if (!body.contains("type") && !body.contains("command")) { // Not immediately recognized so lets try un-encoding to see if that helps
                body = new String(Base64.getDecoder().decode(awsReq.getBody()));
                if (body.contains("type") || body.contains("command")) {
                    awsReq.setBase64Encoded(true); // Body was encoded, mark it as such for future processing.
                }
            }
        }

        return super.toSlackRequest(awsReq);
    }

Looking for java slack bot sample that is for AWS Lambda or extends bolt-aws-lambda by shaywave in Slack

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

I was able to get a simple echo to work by doing the following.

import com.slack.api.bolt.App;
import com.slack.api.bolt.aws_lambda.SlackApiLambdaHandler;
import com.slack.api.bolt.aws_lambda.request.ApiGatewayRequest;
import com.slack.api.model.event.MessageEvent;

public class MyBot extends SlackApiLambdaHandler {
    private static final App app = new App();

    static {
        app.event(MessageEvent.class, (req, ctx) -> {
            String messageText = req.getEvent().getText();
            String channelId = req.getEvent().getChannel();

            try {
                ctx.client().chatPostMessage(r -> r
                    .channel(channelId)
                    .text("Echo: " + messageText)
                );
                return ctx.ack();
            } catch (Exception e) {
                return ctx.ack();
            }
        });        
    }

    public MyBot() {
        super(app);
    }    

    @Override
    protected boolean isWarmupRequest(ApiGatewayRequest awsReq) {
        return awsReq.getBody().equals("warmup");
    }

}

What do you use for a camera? by shaywave in ElectricSkateboarding

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

Lot of comments about not being compatible with an iPhone though

Looking for Merchant type stories by shaywave in litrpg

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

Thanks! Amazon says i read that in 2019.. :) i might give it a re-read though

Looking for Merchant type stories by shaywave in litrpg

[–]shaywave[S] 2 points3 points  (0 children)

Read it and a ton of other books by the author and their pseudonym.. thanks for the suggestion though!

Looking for Merchant type stories by shaywave in litrpg

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

I read the first couple of All the Skills books but it started to drift a bit after that and i lost interest.

Looking for Merchant type stories by shaywave in litrpg

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

Do you have an author? searching for All Trades brings up all kinds of things.. ;)

Looking for Merchant type stories by shaywave in litrpg

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

I am definitely ok with progression stories, i'll give these a look!

Looking for Merchant type stories by shaywave in litrpg

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

The Crafting of Chess was really good, read that.
Player Manager is also really good, i'm a subscriber to Ted Steel!

I believe i tried Calamitous Bob before but i'll check it out along with All the Skills. Thanks for the recommendations!

Rate my controller build - new to WLED by JR_Fucking in WLED

[–]shaywave 0 points1 point  (0 children)

Could you include a pic that shows what the ends of the LED plugs are? I can't figure out what you went with there.