summaryrefslogtreecommitdiff
path: root/src/web.go
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2021-06-15 15:51:38 +0200
committerxengineering <mail2xengineering@protonmail.com>2021-06-15 15:58:23 +0200
commit4a01c8e94921d9ddcaf6d6dee0feca4d9c3655a2 (patch)
tree634a3d6e380079d0da5e8fafaf866a33a63fb4bc /src/web.go
parent2269cc653577dffc58dba4ad5534583f28f224de (diff)
downloadbirdscan-4a01c8e94921d9ddcaf6d6dee0feca4d9c3655a2.tar
birdscan-4a01c8e94921d9ddcaf6d6dee0feca4d9c3655a2.tar.zst
birdscan-4a01c8e94921d9ddcaf6d6dee0feca4d9c3655a2.zip
Refactoring: Camera has Statemachine and not is Statemachine
Diffstat (limited to 'src/web.go')
-rw-r--r--src/web.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web.go b/src/web.go
index 206681d..53f8c0a 100644
--- a/src/web.go
+++ b/src/web.go
@@ -58,11 +58,11 @@ func jsHandler(w http.ResponseWriter, r *http.Request) {
func stateHandler(w http.ResponseWriter, r *http.Request) {
known_state := r.FormValue("known_state")
- w.Write([]byte(fmt.Sprintf("%s", camera.GetStateOnChange(known_state))))
+ w.Write([]byte(fmt.Sprintf("%s", camera.statemachine.GetStateOnChange(known_state))))
}
func singlePictureHandler(w http.ResponseWriter, r *http.Request) {
- camera.SendEvent("take_single_picture")
+ camera.statemachine.SendEvent("take_single_picture")
fmt.Fprintf(w, http.StatusText(http.StatusOK))
}