Code Monkey home page Code Monkey logo

aacdnproject's People

Contributors

abotelho23 avatar alex-free avatar connormoss avatar thekidd54 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

aacdnproject's Issues

Last few touches

-credits in app (own section)
-install camera in house
-install blinds in house
-make tri-fold board
-looks into mycroft
-install roof pieces
-add more multi devices commands? Rainbow?
-add fresh mobile and house pictures to GitHub page

Clean up code names

-create stable branch
-merge branches to clean stuff up and minimize how many we have
-ensure all nodes are using node.py template
-change hubCode.py to hub.py

Notification resource on Hub

-should popup a snack bar message on GUI for every notification
-camera should be able to notify of motion, and then perform a task (e.g. hub turns light red)

First voice command

async def createRequest(request_type, node_address, node_resource, userPayload):
    
	protocol = await Context.create_client_context()
	
	if (request_type == 'GET'):
        print("SENDING GET REQUEST")
        targetURI = 'coap://' + node_address + node_resource

        request = Message(code=GET, uri=targetURI)

        try:
            response = await protocol.request(request).response
        except Exception as e:
            return e
        else:
            return response.payload
    else:
        print("SENDING PUT REQUEST START")
        targetURI = 'coap://' + node_address + node_resource
        payloadEnc = userPayload.encode()
        
		request = Message(code=PUT, uri=targetURI, payload=payloadEnc)

        try:
            response = await protocol.request(request).response
        except Exception as e:
            return e
        else:
            return response.payload

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.