Summary
Keywords
Full Transcript
How To Create Online Attendance App Using MIT App Inventor | Artificial Intelligence Applications. Using this app you can take attendance of your students or classmates using your smartphone. You just need to take a picture of your student and this app automatically detects their name and saves that name in the google sheet. Extension -: https://mit-cml.github.io/extensions/ Model -: https://classifier.appinventor.mit.edu/ .........................Code for App Script .............................. function doGet(e) { var ss = SpreadsheetApp.openByUrl("GoogleSheetURL"); var sheet = ss.getSheetByName("Sheet1"); addUser(e,sheet); } function doPost(e) { var ss = SpreadsheetApp.openByUrl("GoogleSheetURL"); var sheet = ss.getSheetByName("Sheet1"); addUser(e,sheet); } function addUser(e,sheet) { var name = e.parameter.name ; sheet.appendRow([name]); } .........................Code End for App Script .............................. Join this channel to get access to perks: https://www.youtube.com/channel/UCyNJURC5bvqIQ9vO9PBrYrA/join #thecodingbus #mitappinventor #appinventor2 #appinventorprojects #artificialintelligence #AppInventorIdeas #attendancesoftware Join this channel to get access to perks: https://www.youtube.com/channel/UCyNJURC5bvqIQ9vO9PBrYrA/join #unitedstates #us
