Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
public:openlab:raspi [2018-11-08 23:06] xnemec18public:openlab:raspi [2018-11-08 23:28] (current) xnemec18
Line 2: Line 2:
 {{:public:openlab:raspi.jpg?nolink&400|}} {{:public:openlab:raspi.jpg?nolink&400|}}
  
 +[[https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/]]
 ===== Prior to boot ===== ===== Prior to boot =====
 +OS?
 +  * NOOBS
 +  * Raspbian
 +  * Probabbly any other Linux with ARM support
 +
 Provide enough power (undervoltage causes instability). Provide enough power (undervoltage causes instability).
  
Line 38: Line 44:
   *    * 
  
 +===== Programming =====
 +Python recomended, any language should be feasible though.
 +Many libraries available (as usual with python https://xkcd.com/353/)
 +  * https://pythonhosted.org/sense-hat/
 +  * https://gpiozero.readthedocs.io/en/stable/
 +  * 
 +
 +===== Ad-hoc networking =====
 +
 +example of /etc/network/interfaces
 +
 +<code>
 +auto wlan0
 +iface wlan0 inet static
 +    address {{ wlan_ip }}
 +    netmask 255.255.255.0
 +    wireless-channel 48
 +    wireless-essid crocs-raspi-net
 +    wireless-txpower 1
 +    wireless-mode ad-hoc
 +
 +</code>
 +
 +===== Games =====
 +  * https://github.com/AndrewCRichards/TetriPiSense
 +  * https://github.com/martinohanlon/AstroPiSnake
 +  * many others