├── .esformatter ├── .eslintrc.js ├── .gitignore ├── LICENSE.md ├── README.md ├── database.rules.json ├── device-bridge ├── .babelrc ├── .npmignore ├── README.md ├── bin │ └── firenet ├── package.json └── src │ ├── devices │ └── nodemcu-minion.js │ ├── firebaseConnection.js │ ├── index.js │ └── rgb │ └── animations.js ├── firebase.json ├── homebridge-firenet ├── .npmignore ├── package.json └── src │ └── index.js └── web ├── devices └── nodemcu-minion.js ├── modes ├── index.js ├── rgb-control.js └── switch.js ├── package.json ├── src ├── app │ ├── Devices.js │ ├── Main.js │ ├── TriggerEdit.js │ ├── Triggers.js │ ├── app.js │ └── components │ │ ├── NewAction.js │ │ └── actionEdit.js └── www │ ├── index.html │ └── main.css ├── utils └── color.js ├── webpack-dev-server.config.js └── webpack-production.config.js /.esformatter: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "preset": "default", 5 | "indent": { 6 | "value": "\t", 7 | "IfStatementConditional": 2, 8 | "SwitchStatement": 1, 9 | "TopLevelFunctionBlock": 1 10 | }, 11 | "lineBreak": { 12 | "before": { 13 | "VariableDeclarationWithoutInit": 0, 14 | "ArrayExpressionClosing": 1 15 | }, 16 | "after": { 17 | "AssignmentOperator": -1, 18 | "ArrayExpressionOpening": 1, 19 | "ArrayExpressionComma": 1 20 | } 21 | }, 22 | "whiteSpace": { 23 | "before": { 24 | "ArgumentList": 1, 25 | "ArgumentListArrayExpression": 1, 26 | "ArgumentListFunctionExpression": 1, 27 | "ArgumentListObjectExpression": 1, 28 | "ArrayExpressionClosing": 1, 29 | "ExpressionClosingParentheses": 1, 30 | "ForInStatementExpressionClosing": 1, 31 | "ForStatementExpressionClosing": 1, 32 | "IfStatementConditionalClosing": 1, 33 | "MemberExpressionClosing": 1, 34 | "ParameterList": 1, 35 | "SwitchDiscriminantClosing": 1, 36 | "WhileStatementConditionalClosing": 1, 37 | "CallExpression": -1 38 | }, 39 | "after": { 40 | "ArgumentList": 1, 41 | "ArgumentListArrayExpression": 1, 42 | "ArgumentListFunctionExpression": 1, 43 | "ArgumentListObjectExpression": 1, 44 | "ArrayExpressionOpening": 1, 45 | "ExpressionOpeningParentheses": 1, 46 | "ForInStatementExpressionOpening": 1, 47 | "ForStatementExpressionOpening": 1, 48 | "IfStatementConditionalOpening": 1, 49 | "MemberExpressionOpening": 1, 50 | "ParameterList": 1, 51 | "SwitchDiscriminantOpening": 1, 52 | "WhileStatementConditionalOpening": 1, 53 | "CallExpression": 0 54 | } 55 | }, 56 | "collapseObjects": { 57 | "ObjectExpression": { 58 | "maxLineLength": 120, 59 | "maxKeys": 1, 60 | "forbidden": [ "FunctionExpression" ] 61 | }, 62 | "ArrayExpression": { 63 | "maxLineLength": 120, 64 | "maxKeys": 10, 65 | "forbidden": [ "FunctionExpression" ] 66 | } 67 | }, 68 | "plugins": [ 69 | "esformatter-quotes", 70 | "esformatter-semicolons", 71 | "esformatter-braces", 72 | "esformatter-dot-notation", 73 | "esformatter-special-bangs", 74 | "esformatter-collapse-objects-a8c" 75 | ] 76 | } 77 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | /*eslint-disable quote-props */ 2 | module.exports = { 3 | 'parser': 'babel-eslint', 4 | 'env': { 5 | 'browser': true, 6 | 'es6': true, 7 | 'mocha': true, 8 | 'node': true 9 | }, 10 | 'ecmaFeatures': { 11 | 'jsx': true, 12 | 'modules': true 13 | }, 14 | 'plugins': [ 15 | 'eslint-plugin-react', 16 | 'eslint-plugin-wpcalypso' 17 | ], 18 | 'rules': { 19 | 'array-bracket-spacing': [ 1, 'always' ], 20 | 'brace-style': [ 1, '1tbs' ], 21 | // REST API objects include underscores 22 | 'camelcase': 0, 23 | 'comma-dangle': 0, 24 | 'comma-spacing': 1, 25 | 'computed-property-spacing': [ 1, 'always' ], 26 | // Allows returning early as undefined 27 | 'consistent-return': 0, 28 | 'dot-notation': 1, 29 | 'eqeqeq': [ 2, 'allow-null' ], 30 | 'eol-last': 1, 31 | 'indent': [ 1, 'tab', { 'SwitchCase': 1 } ], 32 | 'key-spacing': 1, 33 | 'new-cap': [ 1, { 'capIsNew': false, 'newIsCap': true } ], 34 | 'no-cond-assign': 2, 35 | 'no-dupe-keys': 2, 36 | 'no-else-return': 1, 37 | 'no-empty': 1, 38 | 'no-extra-semi': 1, 39 | // Flux stores use switch case fallthrough 40 | 'no-fallthrough': 0, 41 | 'no-lonely-if': 1, 42 | 'no-mixed-requires': 0, 43 | 'no-mixed-spaces-and-tabs': 1, 44 | 'no-multiple-empty-lines': [ 1, { max: 1 } ], 45 | 'no-multi-spaces': 1, 46 | 'no-nested-ternary': 1, 47 | 'no-new': 1, 48 | 'no-process-exit': 1, 49 | 'no-redeclare': 1, 50 | 'no-shadow': 1, 51 | 'no-spaced-func': 1, 52 | 'no-trailing-spaces': 1, 53 | 'no-undef': 2, 54 | 'no-underscore-dangle': 0, 55 | // Allows Chai `expect` expressions 56 | 'no-unused-expressions': 0, 57 | 'no-unused-vars': 1, 58 | // Teach eslint about React+JSX 59 | 'react/jsx-uses-react': 1, 60 | 'react/jsx-uses-vars': 1, 61 | 'react/jsx-no-undef': 2, 62 | 'react/jsx-no-duplicate-props': 1, 63 | 'react/react-in-jsx-scope': 2, 64 | 'react/no-danger': 2, 65 | 'react/no-did-mount-set-state': 1, 66 | 'react/no-did-update-set-state': 1, 67 | 'jsx-quotes': [ 1, 'prefer-double' ], 68 | 'react/jsx-no-bind': 1, 69 | 'react/jsx-curly-spacing': [ 1, 'always' ], 70 | // Allows function use before declaration 71 | 'no-use-before-define': [ 2, 'nofunc' ], 72 | 'object-curly-spacing': [ 1, 'always' ], 73 | // We split external, internal, module variables 74 | 'one-var': 0, 75 | 'operator-linebreak': [ 1, 'after', { 'overrides': { 76 | '?': 'before', 77 | ':': 'before' 78 | } } ], 79 | 'padded-blocks': [ 1, 'never' ], 80 | 'quote-props': [ 1, 'as-needed', { 'keywords': true } ], 81 | 'quotes': [ 1, 'single', 'avoid-escape' ], 82 | 'semi': 1, 83 | 'semi-spacing': 1, 84 | 'space-after-keywords': [ 1, 'always' ], 85 | 'space-before-blocks': [ 1, 'always' ], 86 | 'space-before-function-paren': [ 1, 'never' ], 87 | 'space-in-parens': [ 1, 'always' ], 88 | 'space-infix-ops': [ 1, { 'int32Hint': false } ], 89 | // Ideal for '!' but not for '++' 90 | 'space-unary-ops': 0, 91 | // Assumed by default with Babel 92 | 'strict': [ 2, 'never' ], 93 | 'valid-jsdoc': [ 1, { 'requireReturn': false } ], 94 | // Common top-of-file requires, expressions between external, interal 95 | 'vars-on-top': 1, 96 | 'yoda': 0, 97 | // Custom rules 98 | 'wpcalypso/no-lodash-import': 2, 99 | 'wpcalypso/i18n-ellipsis': 1, 100 | 'wpcalypso/i18n-no-variables': 1, 101 | 'wpcalypso/i18n-no-placeholders-only': 1, 102 | 'wpcalypso/i18n-mismatched-placeholders': 1, 103 | 'wpcalypso/i18n-named-placeholders': 1 104 | } 105 | }; 106 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | config* 3 | node_modules 4 | *.sublime-* 5 | .firebaserc 6 | build 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Firenet of things AKA SmartPi 2 | 3 | A SmartHome setup using Google Firebase and $4 modules. Can do a lot of awesome stuff. 4 | 5 | ## [📺 Play demo video on youtube 🎦](https://www.youtube.com/watch?v=AjtrikwHB_Y) 6 | 7 | 8 | | Devices list | Main menu | RGB lamp control | Composing triggers | 9 | |-------------------------------------|-------------------------------------|-------------------------------------|-------------------------------------| 10 | |![](https://cldup.com/n84sS0Fi9M.png)|![](https://cldup.com/-n1hCbb30L.png)|![](https://cldup.com/7BJc3cMJIU.png)|![](https://cldup.com/wOSFFjdpGu.png)| 11 | 12 | 13 | #### Features 14 | 15 | - Wireless control over $4 ESP8266 modules 16 | - AC/DC current control 17 | - RGB LED strip control, Sunrise simulation 18 | - IFTTT integration 19 | - Presence sensing 20 | - Google Calendar intogration 21 | - Notifications 22 | - Device shadows (keeping last device state), notification on device disconnection (ex. when power fails) 23 | - Google / Facebok / Github... etc login and auth 24 | - Triggers that can start a series of tasks 25 | - Websocket API 26 | - REST API 27 | - React / Firebase web app 28 | - Runs on a free Google Firebase plan 29 | 30 | #### Quick install 31 | 32 | 1. You need devices that communicate with this project. I recommend [nodemcu-minion with ESP8266](https://github.com/artpi/nodemcu-minion) 33 | 2. Install mqtt broker on your device at home ( Raspberry Pi? ). `apt-get install mosquitto` 34 | 3. [Sign up for a free Google Firebase account](https://firebase.google.com/) 35 | 4. Download service account keys for firebase and save them as `~/.firenet-of-things/firebase-credentials.json` 36 | 5. Edit `~/.firenet-of-things/config.js` with your config: 37 | ``` 38 | { 39 | id: 'smart-pi', 40 | broker: 'mqtt://...', 41 | firebase: 'https://....firebaseio.com' 42 | }; 43 | ``` 44 | 6. Save config for the [web console from firebase setup](https://firebase.google.com/docs/web/setup) as `web/config-firebase.js` 45 | 7. Run Device Bridge (in your raspberry pi) : `cd device-bridge && npm install && npm run build && npm start` 46 | 8. Build web interface : `cd web && npm install && npm run build && firebase deploy` 47 | 9. Navigate to your new projet: `firebase open` 48 | 10. Profit 49 | 50 | ## Architecture 51 | 52 | This whole project started as a quest to build self-owned IOT cloud with minimal setup and enabling running as cheap as possible. 53 | There are plenty solutions on the market. Some of them looked like they can disappear any minute, some of them were not cheap. 54 | Amazon IOT was very tempting, but I couldn't run it for free and the cheapest modules had trouble connecting to their SSL servers (because of TLS 1.2) 55 | 56 | All in all, I settled on Firebase, which is real-time cloud json database from Google. With Firebase you have Hosting, Google / Facebook / Github... 57 | authentication and authorization. 58 | 59 | All this would not be possible without glorious ESP8266 chips. They are like Arduino with Wifi and they are running NodeMCU firmware which you program in lua script ( similar to JS ). 60 | I have started putting up a [ Plug&Play firmware called nodemcu-minion](https://github.com/artpi/nodemcu-minion) which requires no programming to setup. 61 | 62 | In overall design I wanted to follow "microservices" approach while keeping it sane. Everything should scale nicely. 63 | 64 | ### Pieces of the cloud 65 | 66 | - Lua scripts running on NodeMCU on ESP8266 hardware 67 | - MQTT broker (mosquitto) on Raspberry Pi 68 | - Node script running on Raspberry Pi ("Device Gateway") 69 | - Firebase running on Google Cloud 70 | 71 | #### Hardware 72 | 73 | I use ESP8266 chips connected to RGB strip or relays. 74 | Each chip listens to `iot/things/id` topic on message broker and sends a heartbeat to `iot/heartbeat` every second. 75 | 76 | #### MQTT broker 77 | 78 | This is message broker for lightweight iot messaging protocol. 79 | Theoretically devices could connect to Firebase directly, but I wanted to limit data usage and MQTT was just easier. MQTT Broker is meant to keep communication in a single household. Whole setup can have more brokers, they are completely transparent. 80 | 81 | #### Device Gateway 82 | 83 | This is the only element that stops the whole system from working, because this is the only piece that runs actual code. 84 | Device Gateway handles Firebase Queues and MQTT messages and it is a Node Script. 85 | - it updates device shadow state in Firebase by parsing heartbeat messages 86 | - keeps "General" queue 87 | - to dispatch task to a proper device queue 88 | - to generate a task series upon a trigger 89 | - keeps queue for every device to change its state 90 | 91 | #### Firebase 92 | 93 | Firebase database is a heart of whole setup. 94 | - `dispatch` tree is used as a task queue 95 | - `devices` tree is used as a device shadow tree 96 | - `spec` tree holds queue configuration details and user authorization rules 97 | - `triggers` tree holds information about triggered task series. 98 | 99 | Firebase hosting hosts a web app 100 | Firebase Authentication is used for logging 101 | 102 | ##### Triggers 103 | 104 | Via smart configuration of Firebase access rules, triggers expose HTTPS endpoint that does not require login. 105 | Making a request: 106 | ``` 107 | curl -X POST -d '{"triggerName":...,"token":..}' https://.firebaseio.com/dispatch.json 108 | ``` 109 | with a proper token will put a new task in `dispatch` queue that will be picked up by device gateway general worker. Each trigger has its own token. 110 | This feature is used for IFTTT integration 111 | 112 | #### Web App 113 | 114 | Firebase-React web app: 115 | - implements Google account login via Firebase Auth 116 | - displays device state 117 | - is used for dispatching state changes 118 | - is used for configuration 119 | 120 | ## Old version (SmartPi): 121 | 122 | This project started as a PHP / Arduino setup built on top of raspberry pi. [I moved the old version to a an `master-old` branch](https://github.com/artpi/SmartPi/tree/master-old). 123 | These are some of the features of that version: 124 | 125 | **SmartPi** is my setup of a SmartHome. Some features include: 126 | - Turning the lights on/off 127 | - Playing music from Spotify 128 | - Voice control through *OK Google* keyword 129 | - Sensing my presence and performing actions accordingly 130 | - Integration with GoogleCalendar and performing actions scheduled there 131 | - Emulating sunrise in my bedroom every morning via RGB led strip 132 | 133 | -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "dispatch": { 3 | ".read": "root.child('spec').child('users').child( auth.uid ).val() === true", 4 | "$action": { 5 | /* ".write": "( newData.child('token').val() === root.child('triggers').child( newData.child('triggerName').val() ).child('token').val() ) || ( root.child('spec').child('users').child( auth.uid ).val() === true )" */ 6 | ".write": "true" 7 | }, 8 | ".indexOn": "_state" 9 | }, 10 | "spec": { 11 | ".read": "root.child('spec').child('users').child( auth.uid ).val() === true", 12 | ".write": "root.child('spec').child('users').child( auth.uid ).val() === true" 13 | }, 14 | "things": { 15 | ".read": "root.child('spec').child('users').child( auth.uid ).val() === true", 16 | ".write": "root.child('spec').child('users').child( auth.uid ).val() === true" 17 | }, 18 | "triggers": { 19 | ".read": "root.child('spec').child('users').child( auth.uid ).val() === true", 20 | ".write": "root.child('spec').child('users').child( auth.uid ).val() === true" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /device-bridge/.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2015-node"] } -------------------------------------------------------------------------------- /device-bridge/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /device-bridge/README.md: -------------------------------------------------------------------------------- 1 | # Firenet of things 2 | 3 | This is the 'worker' package for "Firenet of Things" - my $4 Smarthome setup build on top of Google Firebase. 4 | This part connects firebase to devices. It runs locally in your home, on Raspberry Pi or other supporting device. 5 | More information in [Github README](https://github.com/artpi/SmartPi) 6 | 7 | ## Features 8 | 9 | - Siri integration ( via `homebridge-firenet` [package](https://www.npmjs.com/package/homebridge-firenet/) ) 10 | - Wireless control over $4 ESP8266 modules 11 | - AC/DC current control 12 | - RGB LED strip control, Sunrise simulation 13 | - IFTTT integration 14 | - Presence sensing 15 | - Google Calendar intogration 16 | - Notifications 17 | - Device shadows (keeping last device state), notification on device disconnection (ex. when power fails) 18 | - Google / Facebok / Github... etc login and auth 19 | - Triggers that can start a series of tasks 20 | - Websocket API 21 | - REST API 22 | - React / Firebase web app 23 | - Runs on a free Google Firebase plan 24 | 25 | 26 | ## Quick install 27 | 28 | #### Prerequisites: 29 | 30 | - MQTT broker 31 | - Devices connected to MQTT broker 32 | - Firebase account 33 | 34 | #### Installation 35 | - `npm install -g firenet` 36 | 37 | #### Configuration 38 | 39 | Configuration is kept in `~/.firenet-of-things/` 40 | Download service account keys for firebase and save them as `~/.firenet-of-things/firebase-credentials.json` 41 | Edit `~/.firenet-of-things/config.js` with your config: 42 | ``` 43 | { 44 | id: 'smart-pi', 45 | broker: 'mqtt://...', 46 | firebase: 'https://....firebaseio.com' 47 | }; 48 | ``` 49 | 50 | #### Run 51 | 52 | Just run in console: 53 | `firenet-of-things` 54 | -------------------------------------------------------------------------------- /device-bridge/bin/firenet: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var firenet = require('../build'); 3 | -------------------------------------------------------------------------------- /device-bridge/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "firenet", 3 | "version": "0.0.1", 4 | "description": "Firenet-of-things main device bridge. Connects Firebase with MQTT devices.", 5 | "scripts": { 6 | "build": "babel ./src --out-dir build", 7 | "develop": "babel-node ./src/index.js", 8 | "start": "node ./build/index.js" 9 | }, 10 | "bin": { 11 | "firenet-of-things": "./bin/firenet" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/artpi/SmartPi.git" 16 | }, 17 | "keywords": [ 18 | "firenet", 19 | "firenet-of-things", 20 | "smartpi", 21 | "smarthome", 22 | "iot" 23 | ], 24 | "main": "./build/index.js", 25 | "license": "GPL3", 26 | "dependencies": { 27 | "firebase": "^3.0.5", 28 | "firebase-queue": "^1.4.0", 29 | "lodash": "^4.13.1", 30 | "mqtt": "^1.11.2" 31 | }, 32 | "devDependencies": { 33 | "babel-cli": "^6.10.1", 34 | "babel-preset-es2015-node": "^6.1.0", 35 | "babel-eslint": "6.0.4", 36 | "eslint": "1.10.3", 37 | "eslint-plugin-react": "3.11.3", 38 | "eslint-plugin-wpcalypso": "1.1.3", 39 | "esformatter": "0.7.3", 40 | "esformatter-braces": "1.2.1", 41 | "esformatter-collapse-objects-a8c": "0.1.0", 42 | "esformatter-dot-notation": "1.3.1", 43 | "esformatter-quotes": "1.0.3", 44 | "esformatter-semicolons": "1.1.1", 45 | "esformatter-special-bangs": "1.0.1" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /device-bridge/src/devices/nodemcu-minion.js: -------------------------------------------------------------------------------- 1 | import { createGatewayWorker } from '../firebaseConnection.js' ; 2 | import isEqual from 'lodash/isEqual'; 3 | import get from 'lodash/get'; 4 | import animation from '../rgb/animations'; 5 | 6 | function NodemcuMinion( id ) { 7 | this.id = id; 8 | this.type = 'nodemcu-minion'; 9 | this.mode = 'rgb'; 10 | this.firebase = null; 11 | this.firebaseRoot = null; 12 | this.queue = null; 13 | this.state = {}; 14 | this.disconnectTimeout = null; 15 | this.connected = false; 16 | } 17 | 18 | NodemcuMinion.prototype.heartbeat = function( heartbeat ) { 19 | if ( get( heartbeat, 'config.mode', this.mode ) !== this.mode ) { 20 | this.mode = get( heartbeat, 'config.mode', this.mode ); 21 | this.firebase.child( 'mode' ).set( this.mode ); 22 | } 23 | 24 | if ( ! isEqual( heartbeat.state, this.state ) ) { 25 | this.firebase.child( 'state' ).set( heartbeat.state ); 26 | this.state = heartbeat.state; 27 | } 28 | if ( ! this.connected ) { 29 | this.connectQueue(); 30 | this.firebase.child( 'connected' ).set( this.connected ); 31 | } 32 | clearTimeout( this.disconnectTimeout ); 33 | this.disconnectTimeout = setTimeout( this.disconnect.bind( this ), 5000 ); 34 | }; 35 | 36 | NodemcuMinion.prototype.disconnect = function() { 37 | this.connected = false; 38 | return Promise.all( [ 39 | this.firebase.child( 'connected' ).set( false ), 40 | this.queue.shutdown() 41 | ] ); 42 | }; 43 | 44 | NodemcuMinion.prototype.connectQueue = function() { 45 | this.connected = true; 46 | this.firebase.child( 'connected' ).set( this.connected ); 47 | this.queue = createGatewayWorker( this.firebaseRoot, this.id, this.processQueueTask.bind( this ) ); 48 | }; 49 | 50 | NodemcuMinion.prototype.connect = function( firebase, mqtt ) { 51 | this.firebaseRoot = firebase; 52 | this.firebase = firebase.database().ref( 'things/' + this.id ); 53 | this.firebase.child( 'type' ).set( this.type ); 54 | this.client = mqtt; 55 | this.connectQueue(); 56 | }; 57 | 58 | NodemcuMinion.prototype.forwardToDevice = function( data ) { 59 | var topic = 'iot/things/' + data.id.split( '/' )[ 1 ]; //Remove gateway reference and substitute with iot/things 60 | console.log( JSON.stringify( data ) ); 61 | this.client.publish( topic, JSON.stringify( data ) ); 62 | }; 63 | 64 | NodemcuMinion.prototype.off = function() { 65 | var topic = 'iot/things/' + this.id.split( '/' )[ 1 ]; //Remove gateway reference and substitute with iot/things 66 | this.client.publish( topic, JSON.stringify( { 67 | action: 'set', 68 | state: { 69 | red: 0, 70 | green: 0, 71 | blue: 0, 72 | power: 0 73 | } 74 | } ) ); 75 | }; 76 | 77 | NodemcuMinion.prototype.processQueueTask = function( data, progress, resolve, reject ) { 78 | //to replace later 79 | if ( data.action === 'set' ) { 80 | this.forwardToDevice( data ); 81 | resolve(); 82 | } else if ( data.action === 'off' ) { 83 | this.off(); 84 | resolve(); 85 | } else if ( data.action === 'gradient' ) { 86 | animation( this.state, data.state, data.duration, newColor => this.forwardToDevice( { id: this.id, action: 'set', state: newColor } ) ).then( resolve ); 87 | } else if ( data.action === 'wait' ) { 88 | setTimeout( resolve, data.duration ); 89 | } else { 90 | reject( 'Unknown command or what' ); 91 | } 92 | }; 93 | 94 | module.exports = NodemcuMinion; 95 | -------------------------------------------------------------------------------- /device-bridge/src/firebaseConnection.js: -------------------------------------------------------------------------------- 1 | import Queue from 'firebase-queue'; 2 | 3 | function getQueueRef( firebase ) { 4 | return { tasksRef: firebase.database().ref( 'dispatch' ), specsRef: firebase.database().ref( 'spec/queue' ) }; 5 | } 6 | 7 | export function createGatewayWorker( firebase, gatewayKey, processFunction ) { 8 | gatewayKey = gatewayKey.replace( '/', '_' ); 9 | const specRef = firebase.database().ref( 'spec/queue/' ).child( gatewayKey ); 10 | specRef.once( 'value' ).then( function( snapshot ) { 11 | if ( ! snapshot.val() ) { 12 | specRef.set( { 13 | 'start_state': gatewayKey + '_start', 14 | 'in_progress_state': 'in_progress', 15 | 'finished_state': null, 16 | 'error_state': 'error', 17 | 'timeout': 300000, // 5 minutes 18 | 'retries': 0 // don't retry 19 | } ); 20 | } 21 | } ); 22 | console.log( 'new q', gatewayKey ); 23 | return new Queue( 24 | getQueueRef( firebase ), 25 | { specId: gatewayKey, numWorkers: 1 }, 26 | processFunction 27 | ); 28 | } 29 | 30 | export function createMainWorker( firebase ) { 31 | return new Queue( getQueueRef( firebase ), function( data, progress, resolve, reject ) { 32 | if ( data.action && data.id ) { 33 | firebase.database().ref( 'things/' + data.id ).once( 'value' ) 34 | .then( function( snapshot ) { 35 | //Is the device online, does it exist? 36 | if ( ! snapshot.exists() ) { 37 | return reject( 'device does not exist' ); 38 | } else if ( snapshot.val().connected === false ) { 39 | console.log( 'Omitting old requests assigned while offline' ); 40 | resolve(); 41 | } else { 42 | resolve( Object.assign( data, { 43 | _new_state: data.id.replace( '/', '_' ) + '_start' 44 | } ) ); 45 | } 46 | } ); 47 | } else if ( data.triggerName ) { 48 | console.log( 'trigger', data ); 49 | firebase.database().ref( 'triggers/' + data.triggerName + '/actions' ).orderByChild( 'order' ).once( 'value' ) 50 | .then( function( actions ) { 51 | if ( ! actions.exists() ) { 52 | console.log( 'trigger does not exist' ); 53 | return reject( 'trigger does not exist' ); 54 | } else { 55 | const newActions = []; 56 | actions.forEach( function( action ) { 57 | var newAction = Object.assign( {}, action.val(), data.action ); 58 | console.log( 'queuing new action', newAction ); 59 | newActions.push( firebase.database().ref( 'dispatch' ).push( newAction ) ); 60 | } ); 61 | Promise.all( newActions ).then( resolve ); 62 | } 63 | } ); 64 | } else { 65 | console.log( 'unknown command', data ); 66 | return resolve(); 67 | } 68 | } ); 69 | } 70 | -------------------------------------------------------------------------------- /device-bridge/src/index.js: -------------------------------------------------------------------------------- 1 | import mqtt from 'mqtt'; 2 | import firebase from 'firebase'; 3 | import os from 'os'; 4 | 5 | import NodemcuMinion from './devices/nodemcu-minion.js'; 6 | import { createMainWorker } from './firebaseConnection.js'; 7 | 8 | const configFolder = os.homedir() + '/.firenet-of-things'; 9 | const config = require( configFolder + '/' + 'config.json' ); 10 | 11 | if ( ! config ) { 12 | throw 'You need to provide config file. Default location is `~/.firenet-of-things/config.json`.'; 13 | } 14 | 15 | if ( ! config.broker ) { 16 | throw 'You need to put MQTT url in `broker` key in `config.json`'; 17 | } 18 | const client = mqtt.connect( config.broker ); 19 | const devices = {}; 20 | 21 | if ( ! config.firebase ) { 22 | throw 'You need to put Firebase database url in `firebase` key in `config.json`'; 23 | } 24 | 25 | firebase.initializeApp( { 26 | serviceAccount: configFolder + '/' + 'firebase-credentials.json', 27 | databaseURL: config.firebase, 28 | } ); 29 | 30 | const mainQueue = createMainWorker( firebase ); 31 | 32 | client.on( 'connect', function() { 33 | client.subscribe( 'iot/heartbeat' ); 34 | } ); 35 | 36 | client.on( 'message', function( topic, message ) { 37 | if ( topic === 'iot/heartbeat' ) { 38 | const payload = JSON.parse( message.toString() ); 39 | 40 | if ( ! devices[ payload.id ] ) { 41 | devices[ payload.id ] = new NodemcuMinion( config.id + '/' + payload.id ); 42 | devices[ payload.id ].connect( firebase, client ); 43 | } 44 | devices[ payload.id ].heartbeat( payload ); 45 | } 46 | } ); 47 | 48 | process.on( 'SIGINT', function() { 49 | console.log( 'Starting all queues shutdown' ); 50 | const queues = [ mainQueue.shutdown() ]; 51 | for ( let id in devices ) { 52 | queues.push( devices[ id ].disconnect() ); 53 | } 54 | Promise.all( queues ) 55 | .then( function() { 56 | console.log( 'Finished queue shutdown' ); 57 | process.exit( 0 ); 58 | } ); 59 | } ); 60 | -------------------------------------------------------------------------------- /device-bridge/src/rgb/animations.js: -------------------------------------------------------------------------------- 1 | var stepDuration = 100; 2 | 3 | function validate( value ) { 4 | if ( !value ) { 5 | return 0; 6 | } 7 | 8 | value = Math.round( value ); 9 | 10 | if ( value > 1023 ) { 11 | value = 1023; 12 | } else if ( value < 0 ) { 13 | value = 0; 14 | } 15 | return value; 16 | } 17 | 18 | function validateColor( color ) { 19 | return { 20 | red: validate( color.red ), 21 | green: validate( color.green ), 22 | blue: validate( color.blue ) 23 | }; 24 | } 25 | 26 | function getNextStep( initialColor, step ) { 27 | return { 28 | red: initialColor.red + step.red, 29 | green: initialColor.green + step.green, 30 | blue: initialColor.blue + step.blue 31 | }; 32 | } 33 | 34 | export default function animateGradient( fromColor, toColor, duration, colorChangeCallback, completeCallback = null ) { 35 | return new Promise( ( resolve ) => { 36 | var nrOfSteps = Math.round( duration / stepDuration ), 37 | step = { 38 | red: ( toColor.red - fromColor.red ) / nrOfSteps, 39 | green: ( toColor.green - fromColor.green ) / nrOfSteps, 40 | blue: ( toColor.blue - fromColor.blue ) / nrOfSteps 41 | }, 42 | lastColor = fromColor, 43 | interval = null; 44 | 45 | function animateStep() { 46 | if ( nrOfSteps === 0 ) { 47 | clearInterval( interval ); 48 | if ( completeCallback ) { 49 | completeCallback(); 50 | } 51 | resolve(); 52 | } else { 53 | lastColor = getNextStep( lastColor, step ); 54 | console.log( 'cool', lastColor ); 55 | colorChangeCallback( validateColor( lastColor ) ); 56 | nrOfSteps--; 57 | } 58 | } 59 | 60 | console.log( 'Animating in ' + nrOfSteps + ' steps: red: ' + step.red + ', green: ' + step.green + ', blue: ' + step.blue ); 61 | interval = setInterval( animateStep, stepDuration ); 62 | } ); 63 | } 64 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "database": { 3 | "rules": "database.rules.json" 4 | }, 5 | "hosting": { 6 | "public": "web/build", 7 | "rewrites": [ 8 | { 9 | "source": "**", 10 | "destination": "/index.html" 11 | } 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /homebridge-firenet/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /homebridge-firenet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "homebridge-firenet", 3 | "version": "0.0.1", 4 | "description": "Firenet of Things platform for HomeBridge", 5 | "license": "GPLv3", 6 | "keywords": [ 7 | "homebridge-plugin", 8 | "firenet", 9 | "firenet-of-things", 10 | "smartpi", 11 | "smarthome" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "git://github.com/artpi/SmartPi.git" 16 | }, 17 | "engines": { 18 | "node": ">=0.12.0", 19 | "homebridge": ">=0.2.0" 20 | }, 21 | "main": "./build/index.js", 22 | "dependencies": { 23 | "firebase": "^3.0.5", 24 | "lodash": "^4.13.1" 25 | }, 26 | "devDependencies": { 27 | "babel-cli": "^6.10.1", 28 | "babel-core": "^6.3.26", 29 | "babel-preset-es2015": "^6.3.13", 30 | "babel-eslint": "6.0.4", 31 | "eslint": "1.10.3", 32 | "eslint-plugin-react": "3.11.3", 33 | "eslint-plugin-wpcalypso": "1.1.3" 34 | }, 35 | "scripts": { 36 | "build": "babel src --presets babel-preset-es2015 --out-dir build" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /homebridge-firenet/src/index.js: -------------------------------------------------------------------------------- 1 | import firebase from 'firebase'; 2 | import os from 'os'; 3 | import some from 'lodash/some'; 4 | 5 | const configFolder = os.homedir() + '/.firenet-of-things'; 6 | const config = require( configFolder + '/' + 'config.json' ); 7 | if ( ! config ) { 8 | throw 'You need to provide config file. Default location is `~/.firenet-of-things/config.json`.'; 9 | } 10 | 11 | if ( ! config.firebase ) { 12 | throw 'You need to put Firebase database url in `firebase` key in `config.json`'; 13 | } 14 | 15 | firebase.initializeApp( { 16 | serviceAccount: configFolder + '/' + 'firebase-credentials.json', 17 | databaseURL: config.firebase, 18 | } ); 19 | 20 | let Accessory, Service, Characteristic, UUIDGen; 21 | 22 | module.exports = function( homebridge ) { 23 | console.log( 'homebridge API version: ' + homebridge.version ); 24 | 25 | Accessory = homebridge.platformAccessory; 26 | Service = homebridge.hap.Service; 27 | Characteristic = homebridge.hap.Characteristic; 28 | UUIDGen = homebridge.hap.uuid; 29 | homebridge.registerPlatform( 'homebridge-firenetPlatform', 'FirenetPlatform', FirenetPlatform, true ); 30 | }; 31 | 32 | function FirenetPlatform( log, config, api ) { 33 | var platform = this; 34 | console.log( 'FirenetPlatform Init' ); 35 | this.log = log; 36 | this.config = config; 37 | this.accessories = []; 38 | 39 | if ( api ) { 40 | this.api = api; 41 | this.api.on( 'didFinishLaunching', function() { 42 | console.log( 'Plugin - DidFinishLaunching' ); 43 | firebase.database().ref( 'things' ) 44 | .child( 'smart-pi' ) 45 | .on( 'child_added', function( deviceSnap ) { 46 | const data = deviceSnap.val(); 47 | const id = 'smart-pi/' + deviceSnap.key; 48 | if ( ! some( platform.accessories, accessory => accessory.context.id === id ) ) { 49 | const newAccessory = new Accessory( data.name || id, UUIDGen.generate( id ) ); 50 | newAccessory.context.id = id; 51 | if ( data.mode === 'switch' ) { 52 | newAccessory.addService( Service.Lightbulb, 'Light' ); 53 | platform.configureAccessory( newAccessory ); 54 | platform.api.registerPlatformAccessories( 'homebridge-firenetPlatform', 'FirenetPlatform', [ newAccessory ] ); 55 | } 56 | } 57 | } ); 58 | }.bind( this ) ); 59 | } 60 | } 61 | 62 | FirenetPlatform.prototype.configureAccessory = function( accessory ) { 63 | console.log( 'Plugin - Configure Accessory: ' + accessory.displayName ); 64 | const id = accessory.context.id; 65 | const dbRef = firebase.database().ref( 'things/' + id ); 66 | 67 | //This is not working as it supposed to 68 | dbRef.child( 'connected' ).on( 'value', snap => accessory.updateReachability( snap.val() === 'true' ) ); 69 | 70 | accessory.on( 'identify', function( paired, callback ) { 71 | console.log( 'Identify!!!' ); 72 | callback(); 73 | } ); 74 | 75 | dbRef.child( 'mode' ).once( 'value', modeSnap => { 76 | if ( modeSnap.val() === 'switch' && accessory.getService( Service.Lightbulb ) ) { 77 | const characteristic = accessory 78 | .getService( Service.Lightbulb ) 79 | .getCharacteristic( Characteristic.On ); 80 | 81 | //Update state on server 82 | characteristic.on( 'set', function( value, callback ) { 83 | firebase.database().ref( 'dispatch' ).push( { 84 | 'id': accessory.context.id, 85 | 'action': 'set', 86 | 'state' : { 87 | 'power' : value ? 1 : 0 88 | } 89 | } ); 90 | callback(); 91 | } ); 92 | 93 | //Update state in homebridge 94 | dbRef.child( 'state' ).child( 'power' ) 95 | .on( 'value', snap => characteristic.value = ( snap.val() === 1 ) ); 96 | } 97 | } ); 98 | 99 | this.accessories.push( accessory ); 100 | 101 | //Remove deleted accessory 102 | //this.api.unregisterPlatformAccessories("homebridge-firenetPlatform", "FirenetPlatform", this.accessories); 103 | //this.accessories = []; 104 | }; 105 | -------------------------------------------------------------------------------- /web/devices/nodemcu-minion.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import some from 'lodash/some'; 3 | import { Card, CardHeader, CardText, CardActions } from 'material-ui/Card'; 4 | import RaisedButton from 'material-ui/RaisedButton'; 5 | import IconOff from 'material-ui/svg-icons/action/highlight-off'; 6 | import Chip from 'material-ui/Chip'; 7 | import { red500, cyan200 } from 'material-ui/styles/colors'; 8 | import deepEqual from 'deep-equal'; 9 | import Snackbar from 'material-ui/Snackbar'; 10 | import Mode from '../modes'; 11 | import TextField from 'material-ui/TextField'; 12 | 13 | const styles = { 14 | chip: { margin: '0 5px 0 5px' } 15 | }; 16 | 17 | class NodemcuMinion extends Component { 18 | constructor( props, context ) { 19 | super( props, context ); 20 | this.state = { 21 | open: false 22 | }; 23 | } 24 | 25 | getDefaultState() { 26 | return { 27 | fetching: false 28 | }; 29 | } 30 | componentWillReceiveProps( nextProps ) { 31 | if ( this.state.fetching && ! deepEqual( nextProps.state, this.props.state ) ) { 32 | this.setState( { fetching: false } ); 33 | } 34 | } 35 | 36 | dispatch( action ) { 37 | this.setState( { fetching: true } ); 38 | this.props.dispatch( 39 | Object.assign( { 40 | id: this.props.id, 41 | action: 'set' 42 | }, action ) 43 | ); 44 | } 45 | 46 | off() { 47 | this.setState( { fetching: true } ); 48 | this.props.dispatch( { 49 | id: this.props.id, 50 | action: 'off' 51 | } ); 52 | } 53 | 54 | getTitle() { 55 | return ( this.props.name || this.props.id ); 56 | } 57 | 58 | render() { 59 | return ( 60 | 61 | 65 |
66 | { this.getTitle() } 67 |
68 | { some( Object.keys( this.props.state ), key => !! this.props.state[ key ] ) && this.props.online 69 | ? ON 70 | : null } 71 | { ! this.props.online 72 | ? OFFLINE 73 | : null } 74 | this.setState( { fetching: false } ) } 79 | /> 80 |
81 |
82 |
83 | 84 | 91 | 92 | } primary={ true } label="OFF" onClick={ () => this.off() } /> 93 | 94 | 95 |
96 | ); 97 | } 98 | } 99 | 100 | const WaitControl = props => { 105 | if ( val && val !== '' ) { 106 | props.dispatch( { duration: val } ); 107 | } 108 | } } 109 | />; 110 | 111 | export const actions = { 112 | off: { 113 | name: 'OFF', 114 | component: 'SPAN' 115 | }, 116 | wait: { 117 | name: 'Wait', 118 | component: WaitControl 119 | } 120 | }; 121 | 122 | export default NodemcuMinion; 123 | -------------------------------------------------------------------------------- /web/modes/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import get from 'lodash/get'; 3 | 4 | import RGBControl, { Avatar as RGBAvatar, deviceActions as rgbActions } from '../modes/rgb-control.js'; 5 | import Switch, { Avatar as SwitchAvatar, deviceActions as switchActions } from '../modes/switch.js'; 6 | import { actions as nodemcuActions } from '../devices/nodemcu-minion.js'; 7 | 8 | const modeMapping = { 9 | rgb: { edit: RGBControl, avatar: RGBAvatar, actions: rgbActions }, 10 | 'switch': { edit: Switch, avatar: SwitchAvatar, actions: switchActions } 11 | }; 12 | 13 | export function getModeComponent( mode ) { 14 | return modeMapping[ mode ].edit; 15 | } 16 | 17 | export default ( props ) => { 18 | const ModeComponent = ( modeMapping[ props.mode ].actions[ props.action ] || nodemcuActions[ props.action ] ).component; 19 | if ( !ModeComponent ) { 20 | return null; 21 | } else { 22 | return ( 23 | 24 | ); 25 | } 26 | }; 27 | 28 | export const Avatar = props => { 29 | const AvatarComponent = get( modeMapping, [ props.mode, 'avatar' ] ); 30 | if ( !AvatarComponent ) { 31 | return null; 32 | } else { 33 | return ( 34 | 35 | ); 36 | } 37 | }; 38 | 39 | export const getActions = mode => modeMapping[ mode ].actions; 40 | -------------------------------------------------------------------------------- /web/modes/rgb-control.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import get from 'lodash/get'; 3 | import { CustomPicker } from 'react-color'; 4 | import Slider from 'material-ui/Slider'; 5 | import Color from '../utils/color'; 6 | import AvatarComponent from 'material-ui/Avatar'; 7 | import TextField from 'material-ui/TextField'; 8 | 9 | export const Avatar = props => { props.children }; 10 | 11 | 12 | const WrappedPicker = CustomPicker( props => ( 13 |
14 |
21 | props.onChange( { 33 | h: val, 34 | s: 1, 35 | l: props.hsl.l 36 | } ) } 37 | /> 38 |
Hue
39 | 40 | props.onChange( { 52 | h: props.hsl.h, 53 | s: 1, 54 | l: val 55 | } ) } 56 | /> 57 |
Lightness
58 |
59 | ) ); 60 | 61 | class RGBControl extends Component { 62 | constructor( props, context ) { 63 | super( props, context ); 64 | } 65 | 66 | submit( color ) { 67 | this.props.dispatch( { 68 | state: { 69 | red: Math.round( color.rgb.r * 4 ), 70 | green: Math.round( color.rgb.g * 4 ), 71 | blue: Math.round( color.rgb.b * 4 ) 72 | } 73 | } ); 74 | } 75 | 76 | render() { 77 | var red = get( this.props, [ 'state', 'red' ], '' ); 78 | var green = get( this.props, [ 'state', 'green' ], '' ); 79 | var blue = get( this.props, [ 'state', 'blue' ], '' ); 80 | 81 | var initialColor = { 82 | r: Math.round( red / 4 ), 83 | g: Math.round( green / 4 ), 84 | b: Math.round( blue / 4 ) 85 | }; 86 | return (
87 |

You can change the color of RGB Lamp

88 | 89 |
); 90 | } 91 | } 92 | 93 | const GradientControl = props =>
94 | { 99 | if ( val && val !== '' ) { 100 | props.dispatch( { duration: val } ); 101 | } 102 | } } 103 | /> 104 | 105 |
; 106 | 107 | export const deviceActions = { 108 | set: { 'name': 'Set Color', component: RGBControl }, 109 | gradient: { 'name': 'Color Transition', component: GradientControl }, 110 | }; 111 | 112 | export default RGBControl; 113 | -------------------------------------------------------------------------------- /web/modes/switch.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import Toggle from 'material-ui/Toggle'; 3 | import AvatarComponent from 'material-ui/Avatar'; 4 | import On from 'material-ui/svg-icons/file/cloud-done'; 5 | import Off from 'material-ui/svg-icons/file/cloud-off'; 6 | 7 | export const Avatar = props => : } style={ { marginRight: '10px' } }>; 8 | 9 | class Switch extends Component { 10 | constructor( props, context ) { 11 | super( props, context ); 12 | } 13 | 14 | render() { 15 | return (
16 | this.props.dispatch( { state: { power: val ? 1 : 0 } } ) } 25 | /> 26 |
); 27 | } 28 | } 29 | 30 | export const deviceActions = { 31 | set: { 'name': 'Control state', component: Switch } 32 | }; 33 | 34 | export default Switch; 35 | -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "material-ui-example-webpack", 3 | "version": "0.15.0", 4 | "description": "Sample project that uses Material-UI", 5 | "repository": { 6 | "type": "git", 7 | "url": "https://github.com/callemall/material-ui.git" 8 | }, 9 | "scripts": { 10 | "start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors", 11 | "build": "./node_modules/webpack/bin/webpack.js --config webpack-production.config.js --progress --colors" 12 | }, 13 | "private": true, 14 | "devDependencies": { 15 | "babel-core": "^6.3.26", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.3.13", 18 | "babel-preset-react": "^6.3.13", 19 | "html-webpack-plugin": "^2.7.2", 20 | "react-hot-loader": "^1.3.0", 21 | "transfer-webpack-plugin": "^0.1.4", 22 | "webpack": "^1.12.9", 23 | "webpack-dev-server": "^1.14.0", 24 | "babel-eslint": "6.0.4", 25 | "eslint": "1.10.3", 26 | "eslint-plugin-react": "3.11.3", 27 | "eslint-plugin-wpcalypso": "1.1.3", 28 | "esformatter": "0.7.3", 29 | "esformatter-braces": "1.2.1", 30 | "esformatter-collapse-objects-a8c": "0.1.0", 31 | "esformatter-dot-notation": "1.3.1", 32 | "esformatter-quotes": "1.0.3", 33 | "esformatter-semicolons": "1.1.1", 34 | "esformatter-special-bangs": "1.0.1" 35 | }, 36 | "dependencies": { 37 | "deep-equal": "^1.0.1", 38 | "firebase": "^3.0.5", 39 | "lodash": "^4.13.1", 40 | "material-ui": "^0.15.1", 41 | "react": "^15.0.1", 42 | "react-color": "^2.2.0", 43 | "react-dom": "^15.0.1", 44 | "react-router": "^2.5.1", 45 | "react-tap-event-plugin": "^1.0.0" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /web/src/app/Devices.js: -------------------------------------------------------------------------------- 1 | import pick from 'lodash/pick'; 2 | import React, { Component } from 'react'; 3 | import NodemcuMinion from '../../devices/nodemcu-minion'; 4 | 5 | class Devices extends Component { 6 | constructor( props, context ) { 7 | super( props, context ); 8 | this.state = { 9 | devices: [] 10 | }; 11 | this.dbDevices = this.props.db.ref( 'things' ); 12 | this.dbDevicesEvent = null; 13 | } 14 | 15 | componentDidMount() { 16 | this.dbDevicesEvent = this.dbDevices.on( 'value', gateways => { 17 | const devices = []; 18 | gateways = gateways.val(); 19 | for ( let gateway in gateways ) { 20 | for ( let device in gateways[ gateway ] ) { 21 | let data = gateways[ gateway ][ device ] || {}; 22 | devices.push( { 23 | id: gateway + '/' + device, 24 | online: data.connected, 25 | mode: data.mode, 26 | name: data.name || data.id, 27 | state: data.state 28 | } ); 29 | } 30 | } 31 | this.setState( { devices } ); 32 | } ); 33 | } 34 | 35 | componentWillUnmount() { 36 | this.dbDevices.off( 'value', this.dbDevicesEvent ); 37 | } 38 | 39 | render() { 40 | return (
41 | { 42 | this.state.devices.map( device => ( ) ) 51 | } 52 |
); 53 | } 54 | } 55 | 56 | export default Devices; 57 | -------------------------------------------------------------------------------- /web/src/app/Main.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import getMuiTheme from 'material-ui/styles/getMuiTheme'; 3 | import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; 4 | import AppBar from 'material-ui/AppBar'; 5 | import Drawer from 'material-ui/Drawer'; 6 | import { hashHistory } from 'react-router'; 7 | import { List, ListItem } from 'material-ui/List'; 8 | import DevicesIcon from 'material-ui/svg-icons/action/important-devices'; 9 | import TriggersIcon from 'material-ui/svg-icons/action/launch'; 10 | import Subheader from 'material-ui/Subheader'; 11 | 12 | const sidebarItems=[ 13 | { id: 'devices', name: 'Devices', icon: }, 14 | { id: 'triggers', name: 'Triggers', icon: } 15 | ]; 16 | 17 | class Main extends Component { 18 | constructor( props, context ) { 19 | super( props, context ); 20 | this.state = { 21 | drawer: false 22 | }; 23 | } 24 | 25 | handleDrawer() { 26 | this.setState( { drawer: !this.state.drawer } ); 27 | } 28 | 29 | setView( view ) { 30 | hashHistory.push( view ); 31 | this.setState( { drawer: false } ); 32 | } 33 | 34 | render() { 35 | return ( 36 | 37 |
38 | 43 | 44 | Awesome Menu 45 | { sidebarItems.map( item => ( 46 | { item.name } 47 | ) ) } 48 | 49 | 50 | 55 | { this.props.children } 56 |
57 |
58 | ); 59 | } 60 | } 61 | 62 | export default Main; 63 | -------------------------------------------------------------------------------- /web/src/app/TriggerEdit.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Card, CardHeader, CardActions } from 'material-ui/Card'; 3 | import FlatButton from 'material-ui/FlatButton'; 4 | import ActionEdit from './components/actionEdit'; 5 | import { Link } from 'react-router'; 6 | import Add from 'material-ui/svg-icons/content/add'; 7 | import FloatingActionButton from 'material-ui/FloatingActionButton'; 8 | import NewAction from './components/NewAction.js'; 9 | 10 | class TriggerEdit extends Component { 11 | constructor( props, context ) { 12 | super( props, context ); 13 | this.state = { actions: [], id: '', newAction: false }; 14 | this.dbTriggerActions = this.props.db.ref( 'triggers' ).child( this.props.triggerName ).child( 'actions' ); 15 | this.dbTriggerActionsEvent = null; 16 | } 17 | 18 | updateAction( id, newState ) { 19 | console.log( 'updating action ' + id + 'with ', newState ); 20 | this.props.db.ref( 'triggers/' + this.props.triggerName + '/actions' ).child( id ).update( newState ); 21 | } 22 | 23 | deleteAction( id ) { 24 | this.props.db.ref( 'triggers/' + this.props.triggerName + '/actions' ).child( id ).remove(); 25 | } 26 | 27 | componentDidMount() { 28 | const dbPromises = []; 29 | this.dbTriggerActionsEvent = this.dbTriggerActions.on( 'value', triggerActions => { 30 | const actions = []; 31 | triggerActions.forEach( actionShapshot => { 32 | const action = actionShapshot.val(); 33 | action.key = actionShapshot.key; 34 | actions.push( action ); 35 | dbPromises.push( 36 | this.props.db.ref( 'things/' + action.id ) 37 | .once( 'value', snapshot => { 38 | action.mode = snapshot.val().mode; 39 | action.device = snapshot.val(); 40 | } ) 41 | ); 42 | } ); 43 | Promise.all( dbPromises ) 44 | .then( () => this.setState( { actions } ) ); 45 | } ); 46 | } 47 | 48 | componentWillUnmount() { 49 | this.dbTriggerActions.off( 'value', this.dbTriggerActionsEvent ); 50 | } 51 | 52 | render() { 53 | return (
54 | 55 | 56 | 57 | this.props.dispatch( { 58 | triggerName: this.props.triggerName 59 | } ) } /> 60 | 61 | 62 | 63 | { 64 | !! this.state.newAction && this.setState( { newAction: false } ) } /> 65 | } 66 | { this.state.actions 67 | .map( ( item, index ) => 68 | { 78 | this.updateAction( item.key, newState ); 79 | } } 80 | delete={ ( ) => this.deleteAction( item.key ) } 81 | /> 82 | ) } 83 | this.setState( { newAction: true } ) } style={ { 84 | margin: '30px', 85 | position: 'absolute', 86 | right: '0px' 87 | } }> 88 | 89 | 90 |
); 91 | } 92 | } 93 | 94 | export default TriggerEdit; 95 | -------------------------------------------------------------------------------- /web/src/app/Triggers.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { List, ListItem } from 'material-ui/List'; 3 | import EditIcon from 'material-ui/svg-icons/editor/mode-edit'; 4 | import { Link } from 'react-router'; 5 | 6 | class Triggers extends Component { 7 | constructor( props, context ) { 8 | super( props, context ); 9 | this.state = { 10 | triggers: [] 11 | }; 12 | this.dbTriggers = this.props.db.ref( 'triggers' ); 13 | this.dbTriggersEvent = null; 14 | } 15 | 16 | componentDidMount() { 17 | const triggerArray = []; 18 | this.dbTriggersEvent = this.dbTriggers.on( 'value', triggers => { 19 | triggers.forEach( trigger => { 20 | triggerArray.push( { 21 | id: trigger.key 22 | } ); 23 | } ); 24 | this.setState( { triggers: triggerArray } ); 25 | } ); 26 | } 27 | 28 | componentWillUnmount() { 29 | this.dbTriggers.off( 'value', this.dbTriggersEvent ); 30 | } 31 | 32 | dispatchTrigger( trigger ) { 33 | this.props.dispatch( { triggerName: trigger } ); 34 | } 35 | 36 | render() { 37 | return ( 38 | { 39 | this.state.triggers.map( item => 44 | } 45 | > 46 | { item.id } 47 | ) 48 | } 49 | ); 50 | } 51 | } 52 | 53 | export default Triggers; 54 | -------------------------------------------------------------------------------- /web/src/app/app.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import injectTapEventPlugin from 'react-tap-event-plugin'; 4 | import Main from './Main'; // Our custom react component 5 | import firebase from 'firebase'; 6 | import config from '../config-firebase'; 7 | import { Router, Route, hashHistory, IndexRoute } from 'react-router'; 8 | import Devices from './Devices.js'; 9 | import Triggers from './Triggers.js'; 10 | import TriggerEdit from './TriggerEdit.js'; 11 | 12 | const app = firebase.initializeApp( config ); 13 | const db = firebase.database(); 14 | // Needed for onTouchTap 15 | // http://stackoverflow.com/a/34015469/988941 16 | injectTapEventPlugin(); 17 | 18 | const componentProps = { 19 | db, 20 | dispatch: action => db.ref( 'dispatch' ).push( action ) 21 | }; 22 | 23 | function loggedIn( user ) { 24 | document.getElementById( 'logged-out' ).style.display = 'none'; 25 | render( ( 26 | 27 | 28 | }/> 29 | }/> 30 | }/> 31 | }/> 32 | 33 | 34 | ), 35 | document.getElementById( 'app' ) 36 | ); 37 | } 38 | 39 | //Authentication 40 | const auth = app.auth(); 41 | const initApp = function() { 42 | auth.onAuthStateChanged( function( user ) { 43 | if ( user ) { 44 | user.getToken().then( function( accessToken ) { 45 | loggedIn( user ); 46 | } ); 47 | } else { 48 | //Lets log in! 49 | const ui = new firebaseui.auth.AuthUI( auth ); 50 | const uiConfig = { 51 | 'queryParameterForWidgetMode': 'mode', 52 | 'queryParameterForSignInSuccessUrl': 'signInSuccessUrl', 53 | 'signInOptions': [ firebase.auth.GoogleAuthProvider.PROVIDER_ID ], 54 | 'callbacks': { 55 | 'signInSuccess': function( currentUser, credential, redirectUrl ) { 56 | loggedIn( currentUser ); 57 | return false; 58 | } 59 | } 60 | }; 61 | ui.start( '#firebaseui-auth-container', uiConfig ); 62 | } 63 | }, function( error ) { 64 | console.log( 'Auth error!', error ); 65 | } ); 66 | }; 67 | 68 | window.onload = function() { 69 | initApp(); 70 | }; 71 | -------------------------------------------------------------------------------- /web/src/app/components/NewAction.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import Dialog from 'material-ui/Dialog'; 3 | import SelectField from 'material-ui/SelectField'; 4 | import MenuItem from 'material-ui/MenuItem'; 5 | import RaisedButton from 'material-ui/RaisedButton'; 6 | import { getActions } from '../../../modes/'; 7 | import { actions as nodeMcuActions } from '../../../devices/nodemcu-minion.js'; 8 | 9 | 10 | class NewAction extends Component { 11 | constructor( props, context ) { 12 | super( props, context ); 13 | this.state = { device: null, devices: [], action: null }; 14 | this.dbDevices = this.props.db.ref( 'things' ); 15 | this.dbDevicesEvent = null; 16 | } 17 | 18 | newAction() { 19 | if ( this.state.action && this.state.device ) { 20 | const dbRef = this.props.db.ref( 'triggers/' + this.props.triggerName ); 21 | dbRef.once( 'value' ) 22 | .then( triggerSnap => triggerSnap.child( 'actions' ).hasChildren() 23 | ? dbRef.child( 'actions' ).orderByChild( 'order' ).limitToLast( 1 ).once( 'child_added' ) 24 | : Promise.resolve() //If there are no prev actions, we immmidiately resolve to create a new action 25 | ) 26 | .then( snap => { 27 | const order = snap ? ( snap.val().order + 1 ) : 1; 28 | dbRef.child( 'actions' ).push( { order, action: this.state.action, id: this.state.device.id } ); 29 | } ); 30 | } 31 | this.props.close(); 32 | } 33 | 34 | updateAction( id, props ) { 35 | this.props.db.ref( 'triggers/' + this.props.triggerName + '/actions' ).child( id ).update( props ); 36 | } 37 | 38 | deleteAction( id ) { 39 | this.props.db.ref( 'triggers/' + this.props.triggerName + '/actions' ).child( id ).remove(); 40 | } 41 | 42 | componentDidMount() { 43 | this.dbDevicesEvent = this.dbDevices.on( 'value', gateways => { 44 | const devices = []; 45 | gateways = gateways.val(); 46 | for ( let gateway in gateways ) { 47 | for ( let device in gateways[ gateway ] ) { 48 | let data = gateways[ gateway ][ device ] || {}; 49 | devices.push( { 50 | id: gateway + '/' + device, 51 | online: data.connected, 52 | mode: data.mode, 53 | name: data.name || data.id, 54 | state: data.state 55 | } ); 56 | } 57 | } 58 | this.setState( { devices } ); 59 | } ); 60 | } 61 | 62 | componentWillUnmount() { 63 | this.dbDevices.off( 'value', this.dbDevicesEvent ); 64 | } 65 | 66 | render() { 67 | let actions = []; 68 | const dialogActions = [ 69 | , 70 | 71 | ]; 72 | if ( this.state.device ) { 73 | const actionsObject = Object.assign( {}, nodeMcuActions, getActions( this.state.device.mode ) ); 74 | actions = Object.keys( actionsObject ).map( key => Object.assign( { id: key }, actionsObject[ key ] ) ); 75 | } 76 | 77 | return ( 78 | 79 |
Choose a device:
80 | this.setState( { device } ) } 83 | > 84 | { this.state.devices.map( device => ) } 85 | 86 | this.setState( { action } ) } 89 | > 90 | { actions.map( action => ) } 91 | 92 |
93 | ); 94 | } 95 | } 96 | 97 | export default NewAction; 98 | -------------------------------------------------------------------------------- /web/src/app/components/actionEdit.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Card, CardText, CardHeader, CardActions } from 'material-ui/Card'; 3 | import ModeEditor, { Avatar } from '../../../modes'; 4 | import RaisedButton from 'material-ui/RaisedButton'; 5 | import ActionDelete from 'material-ui/svg-icons/action/highlight-off'; 6 | import pick from 'lodash/pick'; 7 | 8 | class ActionEdit extends Component { 9 | render() { 10 | return ( 11 | 12 | } 18 | / > 19 | 20 | 21 | 22 |
23 | 24 | } /> 25 | 26 |
27 | ); 28 | } 29 | } 30 | 31 | export default ActionEdit; 32 | -------------------------------------------------------------------------------- /web/src/www/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Artpi Smart Home 13 | 14 | 15 | 16 | 20 | 21 | 22 | 23 | 24 |
25 |

Artpi super Smart Home

26 |
27 |
28 |
29 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /web/src/www/main.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-family: 'Roboto', sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /web/utils/color.js: -------------------------------------------------------------------------------- 1 | const controllerBase = 1023; 2 | const hexBase = 255; 3 | 4 | function scale( value, fromBase, toBase ) { 5 | return Math.round( value * toBase / fromBase ); 6 | } 7 | 8 | function toHex( value ) { 9 | value = scale( value, controllerBase, hexBase ).toString( 16 ); 10 | return value.length > 1 ? value : '0' + value; 11 | } 12 | 13 | export default function hex( color ) { 14 | return '#' + toHex( color.red ) + toHex( color.green ) + toHex( color.blue ); 15 | } 16 | -------------------------------------------------------------------------------- /web/webpack-dev-server.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack'); 2 | const path = require('path'); 3 | const buildPath = path.resolve(__dirname, 'build'); 4 | const nodeModulesPath = path.resolve(__dirname, 'node_modules'); 5 | const TransferWebpackPlugin = require('transfer-webpack-plugin'); 6 | 7 | const config = { 8 | // Entry points to the project 9 | entry: [ 10 | 'webpack/hot/dev-server', 11 | 'webpack/hot/only-dev-server', 12 | path.join(__dirname, '/src/app/app.js'), 13 | ], 14 | // Server Configuration options 15 | devServer: { 16 | contentBase: 'src/www', // Relative directory for base of server 17 | devtool: 'eval', 18 | hot: true, // Live-reload 19 | inline: true, 20 | port: 3000, // Port Number 21 | host: 'localhost', // Change to '0.0.0.0' for external facing server 22 | }, 23 | devtool: 'eval', 24 | output: { 25 | path: buildPath, // Path of output file 26 | filename: 'app.js', 27 | }, 28 | plugins: [ 29 | // Enables Hot Modules Replacement 30 | new webpack.HotModuleReplacementPlugin(), 31 | // Allows error warnings but does not stop compiling. 32 | new webpack.NoErrorsPlugin(), 33 | // Moves files 34 | new TransferWebpackPlugin([ 35 | {from: 'www'}, 36 | ], path.resolve(__dirname, 'src')), 37 | ], 38 | module: { 39 | loaders: [ 40 | { 41 | test: /\.js$/, 42 | loader: ['babel-loader'], 43 | exclude: nodeModulesPath, 44 | query: { 45 | presets: ['es2015', 'react'] 46 | } 47 | }, 48 | ], 49 | }, 50 | }; 51 | 52 | module.exports = config; 53 | -------------------------------------------------------------------------------- /web/webpack-production.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack'); 2 | const path = require('path'); 3 | const buildPath = path.resolve(__dirname, 'build'); 4 | const nodeModulesPath = path.resolve(__dirname, 'node_modules'); 5 | const TransferWebpackPlugin = require('transfer-webpack-plugin'); 6 | 7 | const config = { 8 | entry: [path.join(__dirname, '/src/app/app.js')], 9 | // Render source-map file for final build 10 | devtool: 'source-map', 11 | // output config 12 | output: { 13 | path: buildPath, // Path of output file 14 | filename: 'app.js', // Name of output file 15 | }, 16 | plugins: [ 17 | // Minify the bundle 18 | new webpack.optimize.UglifyJsPlugin({ 19 | compress: { 20 | // suppresses warnings, usually from module minification 21 | warnings: true, 22 | }, 23 | }), 24 | // Allows error warnings but does not stop compiling. 25 | new webpack.NoErrorsPlugin(), 26 | // Transfer Files 27 | new TransferWebpackPlugin([ 28 | {from: 'www'}, 29 | ], path.resolve(__dirname, 'src')), 30 | ], 31 | module: { 32 | loaders: [ 33 | { 34 | test: /\.js$/, 35 | loader: ['babel-loader'], 36 | exclude: nodeModulesPath, 37 | query: { 38 | presets: ['es2015', 'react'] 39 | } 40 | } 41 | ], 42 | }, 43 | }; 44 | 45 | module.exports = config; 46 | --------------------------------------------------------------------------------