Thingiverse
World Map for 32x16 LED matrix
par dadahi
4
Téléchargements
6
Likes
0
Makes
2 part world map for mounting in front of a 32x16 LED matrix such as https://core-electronics.com.au/freetronics-dmd-dot-matrix-display-32x16-blue.html
Python code for converting latitude/longitude to LED coordinates:
```
def convertGPStoPixels(lat,lon):
x=int(round((lon+170)/360*32))
y=int(round((-lat+83)/145*16))
return((x, y))
```
Python code for converting latitude/longitude to LED coordinates:
```
def convertGPStoPixels(lat,lon):
x=int(round((lon+170)/360*32))
y=int(round((-lat+83)/145*16))
return((x, y))
```
Vous avez imprimé ce modèle ? Connectez-vous et partagez votre make !
Connectez-vous pour laisser un commentaire
Se connecterPas encore de commentaires – soyez le premier !