Skip to content

Commit

Permalink
Update getters.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeanon committed Nov 9, 2023
1 parent c816a59 commit d1ffab3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/store/printer/getters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ export const getters: GetterTree<PrinterState, RootState> = {
},

getFans: (state, getters) => {
console.log("get fans")
const fans: PrinterStateFan[] = []
const supportedFans = ['temperature_fan', 'controller_fan', 'heater_fan', 'fan_generic', 'fan']
const objects = getters.getPrinterObjects(supportedFans)
Expand Down Expand Up @@ -215,7 +214,6 @@ export const getters: GetterTree<PrinterState, RootState> = {
},

getLights: (state, getters) => {
console.log("get lights")
const lights: PrinterStateLight[] = []
const supportedObjects = ['dotstar', 'led', 'neopixel', 'pca9533', 'pca9632']
const objects = getters.getPrinterObjects(supportedObjects)
Expand Down Expand Up @@ -296,7 +294,6 @@ export const getters: GetterTree<PrinterState, RootState> = {
},

getMiscellaneous: (state) => {
console.log("get misc")
const output: PrinterStateMiscellaneous[] = []
const supportedObjects = ['controller_fan', 'heater_fan', 'fan_generic', 'fan', 'output_pin']

Expand Down Expand Up @@ -385,7 +382,6 @@ export const getters: GetterTree<PrinterState, RootState> = {
},

getFilamentSensors: (state) => {
console.log("get sensors")
const sensorObjectNames = ['filament_switch_sensor', 'filament_motion_sensor']
const sensors: PrinterStateFilamentSensors[] = []

Expand Down

0 comments on commit d1ffab3

Please sign in to comment.