#4973092
Hi,

When you made your pack and did the frame for mounting it, did you happen to make a note of how long the pieces had to be etc? And what size pvc pipe did you use to make the frame.

Did you use straps from a backpack or did you use Alice frame straps? I'm on the finishing straight with my pack now but it's the 80% one that I got from your github. I don't think it'd look right on a full size Alice pack.

Thanks,

Brett
#4973102
I used 3/4 inch pvc pipe and fittings. I bought some straps off of Amazon.

https://www.amazon.com/gp/product/B000SKLK6A

it was a while ago so you'll probably have to find another. I don't have the exact measurements. I pretty much winged it and tried to make it fit my son's back so the spots that touch the back where near his shoulders and the back brace area on the lower back. The frame I built several years ago no longer fits him now that he's 12. I would probably try to mount it to a real alice frame now if I was doing it again. The home built one was not very comfortable for him.
#4973105
BrettRogersUK wrote: October 4th, 2022, 9:54 am Hi,

When you made your pack and did the frame for mounting it, did you happen to make a note of how long the pieces had to be etc? And what size pvc pipe did you use to make the frame.

Did you use straps from a backpack or did you use Alice frame straps? I'm on the finishing straight with my pack now but it's the 80% one that I got from your github. I don't think it'd look right on a full size Alice pack.

Thanks,

Brett
The spirit packs are about 80% scale and look fine on an Alice frame :)
#4973106
BrettRogersUK wrote: October 4th, 2022, 9:54 am Hi,

When you made your pack and did the frame for mounting it, did you happen to make a note of how long the pieces had to be etc? And what size pvc pipe did you use to make the frame.

Did you use straps from a backpack or did you use Alice frame straps? I'm on the finishing straight with my pack now but it's the 80% one that I got from your github. I don't think it'd look right on a full size Alice pack.

Thanks,

Brett
Lost wax has an awesome guide on how to make an Alice frame out of PVC. Maintains the shape and look of an Alice frame too. You can just scale it down to 80% and it’ll look right.


This is what I plan to do for my spirit pack as I don’t look how it looks on a standard sized Alice frame.
#4973107
jonogunn wrote: October 4th, 2022, 5:30 pm
BrettRogersUK wrote: October 4th, 2022, 9:54 am Hi,

When you made your pack and did the frame for mounting it, did you happen to make a note of how long the pieces had to be etc? And what size pvc pipe did you use to make the frame.

Did you use straps from a backpack or did you use Alice frame straps? I'm on the finishing straight with my pack now but it's the 80% one that I got from your github. I don't think it'd look right on a full size Alice pack.

Thanks,

Brett
Lost wax has an awesome guide on how to make an Alice frame out of PVC. Maintains the shape and look of an Alice frame too. You can just scale it down to 80% and it’ll look right.


This is what I plan to do for my spirit pack as I don’t look how it looks on a standard sized Alice frame.
I might do this. The thought of making it out of pvc pipe appeals to me. I can't find an alice pack in the UK less than £100. So this will be the way to go I believe. I've got the plans for the original alice pack from Stefan otto. I will look for the lost wax one though.

Thanks,

Brett
#4973108
BrettRogersUK wrote: October 4th, 2022, 5:34 pm
jonogunn wrote: October 4th, 2022, 5:30 pm

Lost wax has an awesome guide on how to make an Alice frame out of PVC. Maintains the shape and look of an Alice frame too. You can just scale it down to 80% and it’ll look right.


This is what I plan to do for my spirit pack as I don’t look how it looks on a standard sized Alice frame.
I might do this. The thought of making it out of pvc pipe appeals to me. I can't find an alice pack in the UK less than £100. So this will be the way to go I believe. I've got the plans for the original alice pack from Stefan otto. I will look for the lost wax one though.

Thanks,

Brett
Forgot to post the link for you:



The important thing is using his technique which is genius
CountDeMonet liked this
#4973830
I have and Issue with my Bargraph I initially had it at a 10 led and got a MOD wand and changed it to a 15 led like Counts. It works on idle doing its standard animation. Then when i fire it seems to wor just fine but when i release it will leave a random led on the 5 led set of the bar graph. Each time its a different one. It’s like it won’t reset the leds in that set. However when i repress the fire button it will go away and restart the animations but of course leave one on again once i stop. Any one have a clue to what might be happening.?
#4978317
Hey Eric i wanted to ask you in your code am i able to switch the theme and the power switch from d5 theme sw, d6 startup sw to d13 and D8 the reason i am doing this is to add a rumble motor with a potentiometer utilizing d5 and d6 that uses PWM. D5 will be the new fire button D6 will connect to a resistor ,transistor ,diode, and cap to the motor. A6 will be used for the potentiometer. i have included a schematics and the code. i haven’t changed the original code yet i am not sure where to place it?
thanks
Ed

// inputs for switches and buttons
const int FIRE BUTTON
= 8;
const int Relay pin = 13;

void setup (){
// inputs for switches and buttons
// set the modes for the switches/buttons
pinMode (FIRE BUITON, INPUT) ;
digitalWrite (FIRE BUTTON, HIGH) :
pinMode (Relay pin, OUTPUT) ;
}
void loop ()
{
if (digitalRead (FIRE BUTTON)==LOW);{
digitalWrite (Relay pin, HIGH) ;
}

else {
digitallrite (Relay pin, LOW);
}

}
Image
#4978923
The setup is pretty simple. You would just put that where the other pins are initialized. For detecting the fire and end of fire events you would look

here for the start of the firing sequence
https://github.com/CountDeMonet/Arduino ... h.ino#L328

and here for the end of it
https://github.com/CountDeMonet/Arduino ... h.ino#L372

Hope that helps
#4979711
2wED1 wrote: February 16th, 2023, 2:46 pm Awesome sir thanks also, Also is it possible to separate the light sequence in the wand, for instance turning on a switch to just power the graph and hat lights and trigger a sound. Another switch to just power the vent light and trigger a power up sound ?
Sorry, I saw your note but forgot to finish my response. Yes, it is possible to do what you want. The wand lights are handled with this variable

wandLights

I wrote helper functions to easily allow changing the lights. Search for

setWandLightState(3, 0, 0); //set sloblow red

which will give an example of how to use it.

You can also add switches but that will require you to update the code to handle it and the new sequence.
  • 1
  • 21
  • 22
  • 23
  • 24
  • 25

Mr. Star, I was curious what role the MEGA shie[…]

I'm guessing we'll get a DLC #2 announcement fairl[…]

Hey all, I just wondered if anyone had the measur[…]

I hope that we might get to see the concept they[…]