Browse Source

new DC DC converter with higher power rating

master
Bjoern A. Bloehdorn 4 years ago
parent
commit
643655aff0
10 changed files with 353 additions and 350 deletions
  1. BIN
      shield/BOM_PCB_vTally_Pro_2021-07-20.csv
  2. BIN
      shield/BOM_vTally_Pro_2021-08-14.csv
  3. BIN
      shield/Gerber_PCB_vTally_Pro_2021-07-20.zip
  4. BIN
      shield/Gerber_PCB_vTally_Pro_2021-08-14.zip
  5. +0
    -242
      shield/PCB_PCB_vTally_Pro_2021-07-20.json
  6. +243
    -0
      shield/PCB_PCB_vTally_Pro_2021-08-14.json
  7. BIN
      shield/PickAndPlace_PCB_vTally_Pro_2021-08-14.csv
  8. +0
    -98
      shield/SCH_vTally_Pro_2021-07-20.json
  9. +97
    -0
      shield/SCH_vTally_Pro_2021-08-14.json
  10. +13
    -10
      vTally.ino

BIN
shield/BOM_PCB_vTally_Pro_2021-07-20.csv View File


BIN
shield/BOM_vTally_Pro_2021-08-14.csv View File


BIN
shield/Gerber_PCB_vTally_Pro_2021-07-20.zip View File


BIN
shield/Gerber_PCB_vTally_Pro_2021-08-14.zip View File


+ 0
- 242
shield/PCB_PCB_vTally_Pro_2021-07-20.json
File diff suppressed because it is too large
View File


+ 243
- 0
shield/PCB_PCB_vTally_Pro_2021-08-14.json
File diff suppressed because it is too large
View File


BIN
shield/PickAndPlace_PCB_vTally_Pro_2021-07-20.csv → shield/PickAndPlace_PCB_vTally_Pro_2021-08-14.csv View File


+ 0
- 98
shield/SCH_vTally_Pro_2021-07-20.json
File diff suppressed because it is too large
View File


+ 97
- 0
shield/SCH_vTally_Pro_2021-08-14.json
File diff suppressed because it is too large
View File


+ 13
- 10
vTally.ino View File

@ -21,8 +21,8 @@ const int HostNameMaxLength = 24;
const int TallyNumberMaxValue = 64;
// LED setting
#define LED_DATA D8
bool data_state = false;
//#define LED_DATA D8
//bool data_state = false;
#define LED_PIN D2
#define LED_NUM 1
Adafruit_NeoPixel leds = Adafruit_NeoPixel(LED_NUM, LED_PIN, NEO_GRB + NEO_KHZ800);
@ -55,17 +55,17 @@ Settings defaultSettings = {
"PASSWORD",
"vmix_hostname",
1,
255,
254,
128,
0,
255,
254,
0,
255,
254,
128,
0,
0,
0,
255,
254,
9600,
52381
};
@ -103,8 +103,8 @@ SoftwareSerial viscaSerial;
int udpstate = 0;
//// RS232 Serial Settings
const int txpin = D6;
const int rxpin = D5;
const int txpin = D5;
const int rxpin = D6;
//// Use the following constants and functions to modify the speed of PTZ commands
const double ZOOMMULT = 0.3; // speed multiplier for the zoom functions
@ -473,7 +473,7 @@ void handleData(String data)
default:
tallySetOff();
}
/*
if (data_state) {
digitalWrite(LED_DATA, data_state);
data_state = false;
@ -481,6 +481,7 @@ void handleData(String data)
digitalWrite(LED_DATA, data_state);
data_state = true;
}
*/
}
}
else
@ -1444,6 +1445,7 @@ void handle_visca(uint8_t *buf, size_t len)
//Serial.println(F("| VISCA IP: Send ACK"));
udp.writeTo(modified, lastelement + 1, lastclientip, lastclientport);
/*
if (data_state) {
digitalWrite(LED_DATA, data_state);
data_state = false;
@ -1451,6 +1453,7 @@ void handle_visca(uint8_t *buf, size_t len)
digitalWrite(LED_DATA, data_state);
data_state = true;
}
*/
}
void start_visca()
@ -1528,7 +1531,7 @@ void setup()
leds.setBrightness(50);
leds.show();
pinMode(LED_DATA, OUTPUT);
//pinMode(LED_DATA, OUTPUT);
httpServer.on("/", HTTP_GET, rootPageHandler);
httpServer.on("/save", HTTP_POST, handleSave);


Loading…
Cancel
Save