Message from @Ondsinet

Discord ID: 529809224734343169


2018-12-31 20:45:12 UTC  

very seductive title

2019-01-01 10:09:22 UTC  

yes

2019-01-01 10:09:25 UTC  

i bought it

2019-01-01 10:44:23 UTC  

now i need the best books about OGL4 && Vulkan && RiscV

2019-01-01 21:10:32 UTC  

hmm

2019-01-01 21:11:08 UTC  

i'm trying to make a more easily portable version of those leds that go behind a screen I made a while back

2019-01-01 21:11:41 UTC  

main difficulty is getting a power supply that doesn't shit itself when more than 3 amps are needed

2019-01-01 22:30:55 UTC  

shit

2019-01-01 22:31:14 UTC  
2019-01-01 22:31:18 UTC  

yes

2019-01-01 22:31:24 UTC  

repost

2019-01-01 22:32:13 UTC  

tell me what power supply you go with

2019-01-01 22:33:40 UTC  

i'm making it portable so it's phone chargers

2019-01-01 23:05:18 UTC  

is there a 4amp phone charger tho <:makes_you_think:382980749780844554>

2019-01-01 23:06:34 UTC  

isnt all you need is the correct voltage regulator or converter, attached to the batteries, with a charging/protection circuit?

2019-01-01 23:51:43 UTC  

```
#define MOVX ((float)millis() / 5.0)
#define MOVY ((float)millis() / 5.0)
#define DIST 10


void showOff() {
uint8_t hue;
/*for ( int l = 0; l < STRIPLENGTH; l++) {
leds[l] = CHSV(0 , 255, inoise8((float)millis() / 5.0 + l * 50));
}*/
int c = 0;
for ( int l = 0; l < ledW; c++, l++) {
leds[c] = CHSV(0 , 255, inoise8(c * DIST + MOVX, 0 + MOVY));
}
for ( int l = 0; l < ledH; c++, l++) {
leds[c] = CHSV(0 , 255, inoise8(c * DIST + MOVX, ledW * DIST + MOVY));
}
for ( int l = 0; l < ledW; c++, l++) {
leds[c] = CHSV(0 , 255, inoise8((ledW - c) * DIST + MOVX, ledH * DIST + MOVY));
}
for ( int l = 0; l < ledH; c++, l++) {
leds[c] = CHSV(0 , 255, inoise8((ledH - c) * DIST + MOVX, 0 + MOVY));
}
FastLED.show();
}```

2019-01-01 23:52:07 UTC  

@M4Gunner @M4Gunner it's supposed to go behind a monitor, so batteries aren't really the best choiche

2019-01-01 23:52:37 UTC  

@Ondsinet what this?

2019-01-01 23:52:39 UTC  

yes i'm going to comment the code

2019-01-01 23:52:42 UTC  

haha

2019-01-01 23:52:43 UTC  

wait

2019-01-01 23:52:51 UTC  

OwO(ndsinet) what's this

2019-01-01 23:53:09 UTC  

⎝⎠ ╲╱╲╱ ⎝⎠

2019-01-01 23:53:12 UTC  

code for the effect

2019-01-01 23:53:38 UTC  

it's basically just a 2d perlin map

2019-01-01 23:54:01 UTC  

and a rectangle moving along it

2019-01-01 23:54:38 UTC  

👑
<:GWsetmyxPeepoPinged:405337566787928065>

2019-01-01 23:54:50 UTC  

yes hi i am stealing your code yes

2019-01-01 23:54:55 UTC  

ok

2019-01-01 23:55:01 UTC  

it's pretty ad oc tho

2019-01-01 23:55:04 UTC  

copyright 2016 Gunner

2019-01-01 23:55:07 UTC  

i wrote this

2019-01-01 23:55:48 UTC  

thanks for making youtube not googlevids

2019-01-01 23:56:28 UTC  

https://cdn.discordapp.com/attachments/423219052849397773/529810171543945226/unknown.png

2019-01-01 23:56:33 UTC  

@Ondsinet do rolling rasters

2019-01-01 23:56:37 UTC  

basically the red rectangle are the edges of the screen

2019-01-01 23:56:50 UTC  

and the screen moves upwards on this map

2019-01-01 23:56:59 UTC  

which is a kind of soft random

2019-01-01 23:57:05 UTC  

oh thats cool