Aart MQTT notes: verschil tussen versies

Uit MakerSpace Leiden
Ga naar: navigatie, zoeken
(ESP Boards)
 
(4 tussenliggende versies door 3 gebruikers niet weergegeven)
Regel 1: Regel 1:
{{TeVerwijderen}}
+
[[Categorie:Docs]]
 
These are my personal notes & developments; any opinion expressed on this page is just that :-)  
 
These are my personal notes & developments; any opinion expressed on this page is just that :-)  
  
Regel 10: Regel 10:
 
Makerspace Leiden workshop op 23-01-2017
 
Makerspace Leiden workshop op 23-01-2017
 
== ESP Boards ==  
 
== ESP Boards ==  
* [https://www.wemos.cc/product/d1-mini.htm Wemos D1 mini]
+
* [https://www.wemos.cc/en/latest/d1_mini_shield/index.html Wemos D1 mini]
  
 
== Sensors ==  
 
== Sensors ==  
Regel 50: Regel 50:
  
 
== Configure WLAN as accespoint & build a bridge ==  
 
== Configure WLAN as accespoint & build a bridge ==  
[https://frillip.com/using-your-raspberry-pi-3-as-a-wifi-access-point-with-hostapd/ hostapd]
+
 
 +
New info is required here..

Huidige versie van 26 apr 2024 om 14:36

These are my personal notes & developments; any opinion expressed on this page is just that :-)

MQTT on Wifi Principals

  • Assume no privacy
  • Send data, not information for scalability
  • Minimize the amount of wires, use more nodes if required

ESP8266 Node firmware development

Makerspace Leiden workshop op 23-01-2017

ESP Boards

Sensors

Links

Use proven test programs & setups to test the sensors, hardware and Wifi / MQTT setup before putting it all together.

Links to datasheets, standard libraries & examples of sensors i use; use the Arduino library manager to get these:

My own code

Pi3B Broker

Makerspace Leiden workshop on 27-02-2017

Raspbian

  • Download: Raspbian lite
  • Install on SD card following the instructions

Using a serial console

  • add line "enable_uart=1" at the end of /boot/config.txt
  • Pins: GPIO 6 gnd, 8 Pi Txd, 10 Pi RxD - 3V3 logic levels (!)
  • Speed: 115200

Update

Run:

  • apt update
  • apt -y upgrade

Configure WLAN as accespoint & build a bridge

New info is required here..