Sometimes the simplest apps can be the most useful the RPIRef app for your Android device is an excellent example. Basically its a reference to the pinouts of the Raspberry Pi models, sounds basic and it is is but its amazing how often you forget …
shedboy71
-
-
If you haven’t heard of the MagPI its a magazine for the raspberry Pi, i wasn’t expecting much here to be honest I thought that the app would simply suggest links to subscribe to the actual magazine but while that is admittedly present there are …
-
This TSL2561 is an I2C light-to-digital converter TSL2561 that transforms light intensity to a digital signal. The TSL2561 features a selectable light spectrum range due to its dual light sensitive diodes: infrared and full spectrum. You can switch among three detection modes to take your …
-
You can create simple images by setting individual pixels on the 8×8 led matrix to different colors. In these examples we create some basic flags Swedish flag [codesyntax lang=”python”] from sense_hat import SenseHat sense = SenseHat() r = (255, 0, 0) o = (255, 127, …
-
These are a few examples for the Sense Hat using the environmental sensors to get temperature, pressure and humidity [codesyntax lang=”python”] from sense_hat import SenseHat sense = SenseHat() while True: temp = sense.get_temperature() pres = sense.get_pressure() humi = sense.get_humidity() temp = round(temp, 1) pres = …
-
The unicorn pHat is a hat which althoough designed for the Pi Zero also works on other Raspberry Pi’s and has 32 RGB LEDs. There is a python library available for it and also a couple of C examples as well in the github repository …