Project

General

Profile

Software Links » History » Version 9

Hammel, 11 Jul 2017 14:57

1 1 Hammel
h1. Software Links
2
3
* "Alexa Voice Service":https://developer.amazon.com/appsandservices/solutions/alexa/alexa-voice-service from Amazon
4 3 Hammel
* "Awesome IoT":https://github.com/phodal/awesome-iot - links to lots of other stuff
5 2 Hammel
6
h2. AI
7
8
* "Tensor Flow":https://www.tensorflow.org/ is an open source deep learning tool that might be useful for automated monitoring systems.
9 1 Hammel
* "Theono":http://deeplearning.net/software/theano/ is also for deep learning, but is math oriented more than task oriented.  It's easier to get started with Tensor Flow.
10 3 Hammel
11
h2. Protocols
12
13
* "Advanced Message Queuing Protocol":https://www.amqp.org/ (AMQP)
14
* "Constrained Application Protocol":http://coap.technology/ (CoAP) - see microcoap for Arduino
15
* "Extensible Messaging and Presence Protocol":http://xmpp.org/about-xmpp/history/ (XMPP)
16
* "OASIS Message Queuing Telemetry Transport":https://www.oasis-open.org/news/pr/oasis-members-to-advance-mqtt-standard-for-m2m-iot-reliable-messaging (MQTT)
17
* "Very Simple Control Protocol":http://www.vscp.org/ (VSCP)
18
* "OpenWSN":https://openwsn.atlassian.net/wiki/ - repository for open-source implementations of protocol stacks based on Internet of Things standards, using a variety of hardware and software platforms.
19
20
h2. OS
21
22
* "ARM mbed":http://mbed.org/
23
* "Contiki":http://www.contiki-os.org/
24
* "Spark":http://spark.github.io/
25
* "RIOT":https://openwsn.atlassian.net/wiki/ - alternative to Arduino with CoAP included
26
27
h2. APIs
28
29
* "Qeo Tinq":https://github.com/brunodebus/tinq-core
30
31
h2. Home Automation
32
33
* "PrivateEyePi":http://projects.privateeyepi.com/ - General home automation using Raspberry Pi
34
* "RaZberry":http://razberry.z-wave.me/ - Using Raspberry Pi with Z-Wave devices
35
* "OpenHAB":http://www.openhab.org/
36
* "Home Assistant":https://home-assistant.io/
37 4 Hammel
38
h2. Arduino
39
40 5 Hammel
* "Deep Sleep Mode":http://www.esp8266.com/wiki/doku.php?id=esp8266_power_usage#sleeping_the_esp8266
41 6 Hammel
** "Door Alarm w/ deep sleep mode":https://github.com/chaeplin/esp8266_and_arduino/blob/master/_48-door-alarm-deepsleep/_48-door-alarm-deepsleep.ino - This allows using both a software timeout and an alarm interrupt to wake from deep sleep.  Design is similar to this "PIR-based implementation":https://github.com/esp8266/Arduino/issues/1488 ("diagram only":https://cloud.githubusercontent.com/assets/25507805/25678678/de4659a0-304a-11e7-90d4-a5c19241e7f6.png)
42 4 Hammel
** See these discussions
43
*** https://github.com/esp8266/Arduino/issues/1488
44
*** https://forum.makehackvoid.com/t/weather-station-wake-up-triggered-by-either-the-rtc-or-a-momentary-switch/972
45
*** https://github.com/esp8266/Arduino/issues/1381
46
*** https://github.com/chaeplin/esp8266_and_arduino/tree/master/_48-door-alarm-deepsleep
47 7 Hammel
48
h2. Security
49
50
* "Securing Embedded Linux":https://www.linux.com/news/securing-embedded-linux
51 9 Hammel
* "AES for embedded":https://github.com/spaniakos/AES/ (Arduino or Raspberry Pi)
52 8 Hammel
53
h2. Software updates
54
55
Three parts to a software update: bootloader, kernel and rootfs/apps.
56
# This adds u-boot as 3rd stage bootloader to Pi. First stage (in hardware) doesn't change and 2nd stage (binary blobs) only change with new SD cards.
57
# u-boot is used to swap between kernels and partitions, test sanity of new images.
58
# kernel fallback capability is required
59
# rootfs/apps fallback capability is required
60
61
* "Building Murphy-compatible embedded Linux systems":https://www.kernel.org/doc/ols/2005/ols2005v1-pages-21-36.pdf
62
* "Implementing update system for embedded Linux":https://stackoverflow.com/questions/6937592/implementing-an-update-upgrade-system-for-embedded-linux-devices discussion on stackoverflow
63
* "On the field software updates":http://wiki.dave.eu/index.php/Deploying_Embedded_Linux_Systems#On-the-field_software_upgrades in Deploying Embedded Linux Systems
64
* "Updating Firmware in Linux Based Devices":http://www.linuxjournal.com/content/updating-firmware-linux-based-devices in Linux Journal, discusses use of A/B partitions and pointing boot loader at current release.