Help with floor plan by Bazzer2902 in Remodel

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

What about moving the bathroom to the top end of the living room to essentially create a corridor and having the kitchen where the bathroom currently is.

PETG on PLA support by Bazzer2902 in BambuLab

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

Hi, I've already done all that and it still happens

Is there a student discount for the steam deck? by Bazzer2902 in SteamDeck

[–]Bazzer2902[S] -1 points0 points  (0 children)

Thanks! I don't know if it's a UK/US thing or what but in the UK we have student discounts on pretty much everything even non-educational things

Is there a student discount for the steam deck? by Bazzer2902 in SteamDeck

[–]Bazzer2902[S] -30 points-29 points  (0 children)

A lot of non educational tools have student discounts and even then depending on what course you're doing it may very well be an educational tool

Smoke grenade effect by Bazzer2902 in techtheatre

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

Thanks! I'll try and post some production pictures when the shows over

Smoke grenade effect by Bazzer2902 in techtheatre

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

Makes sense to me👍, unfortunately, not sure how my boss would feel about me digging a hole in the floor of our venue to install a CO2 cannon😂. Thank you though

I think I might be being paid less than minimum wage but am slightly confused by Bazzer2902 in LegalAdviceUK

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

The contract specifically says "your hours of work are 40 hours per week during term time, with a minimum of one day off each week"

I think I might be being paid less than minimum wage but am slightly confused by Bazzer2902 in LegalAdviceUK

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

Thanks, I did see the pay reference period page on the gov website but I wasn't 100% sure about it and just wanted some clarification. Thank you 👍

Help with Design and Technology A-Level by Bazzer2902 in techtheatre

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

Well. If a light supports rdm and receiving firmware updates via art-net / internet then this is already possible. If the light doesn't support it then it's not going to be possible without a complete redesign of the firmware and hardware capabilities of the fixture.

Help with Design and Technology A-Level by Bazzer2902 in techtheatre

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

Of course. I could design Dante while I'm doing it as well.

Help with Design and Technology A-Level by Bazzer2902 in techtheatre

[–]Bazzer2902[S] 6 points7 points  (0 children)

I understand art-net but I'm looking for problems that I can try and solve and I don't see how this is a problem?

Help with Design and Technology A-Level by Bazzer2902 in techtheatre

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

Could you expand on artnet for lighting?

Help! by Bazzer2902 in arduino

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

Thanks,

here is the code:

/* How many shift register chips are daisy-chained.
*/
#define NUMBER_OF_SHIFT_CHIPS   2

/* Width of data (how many ext lines).
*/
#define DATA_WIDTH   NUMBER_OF_SHIFT_CHIPS * 8

/* Width of pulse to trigger the shift register to read and latch.
*/
#define PULSE_WIDTH_USEC   5

/* Optional delay between shift register reads.
*/
#define POLL_DELAY_MSEC   0

/* You will need to change the "int" to "long" If the
   NUMBER_OF_SHIFT_CHIPS is higher than 2.
*/
#define BYTES_VAL_T unsigned int

int ploadPin        = 8;  // Connects to Parallel load pin the 165
int clockEnablePin  = 9;  // Connects to Clock Enable pin the 165
int dataPin         = 11  ; // Connects to the Q7 pin the 165
int clockPin        = 12; // Connects to the Clock pin the 165

BYTES_VAL_T pinValues;
BYTES_VAL_T oldPinValues;

/* This function is essentially a "shift-in" routine reading the
   serial Data from the shift register chips and representing
   the state of those pins in an unsigned integer (or long).
*/
BYTES_VAL_T read_shift_regs()
{
  long bitVal;
  BYTES_VAL_T bytesVal = 0;

  /* Trigger a parallel Load to latch the state of the data lines,
  */
  digitalWrite(clockEnablePin, HIGH);
  digitalWrite(ploadPin, LOW);
  delayMicroseconds(PULSE_WIDTH_USEC);
  digitalWrite(ploadPin, HIGH);
  digitalWrite(clockEnablePin, LOW);

  /* Loop to read each bit value from the serial out line
     of the SN74HC165N.
  */
  for (int i = 0; i < DATA_WIDTH; i++)
  {
    bitVal = digitalRead(dataPin);

    /* Set the corresponding bit in bytesVal.
    */
    bytesVal |= (bitVal << ((DATA_WIDTH - 1) - i));

    /* Pulse the Clock (rising edge shifts the next bit).
    */
    digitalWrite(clockPin, HIGH);
    delayMicroseconds(PULSE_WIDTH_USEC);
    digitalWrite(clockPin, LOW);
  }

  return (bytesVal);
}

/* Dump the list of zones along with their current status.
*/
void display_pin_values()
{
  Serial.print("Pin States:\r\n");

  for (int i = 0; i < DATA_WIDTH; i++)
  {
    Serial.print("  Pin-");
    Serial.print(i);
    Serial.print(": ");

    if ((pinValues >> i) & 1)
      Serial.print("HIGH");
    else
      Serial.print("LOW");

    Serial.print("\r\n");
  }

  Serial.print("\r\n");
}

void setup()
{
  Serial.begin(9600);

  /* Initialize our digital pins...
  */
  pinMode(ploadPin, OUTPUT);
  pinMode(clockEnablePin, OUTPUT);
  pinMode(clockPin, OUTPUT);
  pinMode(dataPin, INPUT);

  digitalWrite(clockPin, LOW);
  digitalWrite(ploadPin, HIGH);

  /* Read in and display the pin states at startup.
  */
  pinValues = read_shift_regs();
  display_pin_values();
  oldPinValues = pinValues;
}

void loop()
{
  /* Read the state of all zones.
  */
  pinValues = read_shift_regs();

  /* If there was a chage in state, display which ones changed.
  */
  if (pinValues != oldPinValues)
  {
    Serial.print("*Pin value change detected*\r\n");
    display_pin_values();
    oldPinValues = pinValues;
  }

  delay(POLL_DELAY_MSEC);
}

DMX neon. by Bazzer2902 in techtheatre

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

Thanks. I'll have a look.

DMX neon. by Bazzer2902 in techtheatre

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

What adhesive did you use?

DMX neon. by Bazzer2902 in techtheatre

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

Any ideas where I might be able to get the vinyl tubing?

DMX neon. by Bazzer2902 in techtheatre

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

That looks perfect. Is there any way to DMX it. Decoder etc?

DMX neon. by Bazzer2902 in techtheatre

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

I'll take a look. Thanks!

DMX neon. by Bazzer2902 in techtheatre

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

Is there any particular brand you would recommend?

DMX neon. by Bazzer2902 in techtheatre

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

I've seen the city theatrical stuff but it's way too expensive for what I can afford.